any_data 0.1.0 → 0.1.1

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.
@@ -1,3 +1,8 @@
1
+ == 0.1.1 / 2009-01-01
2
+
3
+ * 1 minor enhancement
4
+ * Fix circular dependency issue in dev tasks
5
+
1
6
  == 0.1.0 / 2009-01-01
2
7
 
3
8
  * 1 major enhancement
@@ -2,7 +2,6 @@ History.txt
2
2
  Manifest.txt
3
3
  README.rdoc
4
4
  Rakefile
5
- bin/any_data
6
5
  lib/any_data.rb
7
6
  tasks/autospec.rake
8
7
  tasks/bones.rake
@@ -1,5 +1,5 @@
1
1
  class AnyData < File
2
- def self.version; '0.1.0'; end
2
+ def self.version; '0.1.1'; end
3
3
 
4
4
  class NoDataError < Exception
5
5
  attr_accessor :file
@@ -19,7 +19,7 @@ PROJ = OpenStruct.new(
19
19
  :url => "\000",
20
20
  :version => ENV['VERSION'] || '0.0.0',
21
21
  :exclude => %w(tmp$ bak$ ~$ CVS \.git/ \.hg/ \.svn/ ^pkg/ ^doc/ \.DS_Store
22
- \.hgignore \.gitignore \.dotest \.swp$),
22
+ \.hgignore \.gitignore \.dotest \.swp$ .*\.gemspec$),
23
23
  :release_name => ENV['RELEASE'],
24
24
 
25
25
  # System Defaults
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: any_data
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Tucker
@@ -44,19 +44,17 @@ dependencies:
44
44
  version:
45
45
  description: Small helper which provides and IO like ruby's DATA for $0, but for any file.
46
46
  email: raggi@rubyforge.org
47
- executables:
48
- - any_data
47
+ executables: []
48
+
49
49
  extensions: []
50
50
 
51
51
  extra_rdoc_files:
52
52
  - History.txt
53
- - bin/any_data
54
53
  files:
55
54
  - History.txt
56
55
  - Manifest.txt
57
56
  - README.rdoc
58
57
  - Rakefile
59
- - bin/any_data
60
58
  - lib/any_data.rb
61
59
  - tasks/autospec.rake
62
60
  - tasks/bones.rake
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require File.expand_path(
4
- File.join(File.dirname(__FILE__), '..', 'lib', 'any_data'))
5
-
6
- # Put your code here