any_data 0.1.1 → 0.1.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 (4) hide show
  1. data/Rakefile +1 -1
  2. data/lib/any_data.rb +1 -1
  3. data/tasks/setup.rb +1 -1
  4. metadata +2 -1
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ load 'tasks/setup.rb'
3
3
  ensure_in_path 'lib'
4
4
  require 'any_data'
5
5
 
6
- task :default => :test
6
+ task :default => %w(clobber manifest:create gem:spec test)
7
7
 
8
8
  PROJ.name = 'any_data'
9
9
  PROJ.authors = 'James Tucker'
@@ -1,5 +1,5 @@
1
1
  class AnyData < File
2
- def self.version; '0.1.1'; end
2
+ def self.version; '0.1.2'; end
3
3
 
4
4
  class NoDataError < Exception
5
5
  attr_accessor :file
@@ -59,7 +59,7 @@ PROJ = OpenStruct.new(
59
59
  # Rdoc
60
60
  :rdoc => OpenStruct.new(
61
61
  :opts => [],
62
- :include => %w(^lib/ ^bin/ ^ext/ \.txt$),
62
+ :include => %w(^lib/ ^bin/ ^ext/ \.txt$ \.rdoc$),
63
63
  :exclude => %w(extconf\.rb$),
64
64
  :main => nil,
65
65
  :dir => 'doc',
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Tucker
@@ -50,6 +50,7 @@ extensions: []
50
50
 
51
51
  extra_rdoc_files:
52
52
  - History.txt
53
+ - README.rdoc
53
54
  files:
54
55
  - History.txt
55
56
  - Manifest.txt