[DRE-commits] [ruby-slim] branch wheezy-backports updated (2b52060 -> 7bbf13b)

Jérémy Bobbio lunar at alioth.debian.org
Fri Oct 25 16:50:02 UTC 2013


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

lunar pushed a change to branch wheezy-backports
in repository ruby-slim.

      from  2b52060   Release version 2.0.0~pre6-1~bpo70+1 to wheezy-backports
      adds  2a0c8be   use canonical URI in Vcs-* fields
      adds  d3acf64   Imported Upstream version 2.0.0
      adds  255edad   Merge tag 'upstream/2.0.0'
      adds  17b1d47   Update Depends and Build-Depends
      adds  3a3b962   Imported Upstream version 2.0.1
      adds  538fa26   Merge tag 'upstream/2.0.1'
      adds  a68406f   Adjust Depends and Build-Depends again
      adds  ee7fd69   Remove obsolete patch
      adds  4ea8eca   Drop support for Ruby 1.8
      adds  8c2c9c7   Release version 2.0.1-1
       new  ba22866   Merge tag 'debian/2.0.1-1' into wheezy-backports
       new  0980659   Tighten the Build-Dependency on ruby-tilt
       new  7bbf13b   Release version 2.0.1-1~bpo70+1 to wheezy-backports

The 3 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:
 .gitignore                                         |   10 +-
 .travis.yml                                        |   26 +-
 .yardopts                                          |    3 +-
 CHANGES                                            |   72 +++-
 Gemfile                                            |   22 +-
 README.md                                          |  365 ++++++++------------
 Rakefile                                           |   22 +-
 benchmarks/run-benchmarks.rb                       |   46 +--
 checksums.yaml.gz                                  |  Bin 0 -> 270 bytes
 debian/changelog                                   |   20 ++
 debian/control                                     |   10 +-
 ...0001-Explicitly-load-rubygems-in-Rakefile.patch |   21 --
 debian/patches/series                              |    1 -
 doc/logic_less.md                                  |  137 ++++++++
 doc/translator.md                                  |   28 ++
 lib/slim.rb                                        |    1 +
 lib/slim/code_attributes.rb                        |    6 +-
 lib/slim/command.rb                                |   35 +-
 lib/slim/do_inserter.rb                            |   33 ++
 lib/slim/embedded.rb                               |    2 +
 lib/slim/end_inserter.rb                           |    4 +-
 lib/slim/engine.rb                                 |    5 +-
 lib/slim/erb_converter.rb                          |   14 +
 lib/slim/filter.rb                                 |    4 +-
 lib/slim/logic_less/context.rb                     |    8 +
 lib/slim/logic_less/filter.rb                      |    9 +-
 lib/slim/parser.rb                                 |   87 ++---
 lib/slim/splat/builder.rb                          |    2 +-
 lib/slim/splat/filter.rb                           |   13 +-
 lib/slim/template.rb                               |    4 +-
 lib/slim/translator.rb                             |    6 +-
 lib/slim/version.rb                                |    2 +-
 metadata.yml                                       |   58 ++--
 slim.gemspec                                       |   11 +-
 test/core/helper.rb                                |   41 ++-
 test/core/test_code_blocks.rb                      |   51 +++
 test/core/test_code_escaping.rb                    |   95 ++++-
 test/core/test_code_structure.rb                   |   65 +++-
 test/core/test_embedded_engines.rb                 |   51 ++-
 test/core/test_encoding.rb                         |    9 +-
 test/core/test_erb_converter.rb                    |   67 ++++
 test/core/test_html_attributes.rb                  |   15 +-
 test/core/test_parser_errors.rb                    |   14 +
 test/core/test_ruby_errors.rb                      |    4 +-
 test/literate/TESTS.md                             |  221 +++++++++++-
 test/logic_less/test_logic_less.rb                 |   19 +-
 .../app/controllers/application_controller.rb      |    1 -
 test/rails/app/controllers/entries_controller.rb   |    5 +
 test/rails/app/controllers/parents_controller.rb   |   85 -----
 test/rails/app/controllers/slim_controller.rb      |    3 +
 test/rails/app/models/child.rb                     |    3 -
 test/rails/app/models/entry.rb                     |   16 +
 test/rails/app/models/parent.rb                    |    4 -
 test/rails/app/views/entries/edit.html.slim        |    3 +
 test/rails/app/views/parents/_form.html.slim       |    8 -
 test/rails/app/views/parents/edit.html.slim        |    2 -
 test/rails/app/views/parents/new.html.slim         |    2 -
 test/rails/app/views/parents/show.html.slim        |    5 -
 test/rails/app/views/slim/form_for.html.slim       |    2 +
 .../app/views/slim/{normal.html.slim => xml.slim}  |    0
 test/rails/config/application.rb                   |    4 +-
 test/rails/config/database.yml                     |    4 -
 test/rails/config/environments/test.rb             |    2 +-
 test/rails/config/routes.rb                        |    2 +-
 .../migrate/20101220223037_parents_and_children.rb |   17 -
 test/rails/test/helper.rb                          |    3 -
 test/rails/test/test_slim.rb                       |   21 +-
 test/translator/test_translator.rb                 |   15 +-
 68 files changed, 1287 insertions(+), 659 deletions(-)
 create mode 100644 checksums.yaml.gz
 delete mode 100644 debian/patches/0001-Explicitly-load-rubygems-in-Rakefile.patch
 delete mode 100644 debian/patches/series
 create mode 100644 doc/logic_less.md
 create mode 100644 doc/translator.md
 create mode 100644 lib/slim/do_inserter.rb
 create mode 100644 lib/slim/erb_converter.rb
 create mode 100644 test/core/test_erb_converter.rb
 create mode 100644 test/rails/app/controllers/entries_controller.rb
 delete mode 100644 test/rails/app/controllers/parents_controller.rb
 delete mode 100644 test/rails/app/models/child.rb
 create mode 100644 test/rails/app/models/entry.rb
 delete mode 100644 test/rails/app/models/parent.rb
 create mode 100644 test/rails/app/views/entries/edit.html.slim
 delete mode 100644 test/rails/app/views/parents/_form.html.slim
 delete mode 100644 test/rails/app/views/parents/edit.html.slim
 delete mode 100644 test/rails/app/views/parents/new.html.slim
 delete mode 100644 test/rails/app/views/parents/show.html.slim
 create mode 100644 test/rails/app/views/slim/form_for.html.slim
 copy test/rails/app/views/slim/{normal.html.slim => xml.slim} (100%)
 delete mode 100644 test/rails/config/database.yml
 delete mode 100644 test/rails/db/migrate/20101220223037_parents_and_children.rb

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



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