version 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ === Version 0.6.1 / 2010-02-05
2
+
3
+ * enhancements
4
+ * renamed Versioned() to has_version
5
+
1
6
  === Version 0.6.0 / 2010-02-04
2
7
 
3
8
  * bug fixes
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
data/lib/ext/class.rb CHANGED
@@ -6,7 +6,7 @@ class Class
6
6
  # the Version in +filename+. Attempts to guess the filename if none given.
7
7
  # Can read both .yml files and plain text.
8
8
  #
9
- def Version(filename = nil)
9
+ def is_versioned(filename = nil)
10
10
  # attempt to guess the filename if none given
11
11
  if filename.nil?
12
12
  filename = Pathname.new('.').expand_path.ascend do |d|
data/lib/version.rb CHANGED
@@ -158,5 +158,5 @@ class Version
158
158
  end
159
159
 
160
160
  class Version
161
- Version()
161
+ is_versioned
162
162
  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.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Touset