[DRE-commits] [ruby-tins] 01/04: Merge tag 'upstream/1.1.0'

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Sun Apr 13 11:51:46 UTC 2014


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository ruby-tins.

commit c10f46a8b1452ff270bf699fd9f548f8e08752c3
Merge: b7c67d9 c698000
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date:   Sun Apr 13 16:58:56 2014 +0530

    Merge tag 'upstream/1.1.0'
    
    Upstream version 1.1.0

 .gitignore                                         |   3 +
 .travis.yml                                        |   5 +-
 LICENSE => COPYING                                 |   0
 Gemfile                                            |   5 +-
 README.rdoc                                        |   3 +-
 Rakefile                                           |  17 +-
 VERSION                                            |   2 +-
 checksums.yaml.gz                                  | Bin 0 -> 268 bytes
 examples/add_one.png                               | Bin 0 -> 37820 bytes
 examples/add_one.stm                               |  13 +
 examples/bb3.png                                   | Bin 0 -> 37820 bytes
 examples/bb3.stm                                   |  26 +
 examples/bb3_19.stm                                |  26 +
 examples/concatenate_compare.mtm                   |  31 +
 examples/concatenate_compare.png                   | Bin 0 -> 37820 bytes
 examples/concatenate_compare_19.mtm                |  31 +
 examples/length_difference.mtm                     |  17 +
 examples/length_difference.png                     | Bin 0 -> 37820 bytes
 examples/length_difference_19.mtm                  |  17 +
 examples/let.rb                                    |  62 ++
 examples/mail.rb                                   |  73 +++
 examples/minsky.rb                                 | 145 +++++
 examples/multiply.reg                              |  42 ++
 examples/null_pattern.rb                           |  52 ++
 examples/ones_difference-mtm.png                   | Bin 0 -> 37820 bytes
 examples/ones_difference-stm.png                   | Bin 0 -> 37820 bytes
 examples/ones_difference.mtm                       |  12 +
 examples/ones_difference.stm                       |  25 +
 examples/ones_difference_19.mtm                    |  12 +
 examples/ones_difference_19.stm                    |  25 +
 .../prefix-equals-suffix-reversed-with-infix.png   | Bin 0 -> 37820 bytes
 .../prefix-equals-suffix-reversed-with-infix.stm   |  38 ++
 ...prefix-equals-suffix-reversed-with-infix_19.stm |  38 ++
 examples/recipe.rb                                 |  81 +++
 examples/recipe2.rb                                |  82 +++
 examples/recipe_common.rb                          |  97 +++
 examples/subtract.reg                              |   9 +
 examples/turing-graph.rb                           |  17 +
 examples/turing.rb                                 | 310 ++++++++++
 lib/dslkit.rb                                      |   2 +
 lib/dslkit/polite.rb                               |   1 +
 lib/dslkit/rude.rb                                 |   1 +
 lib/tins.rb                                        |  13 +
 lib/tins/annotate.rb                               |  30 +
 lib/tins/concern.rb                                |   5 +-
 lib/tins/date_dummy.rb                             |  13 +-
 lib/tins/date_time_dummy.rb                        |  13 +-
 lib/tins/dslkit.rb                                 | 662 +++++++++++++++++++++
 lib/tins/memoize.rb                                |  24 +-
 lib/tins/method_description.rb                     |  38 ++
 lib/tins/named_set.rb                              |  12 +
 lib/tins/null.rb                                   |  35 +-
 lib/tins/proc_compose.rb                           |   8 +-
 lib/tins/proc_prelude.rb                           |  73 +++
 lib/tins/rotate.rb                                 |  16 +
 lib/tins/sexy_singleton.rb                         |  39 ++
 lib/tins/string_byte_order_mark.rb                 |  20 +
 lib/tins/terminal.rb                               |  35 ++
 lib/tins/thread_local.rb                           |  52 ++
 lib/tins/time_dummy.rb                             |  15 +-
 lib/tins/time_freezer.rb                           |  15 +
 lib/tins/to.rb                                     |   8 +
 lib/tins/token.rb                                  |  25 +
 lib/tins/version.rb                                |   4 +-
 lib/tins/xt.rb                                     |   8 +
 lib/tins/xt/annotate.rb                            |   5 +
 lib/tins/xt/concern.rb                             |  20 +
 lib/tins/xt/dslkit.rb                              |  23 +
 lib/tins/xt/method_description.rb                  |  23 +
 lib/tins/xt/proc_prelude.rb                        |   7 +
 lib/tins/xt/rotate.rb                              |   7 +
 lib/tins/xt/sexy_singleton.rb                      |   3 +
 lib/tins/xt/string.rb                              |   1 +
 lib/tins/xt/string_byte_order_mark.rb              |   7 +
 lib/tins/xt/to.rb                                  |   5 +
 metadata.yml                                       | 181 ++++--
 tests/annotate_test.rb                             |  37 ++
 tests/{try_test.rb => attempt_test.rb}             |  50 +-
 tests/concern_test.rb                              |  47 +-
 tests/dslkit_test.rb                               | 308 ++++++++++
 tests/dynamic_scope_test.rb                        |  31 +
 tests/from_module_test.rb                          |  61 ++
 tests/method_description_test.rb                   |  49 ++
 tests/named_set_test.rb                            |  18 +
 tests/null_test.rb                                 |  41 ++
 tests/proc_prelude_test.rb                         |  81 +++
 tests/responding_test.rb                           |   2 +-
 tests/rotate_test.rb                               |  65 ++
 tests/scope_test.rb                                |  31 +
 tests/sexy_singleton_test.rb                       |  16 +
 tests/string_byte_order_mark_test.rb               |  40 ++
 tests/subhash_test.rb                              |   8 +
 tests/test_helper.rb                               |   1 -
 tests/time_freezer_test.rb                         |  15 +
 tests/to_test.rb                                   |  32 +
 tests/token_test.rb                                |  38 ++
 tins.gemspec                                       |  27 +-
 97 files changed, 3629 insertions(+), 134 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-tins.git



More information about the Pkg-ruby-extras-commits mailing list