newgem 1.5.1 → 1.5.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.
- data/History.txt +4 -0
- data/Rakefile +1 -1
- data/lib/hoe/newgem.rb +1 -1
- data/lib/newgem.rb +1 -1
- metadata +4 -4
data/History.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -16,7 +16,7 @@ $hoe = Hoe.spec 'newgem' do
|
|
|
16
16
|
['activesupport','>= 2.0.2'],
|
|
17
17
|
['rubigen',">= #{RubiGen::VERSION}"],
|
|
18
18
|
['hoe', ">= #{Hoe::VERSION}"],
|
|
19
|
-
['RedCloth','
|
|
19
|
+
['RedCloth','>= 4.1.1'], # for website generation
|
|
20
20
|
['syntax','>= 1.0.0']
|
|
21
21
|
]
|
|
22
22
|
extra_dev_deps << ['cucumber', ">= 0.3.11"]
|
data/lib/hoe/newgem.rb
CHANGED
|
@@ -25,7 +25,7 @@ module Hoe::Newgem
|
|
|
25
25
|
unless self.extra_dev_deps.find { |dep| dep.first == 'newgem' }
|
|
26
26
|
require File.dirname(__FILE__) + '/../newgem'
|
|
27
27
|
self.extra_dev_deps ||= []
|
|
28
|
-
self.extra_dev_deps << ['newgem', ">= #{::Newgem::VERSION}"]
|
|
28
|
+
self.extra_dev_deps << ['newgem', ">= #{::Newgem::VERSION}"] unless name == 'newgem'
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
return if Rake::Task.tasks.find { |t| t.name == 'gemspec' }
|
data/lib/newgem.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: newgem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dr Nic Williams
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-08-03 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -48,7 +48,7 @@ dependencies:
|
|
|
48
48
|
version_requirement:
|
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
|
-
- - "
|
|
51
|
+
- - ">="
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
53
|
version: 4.1.1
|
|
54
54
|
version:
|
|
@@ -277,7 +277,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
277
277
|
requirements: []
|
|
278
278
|
|
|
279
279
|
rubyforge_project: newgem
|
|
280
|
-
rubygems_version: 1.3.
|
|
280
|
+
rubygems_version: 1.3.5
|
|
281
281
|
signing_key:
|
|
282
282
|
specification_version: 3
|
|
283
283
|
summary: Quickly bundle any Ruby libraries into a RubyGem and share it with the world, your colleagues, or perhaps just with yourself amongst your projects
|