tty-progressbar 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae9ad2ae6d8a85a713de8ee733bcee99f30363ae
4
- data.tar.gz: bf7550f7709ecf82fed2760ba04c15aca402fa10
3
+ metadata.gz: 356470af4dabd6c724cfbd789049429e2e000a0c
4
+ data.tar.gz: f4cdce3fbfeaa7b2bced0ffb067982a850fb7358
5
5
  SHA512:
6
- metadata.gz: 9a2ccc30badc32c66c6c83c98be1ec9509ab79ecec0cd79ed72f9c85c331d73f74403a40744db0489de026b7b9a2ba05d8875eedda7368dbe0dc1ae3ca1bde71
7
- data.tar.gz: 211f366e8a8fefc4741da94388d783b98204c633826d652674c65827b01398c9d4aa08fa84d7dc6930050b3a8c6a58ab682b6da23e38dc19d4d6563da9212ef7
6
+ metadata.gz: 2e5ab9947f5627d78b9bb1d9471b8c166dc856c35ec224b19fd37481938bf00c1efda00dfce1ab6de056d5da7f56c72b6a5ec1acdb7008b36833adfc7f917dd1
7
+ data.tar.gz: 8ff67c8713892e9ed15b7c046ce0d48c3f88fb6fae7153895d56faa9bc2f7c38c4b0ab127f6d5ceab6dd9292c81fdd55ffb3af11755a4206917bce5962d46412
data/.rspec CHANGED
@@ -1,2 +1,3 @@
1
1
  --color
2
2
  --require spec_helper
3
+ --warnings
data/.travis.yml CHANGED
@@ -10,13 +10,9 @@ rvm:
10
10
  - 2.2.0
11
11
  - 2.3.0
12
12
  - ruby-head
13
+ - jruby-9000
14
+ - jruby-head
13
15
  matrix:
14
- include:
15
- - rvm: jruby-19mode
16
- - rvm: jruby-20mode
17
- - rvm: jruby-21mode
18
- - rvm: jruby-head
19
- - rvm: rbx-2
20
16
  allow_failures:
21
17
  - rvm: ruby-head
22
18
  - rvm: jruby-head
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change log
2
2
 
3
+ ## [v0.10.1] - 2016-12-26
4
+
5
+ ### Fixed
6
+ * Fix redefinition of Configuration#total=
7
+
3
8
  ## [v0.10.0] - 2016-06-25
4
9
 
5
10
  ### Fixed
@@ -90,6 +95,7 @@
90
95
 
91
96
  * Initial implementation and release
92
97
 
98
+ [v0.10.1]: https://github.com/peter-murach/tty-progressbar/compare/v0.10.0...v0.10.1
93
99
  [v0.10.0]: https://github.com/peter-murach/tty-progressbar/compare/v0.9.0...v0.10.0
94
100
  [v0.9.0]: https://github.com/peter-murach/tty-progressbar/compare/v0.8.2...v0.9.0
95
101
  [v0.8.2]: https://github.com/peter-murach/tty-progressbar/compare/v0.8.1...v0.8.2
data/Gemfile CHANGED
@@ -9,6 +9,7 @@ group :test do
9
9
  gem 'pastel', '~> 0.6.0'
10
10
  gem 'coveralls', '~> 0.8.13'
11
11
  gem 'simplecov', '~> 0.11.2'
12
+ gem 'term-ansicolor', '=1.3.2'
12
13
  end
13
14
 
14
15
  group :metrics do
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # TTY::ProgressBar [![Gitter](https://badges.gitter.im/Join%20Chat.svg)][gitter]
2
2
  [![Gem Version](https://badge.fury.io/rb/tty-progressbar.svg)][gem]
3
3
  [![Build Status](https://secure.travis-ci.org/piotrmurach/tty-progressbar.svg?branch=master)][travis]
4
+ [![Build status](https://ci.appveyor.com/api/projects/status/w3jafjeatt1ulufa?svg=true)][appveyor]
4
5
  [![Code Climate](https://codeclimate.com/github/piotrmurach/tty-progressbar/badges/gpa.svg)][codeclimate]
5
6
  [![Coverage Status](https://coveralls.io/repos/github/piotrmurach/tty-progressbar/badge.svg)][coverage]
6
7
  [![Inline docs](http://inch-ci.org/github/piotrmurach/tty-progressbar.svg?branch=master)][inchpages]
@@ -8,6 +9,7 @@
8
9
  [gitter]: https://gitter.im/piotrmurach/tty
9
10
  [gem]: http://badge.fury.io/rb/tty-progressbar
10
11
  [travis]: http://travis-ci.org/piotrmurach/tty-progressbar
12
+ [appveyor]: https://ci.appveyor.com/project/piotrmurach/tty-progressbar
11
13
  [codeclimate]: https://codeclimate.com/github/piotrmurach/tty-progressbar
12
14
  [coverage]: https://coveralls.io/github/piotrmurach/tty-progressbar
13
15
  [inchpages]: http://inch-ci.org/github/piotrmurach/tty-progressbar
data/appveyor.yml ADDED
@@ -0,0 +1,23 @@
1
+ ---
2
+ install:
3
+ - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
4
+ - ruby --version
5
+ - gem --version
6
+ - bundle install
7
+ build: off
8
+ test_script:
9
+ - bundle exec rake ci
10
+ environment:
11
+ matrix:
12
+ - ruby_version: "193"
13
+ - ruby_version: "200"
14
+ - ruby_version: "200-x64"
15
+ - ruby_version: "21"
16
+ - ruby_version: "21-x64"
17
+ - ruby_version: "22"
18
+ - ruby_version: "22-x64"
19
+ - ruby_version: "23"
20
+ - ruby_version: "23-x64"
21
+ matrix:
22
+ allow_failures:
23
+ - ruby_version: "193"
@@ -4,7 +4,7 @@ module TTY
4
4
  class ProgressBar
5
5
  class Configuration
6
6
 
7
- attr_accessor :total
7
+ attr_reader :total
8
8
 
9
9
  attr_accessor :width
10
10
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TTY
4
4
  class ProgressBar
5
- VERSION = '0.10.0'
5
+ VERSION = '0.10.1'
6
6
  end # ProgressBar
7
7
  end # TTY
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tty-progressbar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Murach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-25 00:00:00.000000000 Z
11
+ date: 2016-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-screen
@@ -74,6 +74,7 @@ files:
74
74
  - LICENSE.txt
75
75
  - README.md
76
76
  - Rakefile
77
+ - appveyor.yml
77
78
  - examples/color.rb
78
79
  - examples/simple.rb
79
80
  - examples/speed.rb