jeweler 1.5.2 → 1.6.0
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/ChangeLog.markdown +18 -0
- data/README.markdown +2 -1
- data/Rakefile +2 -0
- data/features/generator/rakefile.feature +2 -0
- data/features/step_definitions/generator_steps.rb +13 -0
- data/jeweler.gemspec +3 -40
- data/lib/jeweler/gemspec_helper.rb +0 -2
- data/lib/jeweler/generator/application.rb +14 -5
- data/lib/jeweler/specification.rb +0 -7
- data/lib/jeweler/tasks.rb +0 -1
- data/lib/jeweler/templates/.gitignore +9 -3
- data/lib/jeweler/templates/Rakefile +2 -0
- data/lib/jeweler/templates/jeweler_tasks.erb +4 -2
- data/lib/jeweler/templates/other_tasks.erb +1 -0
- data/lib/jeweler/version.rb +2 -2
- data/lib/jeweler/version_helper.rb +5 -0
- data/test/jeweler/generator/test_application.rb +15 -7
- data/test/jeweler/test_specification.rb +0 -4
- metadata +41 -74
data/ChangeLog.markdown
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# jeweler 1.6.0
|
|
2
|
+
|
|
3
|
+
* Fix generated RCov task to exclude gems
|
|
4
|
+
* Generated .gitignore includes example for rubinius and redcar
|
|
5
|
+
* Generated Rakefile includes magic utf-8 comment for better UTF-8 support #20
|
|
6
|
+
* Generated Jeweler::Tasks now correctly documents that dependencies are managed in the Gemfile
|
|
7
|
+
* Workaround issues with ruby 1.9.2 and psych #169
|
|
8
|
+
* No longer deals with `test_files` #178
|
|
9
|
+
* JEWELER_OPTS are overridden by command line flags #178
|
|
10
|
+
|
|
11
|
+
# jeweler 1.5.1
|
|
12
|
+
|
|
13
|
+
* TODO
|
|
14
|
+
|
|
15
|
+
# jeweler 1.5.0
|
|
16
|
+
|
|
17
|
+
* TODO
|
|
18
|
+
|
|
1
19
|
# jeweler 1.4.0 2009-11-19
|
|
2
20
|
|
|
3
21
|
* Generator now adds gemcutter support by default. Disable it with --no-gemcutter
|
data/README.markdown
CHANGED
|
@@ -99,6 +99,7 @@ You can customize your gem by updating your `Rakefile`. With a newly generated p
|
|
|
99
99
|
gem.homepage = "http://github.com/technicalpickles/whatwhatwhat"
|
|
100
100
|
gem.authors = ["Joshua Nichols"]
|
|
101
101
|
end
|
|
102
|
+
Jeweler::RubygemsDotOrgTasks.new
|
|
102
103
|
|
|
103
104
|
It's crucial to understand the `gem` object is just a Gem::Specification. You can read up about it at [docs.rubygems.org/read/chapter/20](http://docs.rubygems.org/read/chapter/20). This is the most basic way of specifying a gem, Jeweler-managed or not. Jeweler just exposes this to you, in addition to providing some reasonable defaults, which we'll explore now.
|
|
104
105
|
|
|
@@ -108,7 +109,7 @@ It's crucial to understand the `gem` object is just a Gem::Specification. You ca
|
|
|
108
109
|
|
|
109
110
|
Every gem has a name. Among other things, the gem name is how you are able to `gem install` it. [Reference](http://docs.rubygems.org/read/chapter/20#name)
|
|
110
111
|
|
|
111
|
-
gem.summary = %Q{TODO:
|
|
112
|
+
gem.summary = %Q{TODO: one-line summary of your gem}
|
|
112
113
|
|
|
113
114
|
This is a one line summary of your gem. This is displayed, for example, when you use `gem list --details` or view it on [rubygems.org](http://rubygems.org/gems/).
|
|
114
115
|
|
data/Rakefile
CHANGED
|
@@ -22,6 +22,7 @@ Feature: generated Rakefile
|
|
|
22
22
|
And Rakefile has 'http://github.com/technicalpickles/the-perfect-gem' for the Jeweler::Tasks homepage
|
|
23
23
|
And Rakefile has 'MIT' for the Jeweler::Tasks license
|
|
24
24
|
And Rakefile instantiates a Jeweler::RubygemsDotOrgTasks
|
|
25
|
+
And Rakefile has a magic comment for UTF-8
|
|
25
26
|
|
|
26
27
|
Scenario: bacon
|
|
27
28
|
When I generate a bacon project named 'the-perfect-gem' that is 'zomg, so good'
|
|
@@ -72,6 +73,7 @@ Feature: generated Rakefile
|
|
|
72
73
|
Then Rakefile has 'test/**/test_*.rb' for the Rake::TestTask pattern
|
|
73
74
|
And Rakefile has 'test/**/test_*.rb' for the Rcov::RcovTask pattern
|
|
74
75
|
And Rakefile has 'test' in the Rcov::RcovTask libs
|
|
76
|
+
And Rakefile has '--exclude "gems/*"' in the Rcov::RcovTask rcov_opts
|
|
75
77
|
And Rakefile has "test" as the default task
|
|
76
78
|
|
|
77
79
|
Scenario: no cucumber
|
|
@@ -182,6 +182,13 @@ Then /^Rakefile has '(.*)' in the Rcov::RcovTask libs$/ do |libs|
|
|
|
182
182
|
assert_match "#{block_variable}.libs << '#{libs}'", @rakefile_content
|
|
183
183
|
end
|
|
184
184
|
|
|
185
|
+
Then /^Rakefile has '(.*)' in the Rcov::RcovTask rcov_opts$/ do |rcov_opts|
|
|
186
|
+
@rakefile_content ||= File.read(File.join(@working_dir, @name, 'Rakefile'))
|
|
187
|
+
block_variable, task_block = yank_task_info(@rakefile_content, 'Rcov::RcovTask')
|
|
188
|
+
|
|
189
|
+
assert_match "#{block_variable}.rcov_opts << '#{rcov_opts}'", @rakefile_content
|
|
190
|
+
end
|
|
191
|
+
|
|
185
192
|
|
|
186
193
|
Then /^'(.*)' contains '(.*)'$/ do |file, expected_string|
|
|
187
194
|
contents = File.read(File.join(@working_dir, @name, file))
|
|
@@ -367,3 +374,9 @@ Then /^'Gemfile' uses the (.*) source$/ do |source|
|
|
|
367
374
|
assert_match %Q{source "http://rubygems.org"}, content
|
|
368
375
|
end
|
|
369
376
|
|
|
377
|
+
|
|
378
|
+
Then /^Rakefile has a magic comment for UTF\-(\d+)$/ do |arg1|
|
|
379
|
+
content = File.read(File.join(@working_dir, @name, 'Rakefile'))
|
|
380
|
+
assert_match "# encoding: utf-8", content
|
|
381
|
+
end
|
|
382
|
+
|
data/jeweler.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{jeweler}
|
|
8
|
-
s.version = "1.
|
|
8
|
+
s.version = "1.6.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Josh Nichols"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-05-01}
|
|
13
13
|
s.default_executable = %q{jeweler}
|
|
14
14
|
s.description = %q{Simple and opinionated helper for creating Rubygem projects on GitHub}
|
|
15
15
|
s.email = %q{josh@technicalpickles.com}
|
|
@@ -182,47 +182,10 @@ Gem::Specification.new do |s|
|
|
|
182
182
|
s.homepage = %q{http://github.com/technicalpickles/jeweler}
|
|
183
183
|
s.licenses = ["MIT"]
|
|
184
184
|
s.require_paths = ["lib"]
|
|
185
|
-
s.rubygems_version = %q{1.
|
|
185
|
+
s.rubygems_version = %q{1.4.2}
|
|
186
186
|
s.summary = %q{Opinionated tool for creating and managing RubyGem projects}
|
|
187
|
-
s.test_files = [
|
|
188
|
-
"test/fixtures/bar/lib/foo_the_ultimate_lib.rb",
|
|
189
|
-
"test/fixtures/existing-project-with-version-constant/lib/existing_project_with_version.rb",
|
|
190
|
-
"test/fixtures/existing-project-with-version-constant/test/existing_project_with_version_test.rb",
|
|
191
|
-
"test/fixtures/existing-project-with-version-constant/test/test_helper.rb",
|
|
192
|
-
"test/fixtures/existing-project-with-version-plaintext/lib/existing_project_with_version.rb",
|
|
193
|
-
"test/fixtures/existing-project-with-version-plaintext/test/existing_project_with_version_test.rb",
|
|
194
|
-
"test/fixtures/existing-project-with-version-plaintext/test/test_helper.rb",
|
|
195
|
-
"test/fixtures/existing-project-with-version-yaml/lib/existing_project_with_version.rb",
|
|
196
|
-
"test/fixtures/existing-project-with-version-yaml/test/existing_project_with_version_test.rb",
|
|
197
|
-
"test/fixtures/existing-project-with-version-yaml/test/test_helper.rb",
|
|
198
|
-
"test/jeweler/commands/test_build_gem.rb",
|
|
199
|
-
"test/jeweler/commands/test_install_gem.rb",
|
|
200
|
-
"test/jeweler/commands/test_release_to_gemcutter.rb",
|
|
201
|
-
"test/jeweler/commands/test_release_to_git.rb",
|
|
202
|
-
"test/jeweler/commands/test_release_to_github.rb",
|
|
203
|
-
"test/jeweler/commands/test_validate_gemspec.rb",
|
|
204
|
-
"test/jeweler/commands/test_write_gemspec.rb",
|
|
205
|
-
"test/jeweler/commands/version/test_base.rb",
|
|
206
|
-
"test/jeweler/commands/version/test_bump_major.rb",
|
|
207
|
-
"test/jeweler/commands/version/test_bump_minor.rb",
|
|
208
|
-
"test/jeweler/commands/version/test_bump_patch.rb",
|
|
209
|
-
"test/jeweler/commands/version/test_write.rb",
|
|
210
|
-
"test/jeweler/generator/test_application.rb",
|
|
211
|
-
"test/jeweler/generator/test_options.rb",
|
|
212
|
-
"test/jeweler/test_gemspec_helper.rb",
|
|
213
|
-
"test/jeweler/test_generator.rb",
|
|
214
|
-
"test/jeweler/test_generator_initialization.rb",
|
|
215
|
-
"test/jeweler/test_generator_mixins.rb",
|
|
216
|
-
"test/jeweler/test_specification.rb",
|
|
217
|
-
"test/jeweler/test_tasks.rb",
|
|
218
|
-
"test/jeweler/test_version_helper.rb",
|
|
219
|
-
"test/shoulda_macros/jeweler_macros.rb",
|
|
220
|
-
"test/test_helper.rb",
|
|
221
|
-
"test/test_jeweler.rb"
|
|
222
|
-
]
|
|
223
187
|
|
|
224
188
|
if s.respond_to? :specification_version then
|
|
225
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
226
189
|
s.specification_version = 3
|
|
227
190
|
|
|
228
191
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
@@ -26,12 +26,10 @@ class Jeweler
|
|
|
26
26
|
|
|
27
27
|
def to_ruby
|
|
28
28
|
normalize_files(:files)
|
|
29
|
-
normalize_files(:test_files)
|
|
30
29
|
normalize_files(:extra_rdoc_files)
|
|
31
30
|
|
|
32
31
|
gemspec_ruby = @spec.to_ruby
|
|
33
32
|
gemspec_ruby = prettyify_array(gemspec_ruby, :files)
|
|
34
|
-
gemspec_ruby = prettyify_array(gemspec_ruby, :test_files)
|
|
35
33
|
gemspec_ruby = prettyify_array(gemspec_ruby, :extra_rdoc_files)
|
|
36
34
|
gemspec_ruby = <<-END
|
|
37
35
|
# Generated by jeweler
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
require 'shellwords'
|
|
2
|
+
|
|
1
3
|
class Jeweler
|
|
2
4
|
class Generator
|
|
3
5
|
class Application
|
|
4
6
|
class << self
|
|
7
|
+
include Shellwords
|
|
8
|
+
|
|
5
9
|
def run!(*arguments)
|
|
6
|
-
|
|
7
|
-
Jeweler::Generator::Options.new(ENV['JEWELER_OPTS'].split(' '))
|
|
8
|
-
end
|
|
9
|
-
options = Jeweler::Generator::Options.new(arguments)
|
|
10
|
-
options = options.merge(env_opts) if env_opts
|
|
10
|
+
options = build_options(arguments)
|
|
11
11
|
|
|
12
12
|
if options[:invalid_argument]
|
|
13
13
|
$stderr.puts options[:invalid_argument]
|
|
@@ -45,6 +45,15 @@ class Jeweler
|
|
|
45
45
|
return 1
|
|
46
46
|
end
|
|
47
47
|
end
|
|
48
|
+
|
|
49
|
+
def build_options(arguments)
|
|
50
|
+
env_opts_string = ENV['JEWELER_OPTS'] || ""
|
|
51
|
+
env_opts = Jeweler::Generator::Options.new(shellwords(env_opts_string))
|
|
52
|
+
argument_opts = Jeweler::Generator::Options.new(arguments)
|
|
53
|
+
|
|
54
|
+
env_opts.merge(argument_opts)
|
|
55
|
+
end
|
|
56
|
+
|
|
48
57
|
end
|
|
49
58
|
|
|
50
59
|
end
|
|
@@ -6,7 +6,6 @@ class Jeweler
|
|
|
6
6
|
# super-cow powers.
|
|
7
7
|
#
|
|
8
8
|
# [files] a Rake::FileList of anything that is in git and not gitignored. You can include/exclude this default set, or override it entirely
|
|
9
|
-
# [test_files] Similar to gem.files, except it's only things under the spec, test, or examples directory.
|
|
10
9
|
# [extra_rdoc_files] a Rake::FileList including files like README*, ChangeLog*, and LICENSE*
|
|
11
10
|
# [executables] uses anything found in the bin/ directory.
|
|
12
11
|
module Specification
|
|
@@ -27,7 +26,6 @@ class Jeweler
|
|
|
27
26
|
end
|
|
28
27
|
|
|
29
28
|
filelist_attribute :files
|
|
30
|
-
filelist_attribute :test_files
|
|
31
29
|
filelist_attribute :extra_rdoc_files
|
|
32
30
|
|
|
33
31
|
# Assigns the Jeweler defaults to the Gem::Specification
|
|
@@ -55,10 +53,6 @@ class Jeweler
|
|
|
55
53
|
end
|
|
56
54
|
end
|
|
57
55
|
|
|
58
|
-
if blank?(test_files) && repo
|
|
59
|
-
self.test_files = FileList['{spec,test,examples}/**/*.rb'] - repo.lib.ignored_files
|
|
60
|
-
end
|
|
61
|
-
|
|
62
56
|
if blank?(executables) && repo
|
|
63
57
|
self.executables = (repo.ls_files(File.join(base_dir, 'bin')).keys - repo.lib.ignored_files).map do |file|
|
|
64
58
|
File.basename(file)
|
|
@@ -111,7 +105,6 @@ Gem::Specification.class_eval do
|
|
|
111
105
|
super
|
|
112
106
|
|
|
113
107
|
self.files = original.files.to_a
|
|
114
|
-
self.test_files = original.test_files.to_a
|
|
115
108
|
self.extra_rdoc_files = original.extra_rdoc_files.to_a
|
|
116
109
|
end
|
|
117
110
|
end
|
data/lib/jeweler/tasks.rb
CHANGED
|
@@ -57,7 +57,6 @@ class Jeweler
|
|
|
57
57
|
yielded_gemspec = @gemspec.dup
|
|
58
58
|
yielded_gemspec.extend(Jeweler::Specification)
|
|
59
59
|
yielded_gemspec.files = FileList[]
|
|
60
|
-
yielded_gemspec.test_files = FileList[]
|
|
61
60
|
yielded_gemspec.extra_rdoc_files = FileList[]
|
|
62
61
|
|
|
63
62
|
gemspec_building_block.call(yielded_gemspec) if gemspec_building_block
|
|
@@ -28,15 +28,21 @@ pkg
|
|
|
28
28
|
# For MacOS:
|
|
29
29
|
#
|
|
30
30
|
#.DS_Store
|
|
31
|
-
|
|
31
|
+
|
|
32
32
|
# For TextMate
|
|
33
33
|
#*.tmproj
|
|
34
34
|
#tmtags
|
|
35
|
-
|
|
35
|
+
|
|
36
36
|
# For emacs:
|
|
37
37
|
#*~
|
|
38
38
|
#\#*
|
|
39
39
|
#.\#*
|
|
40
|
-
|
|
40
|
+
|
|
41
41
|
# For vim:
|
|
42
42
|
#*.swp
|
|
43
|
+
|
|
44
|
+
# For redcar:
|
|
45
|
+
#.redcar
|
|
46
|
+
|
|
47
|
+
# For rubinius:
|
|
48
|
+
#*.rbc
|
|
@@ -11,12 +11,14 @@ Jeweler::Tasks.new do |gem|
|
|
|
11
11
|
<% if should_setup_rubyforge %>
|
|
12
12
|
gem.rubyforge_project = "<%= project_name %>"
|
|
13
13
|
<% end %>
|
|
14
|
+
<% if should_use_bundler %>
|
|
15
|
+
# dependencies defined in Gemfile
|
|
16
|
+
<% else %>
|
|
17
|
+
<% development_dependencies.each do |name, version| %>
|
|
14
18
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
|
15
19
|
# and development dependencies are only needed for development (ie running rake tasks, tests, etc)
|
|
16
20
|
# gem.add_runtime_dependency 'jabber4r', '> 0.1'
|
|
17
21
|
# gem.add_development_dependency 'rspec', '> 1.2.3'
|
|
18
|
-
<% if ! should_use_bundler %>
|
|
19
|
-
<% development_dependencies.each do |name, version| %>
|
|
20
22
|
gem.add_development_dependency "<%= name %>", "<%= version %>"
|
|
21
23
|
<% end %>
|
|
22
24
|
<% end %>
|
data/lib/jeweler/version.rb
CHANGED
|
@@ -25,11 +25,9 @@ class TestApplication < Test::Unit::TestCase
|
|
|
25
25
|
result
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
-
def stub_options(options)
|
|
28
|
+
def stub_options(options = {})
|
|
29
29
|
stub(options).opts { 'Usage:' }
|
|
30
30
|
|
|
31
|
-
stub(Jeweler::Generator::Options).new { options }
|
|
32
|
-
|
|
33
31
|
options
|
|
34
32
|
end
|
|
35
33
|
|
|
@@ -41,7 +39,10 @@ class TestApplication < Test::Unit::TestCase
|
|
|
41
39
|
|
|
42
40
|
context "when options indicate help usage" do
|
|
43
41
|
setup do
|
|
44
|
-
|
|
42
|
+
stub(Jeweler::Generator::Application).build_opts do
|
|
43
|
+
stub_options(:show_help => true)
|
|
44
|
+
end
|
|
45
|
+
|
|
45
46
|
stub(Jeweler::Generator).new { raise "Shouldn't have made this far"}
|
|
46
47
|
|
|
47
48
|
assert_nothing_raised do
|
|
@@ -62,7 +63,10 @@ class TestApplication < Test::Unit::TestCase
|
|
|
62
63
|
|
|
63
64
|
context "when options indicate an invalid argument" do
|
|
64
65
|
setup do
|
|
65
|
-
|
|
66
|
+
stub(Jeweler::Generator::Application).build_opts do
|
|
67
|
+
stub_options(:invalid_argument => '--invalid-argument')
|
|
68
|
+
end
|
|
69
|
+
|
|
66
70
|
stub(Jeweler::Generator).new { raise "Shouldn't have made this far"}
|
|
67
71
|
|
|
68
72
|
assert_nothing_raised do
|
|
@@ -88,11 +92,15 @@ class TestApplication < Test::Unit::TestCase
|
|
|
88
92
|
|
|
89
93
|
context "when options are good" do
|
|
90
94
|
setup do
|
|
91
|
-
@options = stub_options :project_name => 'zomg'
|
|
92
95
|
@generator = "generator"
|
|
93
96
|
stub(@generator).run
|
|
94
97
|
stub(Jeweler::Generator).new { @generator }
|
|
95
98
|
|
|
99
|
+
@jeweler_options = stub_options :project_name => 'zomg'
|
|
100
|
+
stub(Jeweler::Generator::Application).build_options do
|
|
101
|
+
@jeweler_options
|
|
102
|
+
end
|
|
103
|
+
|
|
96
104
|
assert_nothing_raised do
|
|
97
105
|
@result = run_application("zomg")
|
|
98
106
|
end
|
|
@@ -101,7 +109,7 @@ class TestApplication < Test::Unit::TestCase
|
|
|
101
109
|
should_exit_with_code 0
|
|
102
110
|
|
|
103
111
|
should "create generator with options" do
|
|
104
|
-
assert_received(Jeweler::Generator) {|subject| subject.new(@
|
|
112
|
+
assert_received(Jeweler::Generator) {|subject| subject.new(@jeweler_options) }
|
|
105
113
|
end
|
|
106
114
|
|
|
107
115
|
should "run generator" do
|
|
@@ -35,10 +35,6 @@ class TestSpecification < Test::Unit::TestCase
|
|
|
35
35
|
assert_equal FileList, @gemspec.files.class
|
|
36
36
|
end
|
|
37
37
|
|
|
38
|
-
should "make test_files a FileList" do
|
|
39
|
-
assert_equal FileList, @gemspec.test_files.class
|
|
40
|
-
end
|
|
41
|
-
|
|
42
38
|
should "make extra_rdoc_files a FileList" do
|
|
43
39
|
assert_equal FileList, @gemspec.extra_rdoc_files.class
|
|
44
40
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jeweler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 15
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
version: 1.
|
|
8
|
+
- 6
|
|
9
|
+
- 0
|
|
10
|
+
version: 1.6.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Josh Nichols
|
|
@@ -15,12 +15,12 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2011-05-01 00:00:00 -04:00
|
|
19
19
|
default_executable: jeweler
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
22
|
type: :runtime
|
|
23
|
-
|
|
23
|
+
name: rake
|
|
24
24
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
|
25
25
|
none: false
|
|
26
26
|
requirements:
|
|
@@ -30,11 +30,11 @@ dependencies:
|
|
|
30
30
|
segments:
|
|
31
31
|
- 0
|
|
32
32
|
version: "0"
|
|
33
|
-
|
|
33
|
+
prerelease: false
|
|
34
34
|
requirement: *id001
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
type: :runtime
|
|
37
|
-
|
|
37
|
+
name: git
|
|
38
38
|
version_requirements: &id002 !ruby/object:Gem::Requirement
|
|
39
39
|
none: false
|
|
40
40
|
requirements:
|
|
@@ -46,11 +46,11 @@ dependencies:
|
|
|
46
46
|
- 2
|
|
47
47
|
- 5
|
|
48
48
|
version: 1.2.5
|
|
49
|
-
|
|
49
|
+
prerelease: false
|
|
50
50
|
requirement: *id002
|
|
51
51
|
- !ruby/object:Gem::Dependency
|
|
52
52
|
type: :runtime
|
|
53
|
-
|
|
53
|
+
name: bundler
|
|
54
54
|
version_requirements: &id003 !ruby/object:Gem::Requirement
|
|
55
55
|
none: false
|
|
56
56
|
requirements:
|
|
@@ -62,11 +62,11 @@ dependencies:
|
|
|
62
62
|
- 0
|
|
63
63
|
- 0
|
|
64
64
|
version: 1.0.0
|
|
65
|
-
|
|
65
|
+
prerelease: false
|
|
66
66
|
requirement: *id003
|
|
67
67
|
- !ruby/object:Gem::Dependency
|
|
68
68
|
type: :development
|
|
69
|
-
|
|
69
|
+
name: shoulda
|
|
70
70
|
version_requirements: &id004 !ruby/object:Gem::Requirement
|
|
71
71
|
none: false
|
|
72
72
|
requirements:
|
|
@@ -76,11 +76,11 @@ dependencies:
|
|
|
76
76
|
segments:
|
|
77
77
|
- 0
|
|
78
78
|
version: "0"
|
|
79
|
-
|
|
79
|
+
prerelease: false
|
|
80
80
|
requirement: *id004
|
|
81
81
|
- !ruby/object:Gem::Dependency
|
|
82
82
|
type: :development
|
|
83
|
-
|
|
83
|
+
name: mhennemeyer-output_catcher
|
|
84
84
|
version_requirements: &id005 !ruby/object:Gem::Requirement
|
|
85
85
|
none: false
|
|
86
86
|
requirements:
|
|
@@ -90,11 +90,11 @@ dependencies:
|
|
|
90
90
|
segments:
|
|
91
91
|
- 0
|
|
92
92
|
version: "0"
|
|
93
|
-
|
|
93
|
+
prerelease: false
|
|
94
94
|
requirement: *id005
|
|
95
95
|
- !ruby/object:Gem::Dependency
|
|
96
96
|
type: :development
|
|
97
|
-
|
|
97
|
+
name: rr
|
|
98
98
|
version_requirements: &id006 !ruby/object:Gem::Requirement
|
|
99
99
|
none: false
|
|
100
100
|
requirements:
|
|
@@ -104,11 +104,11 @@ dependencies:
|
|
|
104
104
|
segments:
|
|
105
105
|
- 0
|
|
106
106
|
version: "0"
|
|
107
|
-
|
|
107
|
+
prerelease: false
|
|
108
108
|
requirement: *id006
|
|
109
109
|
- !ruby/object:Gem::Dependency
|
|
110
110
|
type: :development
|
|
111
|
-
|
|
111
|
+
name: mocha
|
|
112
112
|
version_requirements: &id007 !ruby/object:Gem::Requirement
|
|
113
113
|
none: false
|
|
114
114
|
requirements:
|
|
@@ -118,11 +118,11 @@ dependencies:
|
|
|
118
118
|
segments:
|
|
119
119
|
- 0
|
|
120
120
|
version: "0"
|
|
121
|
-
|
|
121
|
+
prerelease: false
|
|
122
122
|
requirement: *id007
|
|
123
123
|
- !ruby/object:Gem::Dependency
|
|
124
124
|
type: :development
|
|
125
|
-
|
|
125
|
+
name: redgreen
|
|
126
126
|
version_requirements: &id008 !ruby/object:Gem::Requirement
|
|
127
127
|
none: false
|
|
128
128
|
requirements:
|
|
@@ -132,11 +132,11 @@ dependencies:
|
|
|
132
132
|
segments:
|
|
133
133
|
- 0
|
|
134
134
|
version: "0"
|
|
135
|
-
|
|
135
|
+
prerelease: false
|
|
136
136
|
requirement: *id008
|
|
137
137
|
- !ruby/object:Gem::Dependency
|
|
138
138
|
type: :development
|
|
139
|
-
|
|
139
|
+
name: test-construct
|
|
140
140
|
version_requirements: &id009 !ruby/object:Gem::Requirement
|
|
141
141
|
none: false
|
|
142
142
|
requirements:
|
|
@@ -146,11 +146,11 @@ dependencies:
|
|
|
146
146
|
segments:
|
|
147
147
|
- 0
|
|
148
148
|
version: "0"
|
|
149
|
-
|
|
149
|
+
prerelease: false
|
|
150
150
|
requirement: *id009
|
|
151
151
|
- !ruby/object:Gem::Dependency
|
|
152
152
|
type: :development
|
|
153
|
-
|
|
153
|
+
name: yard
|
|
154
154
|
version_requirements: &id010 !ruby/object:Gem::Requirement
|
|
155
155
|
none: false
|
|
156
156
|
requirements:
|
|
@@ -162,11 +162,11 @@ dependencies:
|
|
|
162
162
|
- 6
|
|
163
163
|
- 0
|
|
164
164
|
version: 0.6.0
|
|
165
|
-
|
|
165
|
+
prerelease: false
|
|
166
166
|
requirement: *id010
|
|
167
167
|
- !ruby/object:Gem::Dependency
|
|
168
168
|
type: :development
|
|
169
|
-
|
|
169
|
+
name: bluecloth
|
|
170
170
|
version_requirements: &id011 !ruby/object:Gem::Requirement
|
|
171
171
|
none: false
|
|
172
172
|
requirements:
|
|
@@ -176,11 +176,11 @@ dependencies:
|
|
|
176
176
|
segments:
|
|
177
177
|
- 0
|
|
178
178
|
version: "0"
|
|
179
|
-
|
|
179
|
+
prerelease: false
|
|
180
180
|
requirement: *id011
|
|
181
181
|
- !ruby/object:Gem::Dependency
|
|
182
182
|
type: :development
|
|
183
|
-
|
|
183
|
+
name: cucumber
|
|
184
184
|
version_requirements: &id012 !ruby/object:Gem::Requirement
|
|
185
185
|
none: false
|
|
186
186
|
requirements:
|
|
@@ -190,11 +190,11 @@ dependencies:
|
|
|
190
190
|
segments:
|
|
191
191
|
- 0
|
|
192
192
|
version: "0"
|
|
193
|
-
|
|
193
|
+
prerelease: false
|
|
194
194
|
requirement: *id012
|
|
195
195
|
- !ruby/object:Gem::Dependency
|
|
196
196
|
type: :development
|
|
197
|
-
|
|
197
|
+
name: rcov
|
|
198
198
|
version_requirements: &id013 !ruby/object:Gem::Requirement
|
|
199
199
|
none: false
|
|
200
200
|
requirements:
|
|
@@ -204,11 +204,11 @@ dependencies:
|
|
|
204
204
|
segments:
|
|
205
205
|
- 0
|
|
206
206
|
version: "0"
|
|
207
|
-
|
|
207
|
+
prerelease: false
|
|
208
208
|
requirement: *id013
|
|
209
209
|
- !ruby/object:Gem::Dependency
|
|
210
210
|
type: :development
|
|
211
|
-
|
|
211
|
+
name: timecop
|
|
212
212
|
version_requirements: &id014 !ruby/object:Gem::Requirement
|
|
213
213
|
none: false
|
|
214
214
|
requirements:
|
|
@@ -218,11 +218,11 @@ dependencies:
|
|
|
218
218
|
segments:
|
|
219
219
|
- 0
|
|
220
220
|
version: "0"
|
|
221
|
-
|
|
221
|
+
prerelease: false
|
|
222
222
|
requirement: *id014
|
|
223
223
|
- !ruby/object:Gem::Dependency
|
|
224
224
|
type: :development
|
|
225
|
-
|
|
225
|
+
name: activesupport
|
|
226
226
|
version_requirements: &id015 !ruby/object:Gem::Requirement
|
|
227
227
|
none: false
|
|
228
228
|
requirements:
|
|
@@ -234,11 +234,11 @@ dependencies:
|
|
|
234
234
|
- 3
|
|
235
235
|
- 5
|
|
236
236
|
version: 2.3.5
|
|
237
|
-
|
|
237
|
+
prerelease: false
|
|
238
238
|
requirement: *id015
|
|
239
239
|
- !ruby/object:Gem::Dependency
|
|
240
240
|
type: :development
|
|
241
|
-
|
|
241
|
+
name: ruby-debug
|
|
242
242
|
version_requirements: &id016 !ruby/object:Gem::Requirement
|
|
243
243
|
none: false
|
|
244
244
|
requirements:
|
|
@@ -248,7 +248,7 @@ dependencies:
|
|
|
248
248
|
segments:
|
|
249
249
|
- 0
|
|
250
250
|
version: "0"
|
|
251
|
-
|
|
251
|
+
prerelease: false
|
|
252
252
|
requirement: *id016
|
|
253
253
|
description: Simple and opinionated helper for creating Rubygem projects on GitHub
|
|
254
254
|
email: josh@technicalpickles.com
|
|
@@ -449,42 +449,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
449
449
|
requirements: []
|
|
450
450
|
|
|
451
451
|
rubyforge_project:
|
|
452
|
-
rubygems_version: 1.
|
|
452
|
+
rubygems_version: 1.4.2
|
|
453
453
|
signing_key:
|
|
454
454
|
specification_version: 3
|
|
455
455
|
summary: Opinionated tool for creating and managing RubyGem projects
|
|
456
|
-
test_files:
|
|
457
|
-
|
|
458
|
-
- test/fixtures/existing-project-with-version-constant/lib/existing_project_with_version.rb
|
|
459
|
-
- test/fixtures/existing-project-with-version-constant/test/existing_project_with_version_test.rb
|
|
460
|
-
- test/fixtures/existing-project-with-version-constant/test/test_helper.rb
|
|
461
|
-
- test/fixtures/existing-project-with-version-plaintext/lib/existing_project_with_version.rb
|
|
462
|
-
- test/fixtures/existing-project-with-version-plaintext/test/existing_project_with_version_test.rb
|
|
463
|
-
- test/fixtures/existing-project-with-version-plaintext/test/test_helper.rb
|
|
464
|
-
- test/fixtures/existing-project-with-version-yaml/lib/existing_project_with_version.rb
|
|
465
|
-
- test/fixtures/existing-project-with-version-yaml/test/existing_project_with_version_test.rb
|
|
466
|
-
- test/fixtures/existing-project-with-version-yaml/test/test_helper.rb
|
|
467
|
-
- test/jeweler/commands/test_build_gem.rb
|
|
468
|
-
- test/jeweler/commands/test_install_gem.rb
|
|
469
|
-
- test/jeweler/commands/test_release_to_gemcutter.rb
|
|
470
|
-
- test/jeweler/commands/test_release_to_git.rb
|
|
471
|
-
- test/jeweler/commands/test_release_to_github.rb
|
|
472
|
-
- test/jeweler/commands/test_validate_gemspec.rb
|
|
473
|
-
- test/jeweler/commands/test_write_gemspec.rb
|
|
474
|
-
- test/jeweler/commands/version/test_base.rb
|
|
475
|
-
- test/jeweler/commands/version/test_bump_major.rb
|
|
476
|
-
- test/jeweler/commands/version/test_bump_minor.rb
|
|
477
|
-
- test/jeweler/commands/version/test_bump_patch.rb
|
|
478
|
-
- test/jeweler/commands/version/test_write.rb
|
|
479
|
-
- test/jeweler/generator/test_application.rb
|
|
480
|
-
- test/jeweler/generator/test_options.rb
|
|
481
|
-
- test/jeweler/test_gemspec_helper.rb
|
|
482
|
-
- test/jeweler/test_generator.rb
|
|
483
|
-
- test/jeweler/test_generator_initialization.rb
|
|
484
|
-
- test/jeweler/test_generator_mixins.rb
|
|
485
|
-
- test/jeweler/test_specification.rb
|
|
486
|
-
- test/jeweler/test_tasks.rb
|
|
487
|
-
- test/jeweler/test_version_helper.rb
|
|
488
|
-
- test/shoulda_macros/jeweler_macros.rb
|
|
489
|
-
- test/test_helper.rb
|
|
490
|
-
- test/test_jeweler.rb
|
|
456
|
+
test_files: []
|
|
457
|
+
|