[DRE-commits] [ruby-stringex] branch master updated (537703f -> b3736e5)

Youhei SASAKI uwabami-guest at moszumanska.debian.org
Mon Feb 10 16:21:52 UTC 2014


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

uwabami-guest pushed a change to branch master
in repository ruby-stringex.

      from  537703f   Update debian/changelog
       new  15555df   Fix FTBFS (Closes: #738396)
       new  ff456d5   Refresh patches
       new  3857e16   Imported Upstream version 2.2.0
       new  970db17   Bump Standard Version: 3.9.5
       new  b3736e5   Update debian/changelog

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Gemfile                                            |  10 +-
 Gemfile.lock                                       |  74 ------------
 README.rdoc                                        |  25 ++--
 Rakefile                                           |  10 +-
 VERSION                                            |   2 +-
 checksums.yaml.gz                                  | Bin 427 -> 419 bytes
 debian/changelog                                   |  11 ++
 debian/control                                     |   4 +-
 debian/patches/0001-Drop-RubyGems-depends.patch    |  32 ++---
 debian/patches/0002-add-minitest-autorun.patch     |  15 +++
 debian/patches/series                              |   1 +
 lib/stringex/acts_as_url/adapter/active_record.rb  |   2 +-
 lib/stringex/configuration/acts_as_url.rb          |   3 +-
 lib/stringex/configuration/string_extensions.rb    |   3 +-
 lib/stringex/configuration_lite.rb                 |   3 +
 lib/stringex/localization.rb                       |  22 +++-
 lib/stringex/localization/backend/base.rb          |  13 +++
 lib/stringex/localization/backend/i18n.rb          |  40 +++++--
 lib/stringex/localization/backend/internal.rb      |   6 +-
 .../localization/conversion_expressions.rb         |   7 +-
 lib/stringex/localization/converter.rb             |   6 +-
 lib/stringex/localization/default_conversions.rb   |   1 +
 lib/stringex/string_extensions.rb                  |  38 +++++-
 lib/stringex/unidecoder_data/x00.yml               |   2 +-
 lib/{stringex.rb => stringex_lite.rb}              |   3 -
 locales/da.yml                                     |   3 +-
 locales/de.yml                                     |  77 ++++++++++++
 locales/en.yml                                     |   1 +
 locales/nl.yml                                     |  69 +++++++++++
 locales/pt-BR.yml                                  |   1 +
 locales/ru.yml                                     |  69 +++++++++++
 metadata.yml                                       |  71 ++++++-----
 stringex.gemspec                                   |  59 ++++++----
 test/performance/localization_performance_test.rb  |  24 ++++
 test/redcloth_to_html_test.rb                      |  37 ------
 .../acts_as_url/adapter/active_record.rb           |   0
 test/{ => unit}/acts_as_url/adapter/data_mapper.rb |   0
 test/{ => unit}/acts_as_url/adapter/mongoid.rb     |   0
 test/{ => unit}/acts_as_url_configuration_test.rb  |   0
 test/{ => unit}/acts_as_url_integration_test.rb    |  18 +++
 test/{ => unit}/localization/da_test.rb            |   5 +-
 test/unit/localization/de_test.rb                  | 118 +++++++++++++++++++
 test/{ => unit}/localization/default_test.rb       |   2 +
 test/{ => unit}/localization/en_test.rb            |   1 +
 test/unit/localization/nl_test.rb                  | 118 +++++++++++++++++++
 test/unit/localization/pt_br_test.rb               | 118 +++++++++++++++++++
 test/unit/localization/ru_test.rb                  | 130 +++++++++++++++++++++
 test/unit/localization_18n_failure_test.rb         |  40 +++++++
 test/{ => unit}/localization_test.rb               |  19 +++
 test/unit/string_extensions_configuration_test.rb  |  17 +++
 test/{ => unit}/string_extensions_test.rb          |  94 ++++++++++++++-
 .../unicode_point_suite/basic_greek_test.rb        |   0
 .../unicode_point_suite/basic_latin_test.rb        |   0
 .../unicode_point_suite/codepoint_test_helper.rb   |   0
 test/{ => unit}/unidecoder/bad_localization.yml    |   0
 test/{ => unit}/unidecoder/localization.yml        |   0
 test/{ => unit}/unidecoder_test.rb                 |   0
 test/{ => unit}/version_test.rb                    |   2 +-
 58 files changed, 1191 insertions(+), 235 deletions(-)
 delete mode 100644 Gemfile.lock
 create mode 100644 debian/patches/0002-add-minitest-autorun.patch
 create mode 100644 lib/stringex/configuration_lite.rb
 create mode 100644 lib/stringex/localization/backend/base.rb
 copy lib/{stringex.rb => stringex_lite.rb} (84%)
 create mode 100644 locales/de.yml
 create mode 100644 locales/nl.yml
 create mode 100644 locales/ru.yml
 create mode 100644 test/performance/localization_performance_test.rb
 delete mode 100644 test/redcloth_to_html_test.rb
 rename test/{ => unit}/acts_as_url/adapter/active_record.rb (100%)
 rename test/{ => unit}/acts_as_url/adapter/data_mapper.rb (100%)
 rename test/{ => unit}/acts_as_url/adapter/mongoid.rb (100%)
 rename test/{ => unit}/acts_as_url_configuration_test.rb (100%)
 rename test/{ => unit}/acts_as_url_integration_test.rb (95%)
 rename test/{ => unit}/localization/da_test.rb (97%)
 create mode 100644 test/unit/localization/de_test.rb
 rename test/{ => unit}/localization/default_test.rb (99%)
 rename test/{ => unit}/localization/en_test.rb (99%)
 create mode 100644 test/unit/localization/nl_test.rb
 create mode 100644 test/unit/localization/pt_br_test.rb
 create mode 100644 test/unit/localization/ru_test.rb
 create mode 100644 test/unit/localization_18n_failure_test.rb
 rename test/{ => unit}/localization_test.rb (88%)
 create mode 100644 test/unit/string_extensions_configuration_test.rb
 rename test/{ => unit}/string_extensions_test.rb (72%)
 rename test/{ => unit}/unicode_point_suite/basic_greek_test.rb (100%)
 rename test/{ => unit}/unicode_point_suite/basic_latin_test.rb (100%)
 rename test/{ => unit}/unicode_point_suite/codepoint_test_helper.rb (100%)
 rename test/{ => unit}/unidecoder/bad_localization.yml (100%)
 rename test/{ => unit}/unidecoder/localization.yml (100%)
 rename test/{ => unit}/unidecoder_test.rb (100%)
 rename test/{ => unit}/version_test.rb (98%)

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



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