progress 0.0.7 → 0.0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGELOG +1 -0
  2. data/Rakefile +5 -0
  3. data/lib/progress.rb +1 -1
  4. data/progress.gemspec +4 -4
  5. metadata +6 -4
data/CHANGELOG CHANGED
@@ -1,3 +1,4 @@
1
+ v0.0.7.1 2009-04-24 rake spec
1
2
  v0.0.7 2009-03-24 moved to echoe
2
3
  v0.0.6 2009-02-19 printing messages to stderr
3
4
  v0.0.5 2008-11-07 piping result of block execution, changed default step count to 1 (from 100)
data/Rakefile CHANGED
@@ -4,6 +4,11 @@ require 'rake/clean'
4
4
  require 'fileutils'
5
5
  require 'echoe'
6
6
 
7
+ load 'tasks/rspec.rake'
8
+
9
+ task :default => :spec
10
+ task :test
11
+
7
12
  require File.dirname(__FILE__) + '/lib/progress'
8
13
 
9
14
  Echoe.new('progress', Progress::VERSION) do |p|
@@ -4,7 +4,7 @@ $:.unshift(File.dirname(__FILE__)) unless
4
4
  require 'singleton'
5
5
 
6
6
  class Progress
7
- VERSION = '0.0.7'
7
+ VERSION = '0.0.7.1'
8
8
 
9
9
  include Singleton
10
10
 
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{progress}
5
- s.version = "0.0.7"
5
+ s.version = "0.0.7.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["toy"]
9
- s.date = %q{2009-03-24}
9
+ s.date = %q{2009-04-24}
10
10
  s.description = %q{A library to show progress of long running tasks.}
11
11
  s.email = %q{}
12
12
  s.extra_rdoc_files = ["CHANGELOG", "lib/progress/enumerable.rb", "lib/progress/integer.rb", "lib/progress.rb", "README.rdoc", "tasks/rspec.rake"]
@@ -16,12 +16,12 @@ Gem::Specification.new do |s|
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Progress", "--main", "README.rdoc"]
17
17
  s.require_paths = ["lib"]
18
18
  s.rubyforge_project = %q{progress}
19
- s.rubygems_version = %q{1.3.1}
19
+ s.rubygems_version = %q{1.3.2}
20
20
  s.summary = %q{A library to show progress of long running tasks.}
21
21
 
22
22
  if s.respond_to? :specification_version then
23
23
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
24
- s.specification_version = 2
24
+ s.specification_version = 3
25
25
 
26
26
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
27
27
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: progress
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - toy
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-24 00:00:00 +03:00
12
+ date: 2009-04-24 00:00:00 +04:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -44,6 +44,8 @@ files:
44
44
  - progress.gemspec
45
45
  has_rdoc: true
46
46
  homepage: ""
47
+ licenses: []
48
+
47
49
  post_install_message:
48
50
  rdoc_options:
49
51
  - --line-numbers
@@ -69,9 +71,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
71
  requirements: []
70
72
 
71
73
  rubyforge_project: progress
72
- rubygems_version: 1.3.1
74
+ rubygems_version: 1.3.2
73
75
  signing_key:
74
- specification_version: 2
76
+ specification_version: 3
75
77
  summary: A library to show progress of long running tasks.
76
78
  test_files: []
77
79