[DRE-commits] [ruby-simplecov-html] branch master updated (fa69310 -> b577374)

Antonio Terceiro terceiro at moszumanska.debian.org
Tue Sep 15 14:58:51 UTC 2015


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

terceiro pushed a change to branch master
in repository ruby-simplecov-html.

      from  fa69310   override broken link warning
       new  65cc2e2   Imported Upstream version 0.10.0
       new  98e7ed3   Merge tag 'upstream/0.10.0'
       new  306cab5   New upstream release
       new  5beabc7   Refresh patches
       new  83a12a8   Update packaging with a new dh-make-ruby run
       new  b577374   debian/changelog: rephrase

The 6 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                                         |    5 +-
 .rubocop.yml                                       |   50 +
 .travis.yml                                        |   27 +
 Gemfile                                            |   29 +-
 Guardfile                                          |    8 +-
 LICENSE                                            |    2 +-
 README.md                                          |    2 +-
 Rakefile                                           |   29 +-
 assets/javascripts/application.js                  |   89 +-
 assets/javascripts/plugins/jquery.colorbox.js      | 1090 +++++++++++++++++
 .../plugins/jquery.fancybox-1.3.1.pack.js          |   44 -
 assets/stylesheets/plugins/jquery.colorbox.css     |   52 +
 .../stylesheets/plugins/jquery.fancybox-1.3.1.css  |  363 ------
 debian/changelog                                   |   10 +
 debian/compat                                      |    2 +-
 debian/control                                     |   20 +-
 debian/patches/fix-paths.patch                     |   26 -
 debian/patches/remove-rubygems-bundler.patch       |   33 -
 debian/patches/series                              |    2 -
 debian/ruby-tests.rake                             |    9 -
 debian/rules                                       |   13 +-
 lib/simplecov-html.rb                              |  192 +--
 lib/simplecov-html/version.rb                      |   24 +-
 metadata.yml                                       |  111 +-
 public/application.css                             |  415 +------
 public/application.js                              | 1225 ++++++++++++++++++--
 public/colorbox/border.png                         |  Bin 0 -> 163 bytes
 public/colorbox/controls.png                       |  Bin 0 -> 2033 bytes
 public/colorbox/loading.gif                        |  Bin 0 -> 9427 bytes
 public/colorbox/loading_background.png             |  Bin 0 -> 166 bytes
 public/fancybox/blank.gif                          |  Bin 43 -> 0 bytes
 public/fancybox/fancy_close.png                    |  Bin 1517 -> 0 bytes
 public/fancybox/fancy_loading.png                  |  Bin 10195 -> 0 bytes
 public/fancybox/fancy_nav_left.png                 |  Bin 1446 -> 0 bytes
 public/fancybox/fancy_nav_right.png                |  Bin 1454 -> 0 bytes
 public/fancybox/fancy_shadow_e.png                 |  Bin 107 -> 0 bytes
 public/fancybox/fancy_shadow_n.png                 |  Bin 106 -> 0 bytes
 public/fancybox/fancy_shadow_ne.png                |  Bin 347 -> 0 bytes
 public/fancybox/fancy_shadow_nw.png                |  Bin 324 -> 0 bytes
 public/fancybox/fancy_shadow_s.png                 |  Bin 111 -> 0 bytes
 public/fancybox/fancy_shadow_se.png                |  Bin 352 -> 0 bytes
 public/fancybox/fancy_shadow_sw.png                |  Bin 340 -> 0 bytes
 public/fancybox/fancy_shadow_w.png                 |  Bin 103 -> 0 bytes
 public/fancybox/fancy_title_left.png               |  Bin 503 -> 0 bytes
 public/fancybox/fancy_title_main.png               |  Bin 96 -> 0 bytes
 public/fancybox/fancy_title_over.png               |  Bin 70 -> 0 bytes
 public/fancybox/fancy_title_right.png              |  Bin 506 -> 0 bytes
 public/fancybox/fancybox-x.png                     |  Bin 203 -> 0 bytes
 public/fancybox/fancybox-y.png                     |  Bin 176 -> 0 bytes
 public/fancybox/fancybox.png                       |  Bin 15287 -> 0 bytes
 simplecov-html.gemspec                             |   41 +-
 test/helper.rb                                     |   13 +-
 test/test_simple_cov-html.rb                       |    2 +-
 53 files changed, 2735 insertions(+), 1193 deletions(-)
 create mode 100644 .rubocop.yml
 create mode 100644 .travis.yml
 create mode 100644 assets/javascripts/plugins/jquery.colorbox.js
 delete mode 100644 assets/javascripts/plugins/jquery.fancybox-1.3.1.pack.js
 create mode 100644 assets/stylesheets/plugins/jquery.colorbox.css
 delete mode 100644 assets/stylesheets/plugins/jquery.fancybox-1.3.1.css
 delete mode 100644 debian/patches/fix-paths.patch
 delete mode 100644 debian/patches/remove-rubygems-bundler.patch
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/ruby-tests.rake
 create mode 100644 public/colorbox/border.png
 create mode 100644 public/colorbox/controls.png
 create mode 100644 public/colorbox/loading.gif
 create mode 100644 public/colorbox/loading_background.png
 delete mode 100644 public/fancybox/blank.gif
 delete mode 100644 public/fancybox/fancy_close.png
 delete mode 100644 public/fancybox/fancy_loading.png
 delete mode 100644 public/fancybox/fancy_nav_left.png
 delete mode 100644 public/fancybox/fancy_nav_right.png
 delete mode 100644 public/fancybox/fancy_shadow_e.png
 delete mode 100644 public/fancybox/fancy_shadow_n.png
 delete mode 100644 public/fancybox/fancy_shadow_ne.png
 delete mode 100644 public/fancybox/fancy_shadow_nw.png
 delete mode 100644 public/fancybox/fancy_shadow_s.png
 delete mode 100644 public/fancybox/fancy_shadow_se.png
 delete mode 100644 public/fancybox/fancy_shadow_sw.png
 delete mode 100644 public/fancybox/fancy_shadow_w.png
 delete mode 100644 public/fancybox/fancy_title_left.png
 delete mode 100644 public/fancybox/fancy_title_main.png
 delete mode 100644 public/fancybox/fancy_title_over.png
 delete mode 100644 public/fancybox/fancy_title_right.png
 delete mode 100644 public/fancybox/fancybox-x.png
 delete mode 100644 public/fancybox/fancybox-y.png
 delete mode 100644 public/fancybox/fancybox.png

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



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