gem_tools 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.1.0 2009-04-08
2
+ * change the rdoc and ri detection to not spew errors with rdoc 2
3
+
1
4
  == 0.0.9 2009-02-10
2
5
  * Fix the a bug in the loaded detection logic
3
6
 
@@ -1,8 +1,8 @@
1
1
  module GemTools
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 0
5
- TINY = 9
4
+ MINOR = 1
5
+ TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/gem_tools.rb CHANGED
@@ -77,8 +77,8 @@ module GemTools
77
77
  unless gems.nil?
78
78
  docs = ''
79
79
  unless OPTIONS.has_key?(:docs)
80
- docs << '--no-rdoc ' unless (`rdoc -v`).nil?
81
- docs << '--no-ri ' unless (`ri -v`).nil?
80
+ docs << '--no-rdoc ' unless (`rdoc --version`).nil?
81
+ docs << '--no-ri ' unless (`ri --version`).nil?
82
82
  end
83
83
 
84
84
  gem_command = config['gem_command'] || 'gem'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Moen
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-02-10 00:00:00 -06:00
12
+ date: 2009-04-08 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency