version 0.9.1 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. data/History.rdoc +6 -1
  2. data/Rakefile +0 -2
  3. data/VERSION +1 -1
  4. data/lib/version.rb +1 -1
  5. metadata +2 -2
@@ -1,4 +1,9 @@
1
- === Version (unreleased) / (unreleased)
1
+ === Version 0.9.2 / 2010-02-23
2
+
3
+ * bug fixes
4
+ * Ruby 1.8.6 support (closes #5)
5
+
6
+ === Version 0.9.1 / 2010-02-17
2
7
 
3
8
  * enhancements
4
9
  * automagic gemspec generation
data/Rakefile CHANGED
@@ -31,8 +31,6 @@ Rake::RDocTask.new do |doc|
31
31
  doc.title = "version #{Version.current}"
32
32
  doc.rdoc_dir = 'doc'
33
33
  doc.main = 'README.rdoc'
34
- doc.rdoc_files.include('*.rdoc')
35
- doc.rdoc_files.include('lib/**/*.rb')
36
34
  end
37
35
 
38
36
  Spec::Rake::SpecTask.new(:spec) do |task|
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.1
1
+ 0.9.2
@@ -62,7 +62,7 @@ class Version
62
62
  # TODO: make these rdoc-capable
63
63
  #++
64
64
  #
65
- [ :major, :minor, :revision ].each.with_index do |component, i|
65
+ [ :major, :minor, :revision ].to_enum.each.with_index do |component, i|
66
66
  define_method(:"#{component}") { self[i] }
67
67
  define_method(:"#{component}=") {|v| self[i] = v }
68
68
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: version
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Touset
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-02-17 00:00:00 -05:00
12
+ date: 2010-02-23 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency