numb 0.72.0 → 0.72.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.
- data/Rakefile +12 -2
- data/VERSION +1 -1
- metadata +5 -5
data/Rakefile
CHANGED
@@ -10,9 +10,10 @@ begin
|
|
10
10
|
gem.email = "runrun@runpaint.org"
|
11
11
|
gem.homepage = "http://github.com/runpaint/numb"
|
12
12
|
gem.authors = ["Run Paint Run Run"]
|
13
|
-
gem.rdoc_options = ['-x']
|
14
13
|
gem.add_dependency "gemcutter", ">= 0.1.0"
|
15
|
-
gem.required_ruby_version = '1.9'
|
14
|
+
gem.required_ruby_version = '>= 1.9'
|
15
|
+
gem.has_rdoc = 'yard'
|
16
|
+
gem.rdoc_options = []
|
16
17
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
17
18
|
end
|
18
19
|
Jeweler::GemcutterTasks.new
|
@@ -32,4 +33,13 @@ Spec::Rake::SpecTask.new(:rcov) do |spec|
|
|
32
33
|
spec.rcov = true
|
33
34
|
end
|
34
35
|
|
36
|
+
begin
|
37
|
+
require 'yard'
|
38
|
+
YARD::Rake::YardocTask.new
|
39
|
+
rescue LoadError
|
40
|
+
task :yardoc do
|
41
|
+
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
35
45
|
task :default => :spec
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.72.
|
1
|
+
0.72.1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: numb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.72.
|
4
|
+
version: 0.72.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Run Paint Run Run
|
@@ -287,18 +287,18 @@ files:
|
|
287
287
|
- spec/vampire_spec.rb
|
288
288
|
- spec/weird_spec.rb
|
289
289
|
- spec/zeisel_spec.rb
|
290
|
-
has_rdoc:
|
290
|
+
has_rdoc: yard
|
291
291
|
homepage: http://github.com/runpaint/numb
|
292
292
|
licenses: []
|
293
293
|
|
294
294
|
post_install_message:
|
295
|
-
rdoc_options:
|
296
|
-
|
295
|
+
rdoc_options: []
|
296
|
+
|
297
297
|
require_paths:
|
298
298
|
- lib
|
299
299
|
required_ruby_version: !ruby/object:Gem::Requirement
|
300
300
|
requirements:
|
301
|
-
- - "
|
301
|
+
- - ">="
|
302
302
|
- !ruby/object:Gem::Version
|
303
303
|
version: "1.9"
|
304
304
|
version:
|