[DRE-commits] [ruby-progressbar] branch master updated (fe35e4b -> 6f73f5e)
Hleb Valoshka
tsfgnu-guest at moszumanska.debian.org
Mon Jun 22 10:58:33 UTC 2015
This is an automated email from the git hooks/post-receive script.
tsfgnu-guest pushed a change to branch master
in repository ruby-progressbar.
from fe35e4b update for release
adds 23b1fc2 Imported Upstream version 1.4.2
new 76d8ec6 Merge tag 'upstream/1.4.2'
new 7a2ca84 Update Build-Depends
new 97a243d Update Standards-Version to 3.9.6 (no changes)
new 1fe738f Add Testsuite: autopkgtest
new 2171138 Update document list
new f7bed35 Update watch file
new 93b69aa Update the way tests are run
new 57cfec3 Refresh rules file, no actual changes
new 6b88ddd Add patch 0001-Make-spec-RSpec3-compatible.patch
new ef42d7d Add myself to uploaders
new 1e78be8 Update copyright file to reflect license change
new 6f73f5e Release to unstable
The 12 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 | 23 -
.ruby-version | 1 -
.travis.yml | 6 -
ChangeLog | 113 --
Gemfile | 4 -
Gemfile.lock | 27 -
LICENSE | 23 +-
README.md | 411 +++++++
README.rdoc | 116 --
Rakefile | 14 -
checksums.yaml.gz | Bin 266 -> 0 bytes
debian/changelog | 17 +
debian/control | 12 +-
debian/copyright | 33 +-
.../patches/0001-Make-spec-RSpec3-compatible.patch | 1224 ++++++++++++++++++++
debian/patches/series | 1 +
debian/ruby-progressbar.docs | 2 +-
debian/ruby-tests.rake | 7 +
debian/ruby-tests.rb | 2 -
debian/rules | 11 +
debian/watch | 2 +-
lib/progressbar.rb | 288 -----
lib/ruby-progressbar.rb | 12 +
lib/ruby-progressbar/base.rb | 209 ++++
lib/ruby-progressbar/components.rb | 6 +
lib/ruby-progressbar/components/bar.rb | 60 +
lib/ruby-progressbar/components/elapsed_timer.rb | 20 +
lib/ruby-progressbar/components/estimated_timer.rb | 86 ++
lib/ruby-progressbar/components/progressable.rb | 105 ++
lib/ruby-progressbar/components/throttle.rb | 19 +
lib/ruby-progressbar/components/timer.rb | 69 ++
.../errors/invalid_progress_error.rb | 4 +
lib/ruby-progressbar/format.rb | 2 +
lib/ruby-progressbar/format/base.rb | 55 +
lib/ruby-progressbar/format/molecule.rb | 37 +
lib/ruby-progressbar/formatter.rb | 95 ++
lib/ruby-progressbar/length_calculator.rb | 63 +
lib/ruby-progressbar/running_average_calculator.rb | 7 +
lib/ruby-progressbar/time.rb | 22 +
lib/ruby-progressbar/version.rb | 3 +
metadata.yml | 189 +--
progressbar.gemspec | 29 -
spec/fixtures/benchmark.rb | 11 +
spec/lib/ruby-progressbar/base_spec.rb | 707 +++++++++++
spec/lib/ruby-progressbar/components/bar_spec.rb | 210 ++++
.../components/elapsed_timer_spec.rb | 91 ++
.../components/estimated_timer_spec.rb | 239 ++++
.../components/progressable_spec.rb | 38 +
.../ruby-progressbar/components/throttle_spec.rb | 101 ++
spec/lib/ruby-progressbar/format/molecule_spec.rb | 22 +
.../running_average_calculator_spec.rb | 11 +
spec/lib/ruby-progressbar/time_spec.rb | 51 +
spec/spec_helper.rb | 6 +
spec/support/time.rb | 19 +
test/test.rb | 125 --
55 files changed, 4210 insertions(+), 850 deletions(-)
delete mode 100644 .gitignore
delete mode 100644 .ruby-version
delete mode 100644 .travis.yml
delete mode 100644 ChangeLog
delete mode 100644 Gemfile
delete mode 100644 Gemfile.lock
create mode 100644 README.md
delete mode 100644 README.rdoc
delete mode 100644 Rakefile
delete mode 100644 checksums.yaml.gz
create mode 100644 debian/patches/0001-Make-spec-RSpec3-compatible.patch
create mode 100644 debian/patches/series
create mode 100644 debian/ruby-tests.rake
delete mode 100644 debian/ruby-tests.rb
delete mode 100644 lib/progressbar.rb
create mode 100644 lib/ruby-progressbar.rb
create mode 100644 lib/ruby-progressbar/base.rb
create mode 100644 lib/ruby-progressbar/components.rb
create mode 100644 lib/ruby-progressbar/components/bar.rb
create mode 100644 lib/ruby-progressbar/components/elapsed_timer.rb
create mode 100644 lib/ruby-progressbar/components/estimated_timer.rb
create mode 100644 lib/ruby-progressbar/components/progressable.rb
create mode 100644 lib/ruby-progressbar/components/throttle.rb
create mode 100644 lib/ruby-progressbar/components/timer.rb
create mode 100644 lib/ruby-progressbar/errors/invalid_progress_error.rb
create mode 100644 lib/ruby-progressbar/format.rb
create mode 100644 lib/ruby-progressbar/format/base.rb
create mode 100644 lib/ruby-progressbar/format/molecule.rb
create mode 100644 lib/ruby-progressbar/formatter.rb
create mode 100644 lib/ruby-progressbar/length_calculator.rb
create mode 100644 lib/ruby-progressbar/running_average_calculator.rb
create mode 100644 lib/ruby-progressbar/time.rb
create mode 100644 lib/ruby-progressbar/version.rb
delete mode 100644 progressbar.gemspec
create mode 100644 spec/fixtures/benchmark.rb
create mode 100644 spec/lib/ruby-progressbar/base_spec.rb
create mode 100644 spec/lib/ruby-progressbar/components/bar_spec.rb
create mode 100644 spec/lib/ruby-progressbar/components/elapsed_timer_spec.rb
create mode 100644 spec/lib/ruby-progressbar/components/estimated_timer_spec.rb
create mode 100644 spec/lib/ruby-progressbar/components/progressable_spec.rb
create mode 100644 spec/lib/ruby-progressbar/components/throttle_spec.rb
create mode 100644 spec/lib/ruby-progressbar/format/molecule_spec.rb
create mode 100644 spec/lib/ruby-progressbar/running_average_calculator_spec.rb
create mode 100644 spec/lib/ruby-progressbar/time_spec.rb
create mode 100644 spec/spec_helper.rb
create mode 100644 spec/support/time.rb
delete mode 100644 test/test.rb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-progressbar.git
More information about the Pkg-ruby-extras-commits
mailing list