simple_progressbar 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -10,7 +10,7 @@ Usage:
10
10
 
11
11
  SimpleProgressbar.new.show("Installing stuff") do
12
12
  (0..10).each {|i|
13
- set_progress i*10
13
+ progress i*10
14
14
  sleep(1)
15
15
  }
16
16
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -7,7 +7,7 @@ class SimpleProgressbar
7
7
  finish_progress
8
8
  end
9
9
 
10
- def set_progress(percent)
10
+ def progress(percent)
11
11
  print "\e[19D"
12
12
  render_progress(percent)
13
13
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{simple_progressbar}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bodo Tasche"]
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
22
22
  "Rakefile",
23
23
  "VERSION",
24
24
  "lib/simple_progressbar.rb",
25
- "pkg/simple_progressbar-0.1.0.gem",
26
25
  "simple_progressbar.gemspec",
27
26
  "test/helper.rb",
28
27
  "test/test_simple_progressbar.rb"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Bodo Tasche
@@ -44,7 +44,6 @@ files:
44
44
  - Rakefile
45
45
  - VERSION
46
46
  - lib/simple_progressbar.rb
47
- - pkg/simple_progressbar-0.1.0.gem
48
47
  - simple_progressbar.gemspec
49
48
  - test/helper.rb
50
49
  - test/test_simple_progressbar.rb
Binary file