summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2015-02-04Update to 0.11.2ryoon4-8/+27
* Fix newer boost build. Changelog: mdds 0.11.2 * multi_type_vector * fixed various memory leaks associated with the set() method when a value overwrites an existing element in a managed block. mdds 0.11.1 * all * fixed a large number of outstanding defects reported by Coverity Scan. * multi_type_vector * fixed 2 cases of double-free bug in the variant of swap() that allows segmented swapping. mdds 0.11.0 * sorted_string_map (new) * new data structure to support efficient mapping of textural keys to numeric values when the key values are known at compile time. * multi_type_vector * fixed a bug in transfer() where two adjacent blocks of identical type would fail to be merged in some circumstances. * added shrink_to_fit() to allow trimming of any excess capacity from all non-empty blocks. * fixed a double-free bug in the variant of swap() that allows segmented swapping. * improved the exception message when the block position lookup fails to find valid block position, to make it easier to debug.
2015-02-04Support the as override specs for cwrappers too.jperkin1-1/+3
2015-02-04Remove ruby-rbx-require-relative package which was required bytaca4-43/+0
ruby-linecache package only.
2015-02-04Remove ruby-rbx-require-relative.taca1-2/+1
2015-02-04Remove ruby-linecache package which was required by ruby-debug-base and ittaca4-75/+0
was supported by ruby18 only.
2015-02-04Remove ruby-linecache.taca1-2/+1
2015-02-04Remove ruby-debug-base package which support ruby18 only.taca4-50/+0
2015-02-04Remove ruby-debug package which support ruby18 only.taca4-239/+0
2015-02-04Remove ruby-debug-extra package which support ruby18 only.taca5-114/+0
2015-02-04Remove ruby-debug-ide package which support ruby18 only.taca4-63/+0
2015-02-04Remove ruby-debug, ruby-debug-base, ruby-debug-extra and ruby-debug-ide.taca1-5/+1
2015-02-04Add and enable ruby-debugger, ruby-debugger-linecache andtaca1-1/+4
ruby-debugger-ruby_core_source.
2015-02-04Add ruby-debugger package version 1.6.8. It supports Ruby 1.9.3 and 2.0.0.taca4-0/+235
debugger is a fast implementation of the standard Ruby debugger debug.rb. It is implemented by utilizing a new Ruby C API hook. The core component provides support that front-ends can build on. It provides breakpoint handling, bindings for stack frames among other things.
2015-02-04Add ruby-debugger-ruby_core_source package version 1.3.8.taca4-0/+1157
Provide Ruby core source files for C extensions that need them.
2015-02-04Add ruby-debugger-linecache package version 1.2.0.taca4-0/+71
Linecache is a module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times.
2015-02-04Update to 1.68:wiz2-6/+6
1.68 2015-02-03 NEILB - Spelling corrections for docs. RT #84896. ASB++ - Added pod release-time test. ASB++ - Added links to entries in SEE ALSO. ASB++
2015-02-04+ py-atomicwrites.wiz1-1/+2
2015-02-04Import py34-atomicwrites-0.1.0 as devel/py-atomicwrites.wiz4-0/+32
Atomic file writes on POSIX.
2015-02-04+ py-configobjwiz1-1/+2
2015-02-04Import py34-configobj-5.0.6 as devel/py-configobj, packaged for wipwiz4-0/+56
by jihbed. ConfigObj is a simple but powerful config file reader and writer: an ini file round tripper. Its main feature is that it is very easy to use, with a straightforward programmer's interface and a simple syntax for config files. It has lots of other features though : * Nested sections (subsections), to any level * List values * Multiple line values * String interpolation (substitution) * Integrated with a powerful validation system o including automatic type checking / conversion o repeated sections o and allowing default values * When writing out config files, ConfigObj preserves all comments and the order of members and sections * Many useful methods and options for working with configuration files (like the 'reload' and 'merge' methods) * Full Unicode support This project is also the home of validate which handles the type checking and conversion for ConfigObj. Support for validate is integrated into ConfigObj, but it can also be used on its own for reading and implementing validation specifications
2015-02-04update libevent to version 2.0.22 (which also updates py-libevent-rpcgen)spz4-12/+11
Upstream ChangeLog: Changes in version 2.0.22-stable (5 Jan 2015) SECURITY FIXES (evbuffers) o Avoid integer overflow bugs in evbuffer_add() and related functions. See CVE-2014-6272 advisory for more information. (20d6d4458bee5d88bda1511c225c25b2d3198d6c) BUGFIXES (evhttp) o fix #73 and fix http_connection_fail_test to catch it (crash fix) (b618204 Greg Hazel) o Avoid racy bufferevent activation (5eb1788 Nate Rosenblum) BUGFIXES (compilation and portability) o Fix compilation with WIN32_HAVE_CONDITION_VARIABLES enabled (7e45739) o Fix missing AC_PROG_SED on older Autoconfs (9ab2b3f Tay Ray Chuan) o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5) (74d4c44 Kevin Bowling) o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for automake 1.13 compat (817ea36) o Rename configure.in to configure.ac to appease newer autoconfs (0c79787) o Avoid using top_srcdir in TESTS: new automakes do not like this (a55514e) o Use windows vsnprintf fixup logic on all windows environments (e826f19) o Fix a compiler warning when checking for arc4random_buf linker breakage. (5cb3865) o Fix another arc4random_buf-related warning (e64a2b0) o Add -Qunused-arguments for clang on macos (b56611d Trond Norbye) BUGFIXES (resource leaks/lock errors on error) o Avoid leaking fds on evconnlistener with no callback set (69db261) o Avoid double-close on getsockname error in evutil_ersatz_socketpair (0a822a6) o Fix a locking error in bufferevent_socket_get_dns_error. (0a5eb2e) o libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer) (b8f5980 Frank Denis) BUGFIXES: (other stability) o bufferevent_pair: don't call downcast(NULL) (f2428a2) o Consistently check for failure from evbuffer_pullup() (60f8f72) o Fix race caused by event_active (3c7d6fc vjpai) BUGFIXES (miscellaneous) o Avoid redundant invocations of init_extension_functions for IOCP (3b77d62) o Typo fixes from Linus Nordberg (cec62cb, 8cd695b) o Add a few files created by "make verify" to .gitignore. (1a8295a Pierre Phaneuf) o regress_buffer: fix 'memcmp' compare size (79800df Maks Naumov) o Fix bufferevent setwatermark suspend_read (b34e4ac ufo2243) o Fix evbuffer_peek() with len==-1 and start_at non-NULL. (fb7e76a) BUFGIXES (evdns) o Checking request nameserver for NULL, before using it. (5c710c0 Belobrov Andrey) o Fix SEGFAULT after evdns_base_resume if no nameservers installed. (f8d7df8 Azat Khuzhin) o Fix a crash in evdns related to shutting down evdns (9f39c88,e8fe749) BUGFIXES (epoll) o Check does arch have the epoll_create and __NR_epoll_wait syscalls. (dfe1e52 Marcin Juszkiewicz) BUGFIXES (evutil_secure_random) o Avoid other RNG initialization FS reads when urandom file is specified (9695e9c, bb52471) o When we seed from /proc/sys/kernel/random/uuid, count it as success (e35b540) o Document that arc4random is not a great cryptographic PRNG. (6e49696) o Add evutil_secure_rng_set_urandom_device_file (2bbb5d7) o Really remove RNG seeds from the stack (f5ced88) DOCUMENTATION FIXES o Fix a mistake in evbuffer_remove() arguments in example http server code (c322c20 Gyepi Sam) o Fix a typo in a comment in buffer.h. Spotted by Alt_F4 (773b0a5) o Clarify event_base_loop exit conditions (031a803) o Use FindClose for handle from FindFirstFile in http-server.c (6466e88) o Fix a typo in a doxygen comment. Reported by 亦得. (be1aeff)
2015-02-03Update devel/lua-lpeg to 0.12.1.alnsn2-7/+6
This new release fixes a few bugs; in particular, it corrects a small incompatibility with Lua 5.3.
2015-02-03Update ruby-eventmachine to 1.0.5.taca3-7/+8
## 1.0.5 (February 2, 2015) * use monotonic clocks on Linux, OS X, Solaris, and Windows [#563] * use the rb_fd_* API to get autosized fd_sets [#502] * add basic tests that the DNS resolver isn't leaking timers [#571] * update to test-unit 2.x and improve various unit tests [#551] * remove EventMachine_t::Popen code marked by ifdef OBSOLETE [#551] * ruby 2.0 may fail at Queue.pop, so rescue and complain to $stderr [#551] * set file handle to INVALID_HANDLE_VALUE after closing the file [#565] * use `defined?` instead of rescuing NameError for flow control [#535] * fix closing files and sockets on Windows [#564] * fix file uploads in Windows [#562] * catch failure to fork [#539] * use chunks for SSL write [#545]
2015-02-03(pkgsrc)mef2-10/+9
- MASTER_SITES using simple project name fo PERL_CPAN - Reduce pkglint flags (Trailing space and not += but = etc) (upstream) - Update 0.07 to 0.08 ---------------------- 0.08 2014/03/27 16:10:38 [CHANGES] * Optional integration with Devel::MAT if available, to heapdump the running unit test for later analysis
2015-02-03Use CPAN projectname MASTER_SITES.mef1-2/+2
2015-02-03Work-around NetBSD's native iconv lacking support for WCHAR_T.adam2-1/+35
See also PR 39765. Need for graphics/inkscape 0.91.
2015-02-03Update to 3.3. Patches for tests on NetBSD have been integrated.wiz9-128/+11
3.3: This is a regularly scheduled feature release with over 800 changes. 1.1. commands add: add back forgotten files even when not matching exactly (BC) addremove: add back forgotten files (BC) addremove: add support for the -S flag addremove: print relative paths when called with -I/-X (BC) addremove: support addremove with explicit paths in subrepos backout: add --commit option commit: abort if --addremove is specified, but fails commit: remove reverse search for copy source when not in parent (issue4476) commit: propagate --addremove to subrepos if -S is specified (issue3759) graft: show more useful status information while grafting 1.2. core bundles: do not overwrite existing backup bundles (BC) osx: patch .pax.gz files in pkg bundles so they extract as root (issue4081) revset: handle hidden linkrev for file missing for head (issue4490) revset: allow rev(-1) to indicate null revision (BC) revset: fix ancestors(null) to include null revision (issue4512) subrepo: don't abort in add when non-hg subrepos are present (issue4513) cmdserver: use given streams as pipe channels like other commands extensions: only check compatibility against major and minor versions (BC) https: support tls sni (server name indication) for https urls (issue3090) ignore: resolve ignore files relative to repo root (issue4473) (BC) linkrev: handle filtered linkrev with no visible children (issue4307) linkrev: also adjust linkrev when bootstrapping annotate (issue4305) linkrev: use the right manifest content when adjusting linrev (issue4499) memctx: calculate manifest correctly with newly-removed files (issue4470) memctx: fix manifest for removed files (issue4470) obsstore: disable garbage collection during initialization (issue4456) subrepo: support remove with explicit paths in subrepos subrepo: add full revert support for git subrepos subrepo: add partial diff support for git subrepos subrepo: add status support for ignored files in git subrepos win32: remove Mercurial.ini file from Inno Setup installer (issue4435) 1.3. hgweb hgweb: allow viewing diffs against p1 or p2 for merge commits (issue3904) 1.4. extensions color: add support for colorizing git subrepo diffs color: add missing 'dim' in _effects convert: on svn failure, note libsvn version (issue4043) convert: replace revision references in messages if they are >= short hashes convert: handle LookupError in mercurial_source.lookuprev() extdiff: reintroduce backward compatibility with manual quoting of parameters histedit: add a test to show that issue4251 is fixed (issue4251) largefiles: fix commit of a directory with no largefile changes (issue4330) largefiles: use 'default' path for pulling largefiles, not 'default-push' largefiles: enable subrepo support for add, forget, remove largefiles: show progress when checking standin hashes in outgoing changesets mq: smarter handling of plain headers patchbomb: don't honor whitespace and format-changing diffopts (BC) rebase: show more useful status information while rebasing rebase: ensure rebase revision remains visible (issue4504) extdiff: avoid unexpected quoting arguments for external tools (issue4463) highlight: ignore Unicode's extra linebreaks (issue4291) record: don't honor format-changing diffopts (issue4459) share: add option to share bookmarks transplant: properly skip empty changeset (issue4423)
2015-02-03- Work around NetBSD libGL versioning mess.snj4-8/+23
- Enable opengl option by default on all platforms, not just Darwin. - Bump PKGREVISION to 4.
2015-02-03Update to 0.73mef2-6/+6
-------------- 0.73: # 2015-02-01T09:59:45+0100 - fixes and improvements from Manuel Streuhofer, Aristotle Pagaltzis, Sebastian Willert, David Hand, Eric Enns, Peter Roberts, Thomas Sibley, Ivan Baidakou, thanks! - fix 'perlbrew user' for fish users https://github.com/gugod/App-perlbrew/pull/429 - fix sub-shell for bash users https://github.com/gugod/App-perlbrew/pull/435 - clarify the 'perlbrew use' output: https://github.com/gugod/App-perlbrew/issues/439
2015-02-03Update tomef2-6/+6
----------------------------------------- version 2.06 at 2015-02-01 11:17:58 +0000 ----------------------------------------- Updated for v5.20.2 release candidate 1
2015-02-03Update 0.47 to 0.49mef2-6/+6
------------------- 0.49 Sun Jan 18 12:56:00 EST 2015 - Added with_deep Contributed by Andy Jones (issue #21) - Documented memory leak in stub() Reported by Victor Efimov (issue #14) - Added Travis CI info Contributed by Andy Jones (issue #23) - Fixed mock() example documentation Reported by Victor Efimov (issue #15) Contributed by Andy Jones (issue #22) 0.48 Tue Jan 06 22:52:00 EST 2015 - Testing fixes for Alpha branch of Test::More Contributed by Chad Granum (issue #18) - Metadata fixes Contributed by Graham Knop (issue #19)
2015-02-02Update 0.05 to 0.08 (again, the commit log is the same as done in 01/31)mef2-8/+6
http://mail-index.netbsd.org/pkgsrc-changes/2015/01/31/msg117991.html Except removing the PERL5_MODULE_TYPE= Module::Build Thanks obache and wiz
2015-02-02Update ruby2ruby to 2.1.3.taca2-6/+6
=== 2.1.3 / 2014-09-26 * 1 bug fix: * Fixed handling of kwargs. (joenas) === 2.1.2 / 2014-08-28 * 1 bug fix: * Fixed readme to point out that deep_clone may be needed. (heathd) === 2.1.1 / 2014-06-09 * 1 bug fix: * Moved Regexp::CODES out of guard on ::ENC_NONE. (presidentbeef) === 2.1.0 / 2014-04-23 * 4 minor enhancements: * Don't indent defn body extra if it has a top-level rescue. * Don't indent defn body until fully processed. * Don't use simple rescue form if resbody is a return (statement keyword). (eyberg) * Remove superfluous begin/end for top-level defn rescue. === 2.0.8 / 2014-03-24 * 1 bug fix: * 2.0/2.1: Fixed support for **kwsplat. (troessner)
2015-02-02Update ruby-uuidtools to 2.1.5.taca3-8/+7
== UUIDTools 2.1.5 * fixed issue with ip command vs ifconfig * dumped RubyForge related cruft * updated to modern RSpec syntax
2015-02-02Update ruby-uglifier to 2.7.0.taca3-11/+18
## 2.7.0 (8 January 2015) - copyright comment preservation also includes comments starting with a bang (!) ## 2.6.1 (1 January 2015) - update UglifyJS to 2.4.16 ## 2.6.0 (8 December 2014) - allow metadata to be appended to minified code ## 2.5.3 (18 July 2014) - no changes ## 2.5.2 (18 July 2014) - update UglifyJS to 2.4.15 ## 2.5.1 (13 June 2014) - update UglifyJS to 2.4.14 ## 2.5.0 (15 March 2014) - update UglifyJS to 2.4.13 - process Angular @ngInject annotations - add keep_fargs option - change `ascii_only` default to true ## 2.4.0 (19 December 2013) - update UglifyJS to 2.4.8 - add drop_console compress option ## 2.3.3 (12 December 2013) - update UglifyJS to 2.4.7 ## 2.3.2 (1 December 2013) - update UglifyJS to 2.4.6 - document missing mangler and output options ## 2.3.1 (8 November 2013) - update UglifyJS to 2.4.3 ## 2.3.0 (26 October 2013) - use JSON gem instead of multi_json - update UglifyJS to 2.4.1 - fix issues with some Unicode JS identifiers (#47, #58) ## 2.2.1 (28 August 2013) - fix IE8 compatibility ## 2.2.0 (25 August 2013) - update UglifyJS to 2.4.0 - add `negate_iife` compressor option - escape null characters as \x00, so that null followed by number isn't interpreted as octal (#47) ## 2.1.2 (7 July 2013) - update UglifyJS to 2.3.6 ## 2.1.1 (18 May 2013) - fix JScript compatibility - update UglifyJS to 2.3.4 ## 2.1.0 (8 May 2013) - update to UglifyJS 2.3.0 - add enclose and screw_ie8 options ## 2.0.1 (6 April 2013) - fix compatibility with Sprockets 2.9.0 ## 2.0.0 (6 April 2013) This release is backwards incompatible for JS compressor options. - update UglifyJS to 2.2.5 - change compressor arguments to align with UglifyJS2 - `compile_with_map`: generate source maps for minified code
2015-02-02Update ruby-turn to 0.9.7.taca3-10/+11
=== 0.9.7 / 2014-03-14 * Fix -n option for running named tests (#78) * Change default output mode to 'pretty' * Add option to print top 10 longest running tests * Fix home directory lookup
2015-02-02Update ruby-tins to 1.3.3.taca3-17/+15
* Add json support. * Avoid conflict with Rails.
2015-02-02Update ruby-test-unit to 3.0.9.taca3-16/+21
Changes are too many to write here, please refer doc/text/news.md.
2015-02-02Update ruby-stomp to 1.3.4.taca3-7/+9
== 1.3.4 20141202 * Change :start_timeout default to 0 (might break some clients) (#98). * Allow user set of SSLContext options (#105). * Allow user set of parm in SSLContext.new(parm) (#105). == 1.3.3 20140810 * Do not attempt to write empty message bodies. * Explicity close ssl socket on connection timeout. * Fix incorrect behavior for empty header keys (#93) * Do not override explicit :reliable => false. * Fix client fail-over fails (#98)
2015-02-02Update to 4.016wen2-7/+7
Update DEPENDS Upstream changes: 4.016 2015-01-24 12:30:10 GMT * Feature #470 : Add "hidden" attribute, and doc (Celogeek San) * Feature #471 : Added a better error message for isa check failures (Celogeek San) 4.015 2015-01-13 16:06:52 GMT * Bug #466 : Term::Any::Size should be recommanded but optional (Celogeek San) fix eval 4.014 2015-01-13 15:51:32 GMT * Bug #464 : warning generated when missing required params (Celogeek San) * Bug #466 : Term::Any::Size should be recommanded but optional (Celogeek San) 4.013 2014-11-22 07:43:13 GMT * Feature #462 : Autorange (Celogeek San)
2015-02-02Update ruby-simplecov to 0.9.1.taca3-10/+8
0.9.1, 2014-09-21 ([changes](https://github.com/colszowka/simplecov/compare/v0.9.0...v0.9.1)) ==================== ## Bugfixes * In 0.9.0, we introduced a regression that made SimpleCov no-op mode fail on Ruby 1.8, while dropping 1.8 support altogether is announced only for v1.0. This has been fixed. See [#333](https://github.com/colszowka/simplecov/issues/333) (thanks (@sferik) 0.9.0, 2014-07-17 ([changes](https://github.com/colszowka/simplecov/compare/v0.8.2...v0.9.0)) ==================== **A warm welcome and big thank you to the new contributors [@xaviershay](https://github.com/xaviershay), [@sferik](https://github.com/sferik) and especially [@bf4](https://github.com/bf4) for tackling a whole lot of issues and pull requests for this release!** ## Enhancements * New interface to specify multiple formatters. See [#317](https://github.com/colszowka/simplecov/pull/317) (thanks @sferik) * Document in the README how to exclude code from coverage reports, and that the feature shouldn't be abused for skipping untested private code. See [#304](https://github.com/colszowka/simplecov/issues/304) * Clarify Ruby version support. See [#279](https://github.com/colszowka/simplecov/pull/279) (thanks @deivid-rodriguez) ## Bugfixes * Ensure calculations return Floats, not Fixnum or Rational. Fixes segfaults with mathn. See [#245](https://github.com/colszowka/simplecov/pull/245) (thanks to @bf4) * Using `Kernel.exit` instead of exit to avoid uncaught throw :IRB_EXIT when exiting irb sessions. See [#287](https://github.com/colszowka/simplecov/pull/287) (thanks @wless1) See [#285](https://github.com/colszowka/simplecov/issues/285) * Does not look for .simplecov in ~/ when $HOME is not set. See [#311](https://github.com/colszowka/simplecov/pull/311) (thanks @lasseebert) * Exit with code only if it's Numeric > 0. See [#302](https://github.com/colszowka/simplecov/pull/303)(thanks @hajder) * Make default filter case insensitive. See [#280](https://github.com/colszowka/simplecov/pull/280) (thanks @ryanatball) * Improve regexp that matches functional tests. See [#276](https://github.com/colszowka/simplecov/pull/276) (thanks @sferik) * Fix TravisCI [#272](https://github.com/colszowka/simplecov/pull/272) [#278](https://github.com/colszowka/simplecov/pull/278), [#302](https://github.com/colszowka/simplecov/pull/302) * Fix global config load. See [#311](https://github.com/colszowka/simplecov/pull/311) (thanks @lasseebert)
2015-02-02Update ruby-sexp-processor to 4.4.5.taca2-6/+6
=== 4.4.5 / 2015-01-16 * 1 bug fix: * Removed shebangs in tests because of bugs (aka 'features') in RPM packaging tools. === 4.4.4 / 2014-08-14 * 1 bug fix: * MethodBasedSexpProcessor#in_klass clears out the method_stack for the duration of the block. === 4.4.3 / 2014-03-24 * 1 bug fix: * Fixed a bunch of pt_testcase entries for 1.9/2.0 wrt ruby2ruby. === 4.4.2 / 2014-03-14 * 2 minor enhancements: * Changed skipped versioned tests to return, not skip. Reduces noise so you can focus on real skips. * Extended versioned tests to include 2.0 and 2.1.
2015-02-02Update ruby-rspec-rails to 3.1.0.taca3-106/+19
Changes from 2.14.1 is too many to write here, please refer Changelog.
2015-02-02Update ruby-rspec to 3.1.0.taca2-9/+9
This is a meta gem (package) with rspec-core, rspec-expectations and rspec-mocks.
2015-02-02Update ruby-rspec-mocks to 3.1.3.taca3-110/+22
Changes from 2.14.6 is too many to write here, please refer Changelog.
2015-02-02Update ruby-rspec-expectations to 3.1.2.taca3-103/+21
Changes from 2.14.5 is too many to write here, please refer Changelog.
2015-02-02Update ruby-rspec-core to 3.1.7.taca4-177/+32
Changes from 2.14.8 is too many to write here, please refer Changelog. Also add support for pkg_alternatives(8) to reduce conflicts.
2015-02-02Add and enable ruby-rspec-support.taca1-1/+2
2015-02-02Add ruby-rspec-support package version 3.1.2.taca4-0/+53
Support utilities for RSpec gems. RSpec::Support provides common functionality to RSpec::Core, RSpec::Expectations and RSpec::Mocks. It is considered suitable for internal use only at this time.
2015-02-02Update ruby-rgl to 0.5.0.taca3-25/+47
2014-12 Release 0.5.0 This release mainly contains the contributions of Kirill, who added many algorithms to the library. Thank you Kirill! * @matiaskorhonen: Fixes the image paths in the README (#14) * @monora: Implicit graph example fails (#13) * @KL-7: Implement Graph#bipartite_sets. (#12) * @monora: syntax error in dot file for undirected graph (#11) * @KL-7: Edmonds-Karp algorithm for maximum flow (#10) * @KL-7: Prim's algorithm for minimum spanning tree (#9) * @carlosantoniodasilva: Run tests on Ruby 2.0 and remove deprecation warning (#8) * @KL-7: Bellman-Ford shortest paths algorithm (#7) * @KL-7: Minor improvements (asserts) for Dijkstra algorithm (#6) * @KL-7: Add Dijkstra shortest path algorithm. (#5) * @KL-7: Indentation and whitespaces clean up of examples (#4) * @KL-7: Travis configuration and README updates (#3) * @KL-7: Code clean up and configuration updates (#2) * @aschoerk: Renamed test-directory, (includes Rakefile), fixed TestComponents (#1)