jeweler 1.5.0.pre4 → 1.5.0.pre5
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +1 -7
- data/Gemfile.lock +1 -1
- data/{LICENSE → LICENSE.txt} +0 -0
- data/Rakefile +4 -1
- data/features/generator/cucumber.feature +1 -1
- data/features/generator/git.feature +2 -2
- data/features/generator/license.feature +2 -2
- data/features/generator/test_helper.feature +1 -4
- data/features/step_definitions/generator_steps.rb +6 -6
- data/jeweler.gemspec +9 -9
- data/lib/jeweler/commands/check_dependencies.rb +2 -2
- data/lib/jeweler/commands/release_gemspec.rb +1 -1
- data/lib/jeweler/generator.rb +2 -2
- data/lib/jeweler/generator/rspec_mixin.rb +1 -1
- data/lib/jeweler/templates/.document +1 -7
- data/lib/jeweler/templates/{LICENSE → LICENSE.txt} +0 -0
- data/lib/jeweler/templates/README.rdoc +3 -1
- data/lib/jeweler/templates/rspec/helper.rb +0 -3
- data/lib/jeweler/version.rb +1 -1
- data/test/fixtures/existing-project-with-version-constant/{LICENSE → LICENSE.txt} +0 -0
- data/test/fixtures/existing-project-with-version-plaintext/{LICENSE → LICENSE.txt} +0 -0
- data/test/fixtures/existing-project-with-version-yaml/{LICENSE → LICENSE.txt} +0 -0
- data/test/jeweler/commands/test_release_to_github.rb +1 -1
- data/test/jeweler/test_generator.rb +1 -1
- metadata +62 -25
data/.document
CHANGED
@@ -1,14 +1,8 @@
|
|
1
|
-
# .document is used by rdoc and yard to know how to generate documentation
|
2
|
-
# for example, it can be used to control how rdoc gets built when you do `gem install foo`
|
3
|
-
|
4
1
|
lib/jeweler.rb
|
5
2
|
lib/jeweler/*.rb
|
6
3
|
lib/jeweler/commands/*.rb
|
7
4
|
lib/jeweler/generator/*.rb
|
8
5
|
bin/*
|
9
|
-
|
10
|
-
# Files below the line with - are treated as 'extra files', and aren't parsed for ruby code
|
11
6
|
-
|
12
|
-
README.markdown
|
13
7
|
features/**/*.feature
|
14
|
-
LICENSE
|
8
|
+
LICENSE.txt
|
data/Gemfile.lock
CHANGED
data/{LICENSE → LICENSE.txt}
RENAMED
File without changes
|
data/Rakefile
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
require '
|
1
|
+
require 'rubygems'
|
2
2
|
require 'bundler'
|
3
|
+
|
3
4
|
begin
|
4
5
|
Bundler.setup(:default, :development)
|
5
6
|
rescue Bundler::BundlerError => e
|
@@ -10,7 +11,9 @@ end
|
|
10
11
|
|
11
12
|
$LOAD_PATH.unshift('lib')
|
12
13
|
|
14
|
+
require 'rake'
|
13
15
|
require 'jeweler'
|
16
|
+
|
14
17
|
Jeweler::Tasks.new do |gem|
|
15
18
|
gem.name = "jeweler"
|
16
19
|
gem.version = Jeweler::Version::STRING
|
@@ -90,7 +90,7 @@ Feature: generating cucumber stories
|
|
90
90
|
When I generate a rspec project named 'the-perfect-gem' that is 'zomg, so good'
|
91
91
|
|
92
92
|
Then 'features/support/env.rb' requires 'the-perfect-gem'
|
93
|
-
And 'features/support/env.rb' requires '
|
93
|
+
And 'features/support/env.rb' requires 'rspec/expectations'
|
94
94
|
|
95
95
|
Scenario: cucumber setup for mirconaut
|
96
96
|
Given a working directory
|
@@ -26,7 +26,7 @@ Feature: git support
|
|
26
26
|
Then a commit with the message 'Initial commit to the-perfect-gem.' is made
|
27
27
|
And 'README.rdoc' was checked in
|
28
28
|
And 'Rakefile' was checked in
|
29
|
-
And 'LICENSE' was checked in
|
29
|
+
And 'LICENSE.txt' was checked in
|
30
30
|
And 'lib/the-perfect-gem.rb' was checked in
|
31
31
|
And '.gitignore' was checked in
|
32
32
|
|
@@ -99,4 +99,4 @@ Feature: git support
|
|
99
99
|
When I generate a shindo project named 'the-perfect-gem' that is 'zomg, so good'
|
100
100
|
|
101
101
|
Then 'tests/tests_helper.rb' was checked in
|
102
|
-
And 'tests/the-perfect-gem_tests.rb' was checked in
|
102
|
+
And 'tests/the-perfect-gem_tests.rb' was checked in
|
@@ -10,11 +10,11 @@ Feature: generated license
|
|
10
10
|
Given I have configured git sanely
|
11
11
|
When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
|
12
12
|
|
13
|
-
Then LICENSE credits 'foo'
|
13
|
+
Then LICENSE.txt credits 'foo'
|
14
14
|
|
15
15
|
Scenario: copyright in the current year
|
16
16
|
Given it is the year 2005
|
17
17
|
And I have configured git sanely
|
18
18
|
When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
|
19
19
|
|
20
|
-
Then LICENSE has a copyright in the year 2005
|
20
|
+
Then LICENSE.txt has a copyright in the year 2005
|
@@ -45,10 +45,7 @@ Feature: generated test or spec
|
|
45
45
|
And I have configured git sanely
|
46
46
|
And I want bundler
|
47
47
|
When I generate a rspec project named 'the-perfect-gem' that is 'zomg, so good'
|
48
|
-
Then 'spec/spec_helper.rb' requires '
|
49
|
-
And 'spec/spec_helper.rb' sets up bundler using the default and development groups
|
50
|
-
And 'spec/spec_helper.rb' requires 'rspec'
|
51
|
-
And 'spec/spec_helper.rb' requires 'rspec/autorun'
|
48
|
+
Then 'spec/spec_helper.rb' requires 'rspec'
|
52
49
|
And 'spec/spec_helper.rb' requires 'the-perfect-gem'
|
53
50
|
|
54
51
|
Scenario: rspec w/o bundler
|
@@ -185,9 +185,9 @@ Then /^'(.*)' mentions copyright belonging to me in the current year$/ do |file|
|
|
185
185
|
end
|
186
186
|
|
187
187
|
|
188
|
-
Then /^LICENSE credits '(.*)'$/ do |copyright_holder|
|
189
|
-
Then "a file named 'the-perfect-gem/LICENSE' is created"
|
190
|
-
@license_content ||= File.read(File.join(@working_dir, @name, 'LICENSE'))
|
188
|
+
Then /^LICENSE\.txt credits '(.*)'$/ do |copyright_holder|
|
189
|
+
Then "a file named 'the-perfect-gem/LICENSE.txt' is created"
|
190
|
+
@license_content ||= File.read(File.join(@working_dir, @name, 'LICENSE.txt'))
|
191
191
|
assert_match copyright_holder, @license_content
|
192
192
|
end
|
193
193
|
|
@@ -197,9 +197,9 @@ Given /^it is the year (\d+)$/ do |year|
|
|
197
197
|
end
|
198
198
|
|
199
199
|
|
200
|
-
Then /^LICENSE has a copyright in the year (\d+)$/ do |year|
|
201
|
-
Then "a file named 'the-perfect-gem/LICENSE' is created"
|
202
|
-
@license_content ||= File.read(File.join(@working_dir, @name, 'LICENSE'))
|
200
|
+
Then /^LICENSE\.txt has a copyright in the year (\d+)$/ do |year|
|
201
|
+
Then "a file named 'the-perfect-gem/LICENSE.txt' is created"
|
202
|
+
@license_content ||= File.read(File.join(@working_dir, @name, 'LICENSE.txt'))
|
203
203
|
assert_match year, @license_content
|
204
204
|
end
|
205
205
|
|
data/jeweler.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{jeweler}
|
8
|
-
s.version = "1.5.0.
|
8
|
+
s.version = "1.5.0.pre5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Josh Nichols"]
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.executables = ["jeweler"]
|
17
17
|
s.extra_rdoc_files = [
|
18
18
|
"ChangeLog.markdown",
|
19
|
-
"LICENSE",
|
19
|
+
"LICENSE.txt",
|
20
20
|
"README.markdown"
|
21
21
|
]
|
22
22
|
s.files = [
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
|
24
24
|
"ChangeLog.markdown",
|
25
25
|
"Gemfile",
|
26
26
|
"Gemfile.lock",
|
27
|
-
"LICENSE",
|
27
|
+
"LICENSE.txt",
|
28
28
|
"README.markdown",
|
29
29
|
"Rakefile",
|
30
30
|
"bin/jeweler",
|
@@ -90,7 +90,7 @@ Gem::Specification.new do |s|
|
|
90
90
|
"lib/jeweler/templates/.document",
|
91
91
|
"lib/jeweler/templates/.gitignore",
|
92
92
|
"lib/jeweler/templates/Gemfile",
|
93
|
-
"lib/jeweler/templates/LICENSE",
|
93
|
+
"lib/jeweler/templates/LICENSE.txt",
|
94
94
|
"lib/jeweler/templates/README.rdoc",
|
95
95
|
"lib/jeweler/templates/Rakefile",
|
96
96
|
"lib/jeweler/templates/bacon/flunking.rb",
|
@@ -125,7 +125,7 @@ Gem::Specification.new do |s|
|
|
125
125
|
"test/fixtures/bar/lib/foo_the_ultimate_lib.rb",
|
126
126
|
"test/fixtures/existing-project-with-version-constant/.document",
|
127
127
|
"test/fixtures/existing-project-with-version-constant/.gitignore",
|
128
|
-
"test/fixtures/existing-project-with-version-constant/LICENSE",
|
128
|
+
"test/fixtures/existing-project-with-version-constant/LICENSE.txt",
|
129
129
|
"test/fixtures/existing-project-with-version-constant/README.rdoc",
|
130
130
|
"test/fixtures/existing-project-with-version-constant/Rakefile",
|
131
131
|
"test/fixtures/existing-project-with-version-constant/existing-project-with-version.gemspec",
|
@@ -134,7 +134,7 @@ Gem::Specification.new do |s|
|
|
134
134
|
"test/fixtures/existing-project-with-version-constant/test/test_helper.rb",
|
135
135
|
"test/fixtures/existing-project-with-version-plaintext/.document",
|
136
136
|
"test/fixtures/existing-project-with-version-plaintext/.gitignore",
|
137
|
-
"test/fixtures/existing-project-with-version-plaintext/LICENSE",
|
137
|
+
"test/fixtures/existing-project-with-version-plaintext/LICENSE.txt",
|
138
138
|
"test/fixtures/existing-project-with-version-plaintext/README.rdoc",
|
139
139
|
"test/fixtures/existing-project-with-version-plaintext/Rakefile",
|
140
140
|
"test/fixtures/existing-project-with-version-plaintext/VERSION",
|
@@ -144,7 +144,7 @@ Gem::Specification.new do |s|
|
|
144
144
|
"test/fixtures/existing-project-with-version-plaintext/test/test_helper.rb",
|
145
145
|
"test/fixtures/existing-project-with-version-yaml/.document",
|
146
146
|
"test/fixtures/existing-project-with-version-yaml/.gitignore",
|
147
|
-
"test/fixtures/existing-project-with-version-yaml/LICENSE",
|
147
|
+
"test/fixtures/existing-project-with-version-yaml/LICENSE.txt",
|
148
148
|
"test/fixtures/existing-project-with-version-yaml/README.rdoc",
|
149
149
|
"test/fixtures/existing-project-with-version-yaml/Rakefile",
|
150
150
|
"test/fixtures/existing-project-with-version-yaml/VERSION.yml",
|
@@ -181,7 +181,7 @@ Gem::Specification.new do |s|
|
|
181
181
|
]
|
182
182
|
s.homepage = %q{http://github.com/technicalpickles/jeweler}
|
183
183
|
s.require_paths = ["lib"]
|
184
|
-
s.rubygems_version = %q{1.3.
|
184
|
+
s.rubygems_version = %q{1.3.7}
|
185
185
|
s.summary = %q{Opinionated tool for creating and managing RubyGem projects}
|
186
186
|
s.test_files = [
|
187
187
|
"test/fixtures/bar/lib/foo_the_ultimate_lib.rb",
|
@@ -224,7 +224,7 @@ Gem::Specification.new do |s|
|
|
224
224
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
225
225
|
s.specification_version = 3
|
226
226
|
|
227
|
-
if Gem::Version.new(Gem::
|
227
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
228
228
|
s.add_runtime_dependency(%q<rake>, [">= 0"])
|
229
229
|
s.add_runtime_dependency(%q<git>, [">= 1.2.5"])
|
230
230
|
s.add_runtime_dependency(%q<bundler>, ["~> 1.0.0"])
|
@@ -10,7 +10,7 @@ class Jeweler
|
|
10
10
|
def run
|
11
11
|
missing_dependencies = dependencies.select do |dependency|
|
12
12
|
begin
|
13
|
-
Gem.activate dependency.name, dependency.
|
13
|
+
Gem.activate dependency.name, *dependency.requirement.as_list
|
14
14
|
false
|
15
15
|
rescue LoadError => e
|
16
16
|
true
|
@@ -22,7 +22,7 @@ class Jeweler
|
|
22
22
|
else
|
23
23
|
puts "Missing some dependencies. Install them with the following commands:"
|
24
24
|
missing_dependencies.each do |dependency|
|
25
|
-
puts %Q{\tgem install #{dependency.name} --version "#{dependency.
|
25
|
+
puts %Q{\tgem install #{dependency.name} --version "#{dependency.requirement.to_s}"}
|
26
26
|
end
|
27
27
|
|
28
28
|
abort "Run the specified gem commands before trying to run this again: #{$0} #{ARGV.join(' ')}"
|
@@ -37,7 +37,7 @@ class Jeweler
|
|
37
37
|
gemspec_gitpath = working_subdir.join(gemspec_helper.path)
|
38
38
|
repo.add(gemspec_gitpath.to_s)
|
39
39
|
output.puts "Committing #{gemspec_gitpath}"
|
40
|
-
repo.commit "
|
40
|
+
repo.commit "Regenerate gemspec for version #{version}"
|
41
41
|
end
|
42
42
|
|
43
43
|
def regenerate_gemspec!
|
data/lib/jeweler/generator.rb
CHANGED
@@ -177,7 +177,7 @@ class Jeweler
|
|
177
177
|
output_template_in_target '.gitignore'
|
178
178
|
output_template_in_target 'Rakefile'
|
179
179
|
output_template_in_target 'Gemfile' if should_use_bundler
|
180
|
-
output_template_in_target 'LICENSE'
|
180
|
+
output_template_in_target 'LICENSE.txt'
|
181
181
|
output_template_in_target 'README.rdoc'
|
182
182
|
output_template_in_target '.document'
|
183
183
|
|
@@ -193,7 +193,7 @@ class Jeweler
|
|
193
193
|
|
194
194
|
if testing_framework == :rspec
|
195
195
|
output_template_in_target File.join(testing_framework.to_s, '.rspec'),
|
196
|
-
|
196
|
+
'.rspec'
|
197
197
|
|
198
198
|
end
|
199
199
|
|
@@ -1,11 +1,5 @@
|
|
1
|
-
# .document is used by rdoc and yard to know how to generate documentation
|
2
|
-
# for example, it can be used to control how rdoc gets built when you do `gem install foo`
|
3
|
-
|
4
|
-
README.rdoc
|
5
1
|
lib/**/*.rb
|
6
2
|
bin/*
|
7
|
-
|
8
|
-
# Files below this - are treated as 'extra files', and aren't parsed for ruby code
|
9
3
|
-
|
10
4
|
features/**/*.feature
|
11
|
-
LICENSE
|
5
|
+
LICENSE.txt
|
File without changes
|
@@ -1,8 +1,5 @@
|
|
1
|
-
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
2
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
3
1
|
require '<%= require_name %>'
|
4
2
|
require 'rspec'
|
5
|
-
require 'rspec/autorun'
|
6
3
|
|
7
4
|
# Requires supporting files with custom matchers and macros, etc,
|
8
5
|
# in ./support/ and its subdirectories.
|
data/lib/jeweler/version.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
@@ -264,7 +264,7 @@ class Jeweler
|
|
264
264
|
end
|
265
265
|
|
266
266
|
should "commit with commit message including version" do
|
267
|
-
assert_received(@repo) {|repo| repo.commit("
|
267
|
+
assert_received(@repo) {|repo| repo.commit("Regenerate gemspec for version 1.2.3") }
|
268
268
|
end
|
269
269
|
|
270
270
|
end
|
@@ -93,7 +93,7 @@ class TestGenerator < Test::Unit::TestCase
|
|
93
93
|
should_have_generator_attribute :test_task, 'spec'
|
94
94
|
should_have_generator_attribute :test_dir, 'spec'
|
95
95
|
should_have_generator_attribute :default_task, 'spec'
|
96
|
-
should_have_generator_attribute :feature_support_require, '
|
96
|
+
should_have_generator_attribute :feature_support_require, 'rspec/expectations'
|
97
97
|
should_have_generator_attribute :feature_support_extend, nil
|
98
98
|
should_have_generator_attribute :test_pattern, 'spec/**/*_spec.rb'
|
99
99
|
should_have_generator_attribute :test_filename, 'the-perfect-gem_spec.rb'
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jeweler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: -1876988220
|
4
5
|
prerelease: true
|
5
6
|
segments:
|
6
7
|
- 1
|
7
8
|
- 5
|
8
9
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.5.0.
|
10
|
+
- pre5
|
11
|
+
version: 1.5.0.pre5
|
11
12
|
platform: ruby
|
12
13
|
authors:
|
13
14
|
- Josh Nichols
|
@@ -20,22 +21,27 @@ default_executable: jeweler
|
|
20
21
|
dependencies:
|
21
22
|
- !ruby/object:Gem::Dependency
|
22
23
|
type: :runtime
|
24
|
+
prerelease: false
|
23
25
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
24
27
|
requirements:
|
25
28
|
- - ">="
|
26
29
|
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
27
31
|
segments:
|
28
32
|
- 0
|
29
33
|
version: "0"
|
30
34
|
name: rake
|
31
35
|
requirement: *id001
|
32
|
-
prerelease: false
|
33
36
|
- !ruby/object:Gem::Dependency
|
34
37
|
type: :runtime
|
38
|
+
prerelease: false
|
35
39
|
version_requirements: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
36
41
|
requirements:
|
37
42
|
- - ">="
|
38
43
|
- !ruby/object:Gem::Version
|
44
|
+
hash: 21
|
39
45
|
segments:
|
40
46
|
- 1
|
41
47
|
- 2
|
@@ -43,13 +49,15 @@ dependencies:
|
|
43
49
|
version: 1.2.5
|
44
50
|
name: git
|
45
51
|
requirement: *id002
|
46
|
-
prerelease: false
|
47
52
|
- !ruby/object:Gem::Dependency
|
48
53
|
type: :runtime
|
54
|
+
prerelease: false
|
49
55
|
version_requirements: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
50
57
|
requirements:
|
51
58
|
- - ~>
|
52
59
|
- !ruby/object:Gem::Version
|
60
|
+
hash: 23
|
53
61
|
segments:
|
54
62
|
- 1
|
55
63
|
- 0
|
@@ -57,85 +65,99 @@ dependencies:
|
|
57
65
|
version: 1.0.0
|
58
66
|
name: bundler
|
59
67
|
requirement: *id003
|
60
|
-
prerelease: false
|
61
68
|
- !ruby/object:Gem::Dependency
|
62
69
|
type: :development
|
70
|
+
prerelease: false
|
63
71
|
version_requirements: &id004 !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
64
73
|
requirements:
|
65
74
|
- - ">="
|
66
75
|
- !ruby/object:Gem::Version
|
76
|
+
hash: 3
|
67
77
|
segments:
|
68
78
|
- 0
|
69
79
|
version: "0"
|
70
80
|
name: shoulda
|
71
81
|
requirement: *id004
|
72
|
-
prerelease: false
|
73
82
|
- !ruby/object:Gem::Dependency
|
74
83
|
type: :development
|
84
|
+
prerelease: false
|
75
85
|
version_requirements: &id005 !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
76
87
|
requirements:
|
77
88
|
- - ">="
|
78
89
|
- !ruby/object:Gem::Version
|
90
|
+
hash: 3
|
79
91
|
segments:
|
80
92
|
- 0
|
81
93
|
version: "0"
|
82
94
|
name: mhennemeyer-output_catcher
|
83
95
|
requirement: *id005
|
84
|
-
prerelease: false
|
85
96
|
- !ruby/object:Gem::Dependency
|
86
97
|
type: :development
|
98
|
+
prerelease: false
|
87
99
|
version_requirements: &id006 !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
88
101
|
requirements:
|
89
102
|
- - ">="
|
90
103
|
- !ruby/object:Gem::Version
|
104
|
+
hash: 3
|
91
105
|
segments:
|
92
106
|
- 0
|
93
107
|
version: "0"
|
94
108
|
name: rr
|
95
109
|
requirement: *id006
|
96
|
-
prerelease: false
|
97
110
|
- !ruby/object:Gem::Dependency
|
98
111
|
type: :development
|
112
|
+
prerelease: false
|
99
113
|
version_requirements: &id007 !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
100
115
|
requirements:
|
101
116
|
- - ">="
|
102
117
|
- !ruby/object:Gem::Version
|
118
|
+
hash: 3
|
103
119
|
segments:
|
104
120
|
- 0
|
105
121
|
version: "0"
|
106
122
|
name: mocha
|
107
123
|
requirement: *id007
|
108
|
-
prerelease: false
|
109
124
|
- !ruby/object:Gem::Dependency
|
110
125
|
type: :development
|
126
|
+
prerelease: false
|
111
127
|
version_requirements: &id008 !ruby/object:Gem::Requirement
|
128
|
+
none: false
|
112
129
|
requirements:
|
113
130
|
- - ">="
|
114
131
|
- !ruby/object:Gem::Version
|
132
|
+
hash: 3
|
115
133
|
segments:
|
116
134
|
- 0
|
117
135
|
version: "0"
|
118
136
|
name: redgreen
|
119
137
|
requirement: *id008
|
120
|
-
prerelease: false
|
121
138
|
- !ruby/object:Gem::Dependency
|
122
139
|
type: :development
|
140
|
+
prerelease: false
|
123
141
|
version_requirements: &id009 !ruby/object:Gem::Requirement
|
142
|
+
none: false
|
124
143
|
requirements:
|
125
144
|
- - ">="
|
126
145
|
- !ruby/object:Gem::Version
|
146
|
+
hash: 3
|
127
147
|
segments:
|
128
148
|
- 0
|
129
149
|
version: "0"
|
130
150
|
name: test-construct
|
131
151
|
requirement: *id009
|
132
|
-
prerelease: false
|
133
152
|
- !ruby/object:Gem::Dependency
|
134
153
|
type: :development
|
154
|
+
prerelease: false
|
135
155
|
version_requirements: &id010 !ruby/object:Gem::Requirement
|
156
|
+
none: false
|
136
157
|
requirements:
|
137
158
|
- - ~>
|
138
159
|
- !ruby/object:Gem::Version
|
160
|
+
hash: 7
|
139
161
|
segments:
|
140
162
|
- 0
|
141
163
|
- 6
|
@@ -143,61 +165,71 @@ dependencies:
|
|
143
165
|
version: 0.6.0
|
144
166
|
name: yard
|
145
167
|
requirement: *id010
|
146
|
-
prerelease: false
|
147
168
|
- !ruby/object:Gem::Dependency
|
148
169
|
type: :development
|
170
|
+
prerelease: false
|
149
171
|
version_requirements: &id011 !ruby/object:Gem::Requirement
|
172
|
+
none: false
|
150
173
|
requirements:
|
151
174
|
- - ">="
|
152
175
|
- !ruby/object:Gem::Version
|
176
|
+
hash: 3
|
153
177
|
segments:
|
154
178
|
- 0
|
155
179
|
version: "0"
|
156
180
|
name: bluecloth
|
157
181
|
requirement: *id011
|
158
|
-
prerelease: false
|
159
182
|
- !ruby/object:Gem::Dependency
|
160
183
|
type: :development
|
184
|
+
prerelease: false
|
161
185
|
version_requirements: &id012 !ruby/object:Gem::Requirement
|
186
|
+
none: false
|
162
187
|
requirements:
|
163
188
|
- - ">="
|
164
189
|
- !ruby/object:Gem::Version
|
190
|
+
hash: 3
|
165
191
|
segments:
|
166
192
|
- 0
|
167
193
|
version: "0"
|
168
194
|
name: cucumber
|
169
195
|
requirement: *id012
|
170
|
-
prerelease: false
|
171
196
|
- !ruby/object:Gem::Dependency
|
172
197
|
type: :development
|
198
|
+
prerelease: false
|
173
199
|
version_requirements: &id013 !ruby/object:Gem::Requirement
|
200
|
+
none: false
|
174
201
|
requirements:
|
175
202
|
- - ">="
|
176
203
|
- !ruby/object:Gem::Version
|
204
|
+
hash: 3
|
177
205
|
segments:
|
178
206
|
- 0
|
179
207
|
version: "0"
|
180
208
|
name: rcov
|
181
209
|
requirement: *id013
|
182
|
-
prerelease: false
|
183
210
|
- !ruby/object:Gem::Dependency
|
184
211
|
type: :development
|
212
|
+
prerelease: false
|
185
213
|
version_requirements: &id014 !ruby/object:Gem::Requirement
|
214
|
+
none: false
|
186
215
|
requirements:
|
187
216
|
- - ">="
|
188
217
|
- !ruby/object:Gem::Version
|
218
|
+
hash: 3
|
189
219
|
segments:
|
190
220
|
- 0
|
191
221
|
version: "0"
|
192
222
|
name: timecop
|
193
223
|
requirement: *id014
|
194
|
-
prerelease: false
|
195
224
|
- !ruby/object:Gem::Dependency
|
196
225
|
type: :development
|
226
|
+
prerelease: false
|
197
227
|
version_requirements: &id015 !ruby/object:Gem::Requirement
|
228
|
+
none: false
|
198
229
|
requirements:
|
199
230
|
- - ~>
|
200
231
|
- !ruby/object:Gem::Version
|
232
|
+
hash: 9
|
201
233
|
segments:
|
202
234
|
- 2
|
203
235
|
- 3
|
@@ -205,19 +237,20 @@ dependencies:
|
|
205
237
|
version: 2.3.5
|
206
238
|
name: activesupport
|
207
239
|
requirement: *id015
|
208
|
-
prerelease: false
|
209
240
|
- !ruby/object:Gem::Dependency
|
210
241
|
type: :development
|
242
|
+
prerelease: false
|
211
243
|
version_requirements: &id016 !ruby/object:Gem::Requirement
|
244
|
+
none: false
|
212
245
|
requirements:
|
213
246
|
- - ">="
|
214
247
|
- !ruby/object:Gem::Version
|
248
|
+
hash: 3
|
215
249
|
segments:
|
216
250
|
- 0
|
217
251
|
version: "0"
|
218
252
|
name: ruby-debug
|
219
253
|
requirement: *id016
|
220
|
-
prerelease: false
|
221
254
|
description: Simple and opinionated helper for creating Rubygem projects on GitHub
|
222
255
|
email: josh@technicalpickles.com
|
223
256
|
executables:
|
@@ -226,14 +259,14 @@ extensions: []
|
|
226
259
|
|
227
260
|
extra_rdoc_files:
|
228
261
|
- ChangeLog.markdown
|
229
|
-
- LICENSE
|
262
|
+
- LICENSE.txt
|
230
263
|
- README.markdown
|
231
264
|
files:
|
232
265
|
- .document
|
233
266
|
- ChangeLog.markdown
|
234
267
|
- Gemfile
|
235
268
|
- Gemfile.lock
|
236
|
-
- LICENSE
|
269
|
+
- LICENSE.txt
|
237
270
|
- README.markdown
|
238
271
|
- Rakefile
|
239
272
|
- bin/jeweler
|
@@ -299,7 +332,7 @@ files:
|
|
299
332
|
- lib/jeweler/templates/.document
|
300
333
|
- lib/jeweler/templates/.gitignore
|
301
334
|
- lib/jeweler/templates/Gemfile
|
302
|
-
- lib/jeweler/templates/LICENSE
|
335
|
+
- lib/jeweler/templates/LICENSE.txt
|
303
336
|
- lib/jeweler/templates/README.rdoc
|
304
337
|
- lib/jeweler/templates/Rakefile
|
305
338
|
- lib/jeweler/templates/bacon/flunking.rb
|
@@ -334,7 +367,7 @@ files:
|
|
334
367
|
- test/fixtures/bar/lib/foo_the_ultimate_lib.rb
|
335
368
|
- test/fixtures/existing-project-with-version-constant/.document
|
336
369
|
- test/fixtures/existing-project-with-version-constant/.gitignore
|
337
|
-
- test/fixtures/existing-project-with-version-constant/LICENSE
|
370
|
+
- test/fixtures/existing-project-with-version-constant/LICENSE.txt
|
338
371
|
- test/fixtures/existing-project-with-version-constant/README.rdoc
|
339
372
|
- test/fixtures/existing-project-with-version-constant/Rakefile
|
340
373
|
- test/fixtures/existing-project-with-version-constant/existing-project-with-version.gemspec
|
@@ -343,7 +376,7 @@ files:
|
|
343
376
|
- test/fixtures/existing-project-with-version-constant/test/test_helper.rb
|
344
377
|
- test/fixtures/existing-project-with-version-plaintext/.document
|
345
378
|
- test/fixtures/existing-project-with-version-plaintext/.gitignore
|
346
|
-
- test/fixtures/existing-project-with-version-plaintext/LICENSE
|
379
|
+
- test/fixtures/existing-project-with-version-plaintext/LICENSE.txt
|
347
380
|
- test/fixtures/existing-project-with-version-plaintext/README.rdoc
|
348
381
|
- test/fixtures/existing-project-with-version-plaintext/Rakefile
|
349
382
|
- test/fixtures/existing-project-with-version-plaintext/VERSION
|
@@ -353,7 +386,7 @@ files:
|
|
353
386
|
- test/fixtures/existing-project-with-version-plaintext/test/test_helper.rb
|
354
387
|
- test/fixtures/existing-project-with-version-yaml/.document
|
355
388
|
- test/fixtures/existing-project-with-version-yaml/.gitignore
|
356
|
-
- test/fixtures/existing-project-with-version-yaml/LICENSE
|
389
|
+
- test/fixtures/existing-project-with-version-yaml/LICENSE.txt
|
357
390
|
- test/fixtures/existing-project-with-version-yaml/README.rdoc
|
358
391
|
- test/fixtures/existing-project-with-version-yaml/Rakefile
|
359
392
|
- test/fixtures/existing-project-with-version-yaml/VERSION.yml
|
@@ -397,16 +430,20 @@ rdoc_options: []
|
|
397
430
|
require_paths:
|
398
431
|
- lib
|
399
432
|
required_ruby_version: !ruby/object:Gem::Requirement
|
433
|
+
none: false
|
400
434
|
requirements:
|
401
435
|
- - ">="
|
402
436
|
- !ruby/object:Gem::Version
|
437
|
+
hash: 3
|
403
438
|
segments:
|
404
439
|
- 0
|
405
440
|
version: "0"
|
406
441
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
442
|
+
none: false
|
407
443
|
requirements:
|
408
444
|
- - ">"
|
409
445
|
- !ruby/object:Gem::Version
|
446
|
+
hash: 25
|
410
447
|
segments:
|
411
448
|
- 1
|
412
449
|
- 3
|
@@ -415,7 +452,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
415
452
|
requirements: []
|
416
453
|
|
417
454
|
rubyforge_project:
|
418
|
-
rubygems_version: 1.3.
|
455
|
+
rubygems_version: 1.3.7
|
419
456
|
signing_key:
|
420
457
|
specification_version: 3
|
421
458
|
summary: Opinionated tool for creating and managing RubyGem projects
|