gemsmith 1.5.0 → 2.0.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.
- checksums.yaml +7 -0
- data/CHANGELOG.rdoc +16 -0
- data/README.rdoc +33 -15
- data/lib/gemsmith/cli.rb +10 -3
- data/lib/gemsmith/templates/CONTRIBUTING.md.tmp +46 -0
- data/lib/gemsmith/templates/Gemfile.tmp +1 -1
- data/lib/gemsmith/templates/README.rdoc.tmp +6 -2
- data/lib/gemsmith/templates/gem.gemspec.tmp +12 -1
- data/lib/gemsmith/templates/spec/spec_helper.rb.tmp +5 -0
- data/lib/gemsmith/templates/travis.yml.tmp +1 -2
- data/lib/gemsmith/version.rb +1 -1
- metadata +112 -39
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6f099b61afd087c4dc64b7850b0d5f1d69130b11
|
4
|
+
data.tar.gz: d7078655ebcc3e7f4ae7528be679573a47fb638c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: db87fed1447b0b7a73c93f8459c482faeed8f2e0d10872b412e1b2266013552d2d566eb213053b0618b7ee29f56ce6069010c3a5d59e34a88ff9e05a067efc02
|
7
|
+
data.tar.gz: e87478defe7ab4402bcc565db390d7bd139bf310592dbdf53427c808001d7ad0c366efed332c7324c7a1536c7fa0b74de8e32ebcfebd3c66b08c3d1a113b8b9a
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
= v2.0.0
|
2
|
+
|
3
|
+
* Added Railtie best practices to README.
|
4
|
+
* Added Guard support.
|
5
|
+
* Converted/detailed the CONTRIBUTING guidelines per GitHub requirements.
|
6
|
+
* Updated the contribution details in the README template to point to the CONTRIBUTING template.
|
7
|
+
* Added spec focus capability.
|
8
|
+
* Added Gem Badge support.
|
9
|
+
* Added Code Climate support.
|
10
|
+
* Added Campfire notification support.
|
11
|
+
* Switched from HTTP to HTTPS when sourcing from RubyGems.
|
12
|
+
* Added Pry support.
|
13
|
+
* Cleaned up Guard gem dependency requirements.
|
14
|
+
* Added Guard support to gem generation.
|
15
|
+
* Upgraded to Ruby 2.0.0.
|
16
|
+
|
1
17
|
= v1.5.0
|
2
18
|
|
3
19
|
* Added auto-linking to GitHub Issues via README template.
|
data/README.rdoc
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
= Overview
|
2
2
|
|
3
|
-
{<img src="https://
|
3
|
+
{<img src="https://badge.fury.io/rb/gemsmith.png" alt="Gem Version" />}[http://badge.fury.io/rb/gemsmith]
|
4
|
+
{<img src="https://codeclimate.com/github/bkuhlmann/gemsmith.png" alt="Code Climate GPA" />}[https://codeclimate.com/github/bkuhlmann/gemsmith]
|
5
|
+
{<img src="https://secure.travis-ci.org/bkuhlmann/gemsmith.png" alt="Travis CI Status" />}[http://travis-ci.org/bkuhlmann/gemsmith]
|
4
6
|
|
5
7
|
Gemsmith allows you to easily craft new gems via the command line with custom settings (if desired). If you are
|
6
8
|
a fan of Bundler[https://github.com/carlhuda/bundler], then you'll appreciate the additional capabilities of this
|
@@ -11,8 +13,11 @@ gem. Gemsmith is essentially an enhanced version of Bundler's gem building capab
|
|
11
13
|
* Builds a gem skeleton with Bundler functionality in mind.
|
12
14
|
* Supports common settings that can be applied to new gem creations.
|
13
15
|
* Supports binary skeletons with Thor[https://github.com/wycats/thor] command line functionality.
|
14
|
-
* Supports {Ruby on Rails}[http://rubyonrails.org]
|
15
|
-
* Supports RSpec[http://rspec.info]
|
16
|
+
* Supports {Ruby on Rails}[http://rubyonrails.org].
|
17
|
+
* Supports RSpec[http://rspec.info].
|
18
|
+
* Supports Pry[http://pryrepl.org].
|
19
|
+
* Supports Guard[https://github.com/guard/guard].
|
20
|
+
* Supports {Code Climate}[https://codeclimate.com].
|
16
21
|
* Supports {Travis CI}[http://travis-ci.org] skeletons.
|
17
22
|
* Adds commonly needed README, CHANGELOG, LICENSE, etc. template files.
|
18
23
|
* Provides the ability to open any installed gem within your favorite editor.
|
@@ -20,9 +25,9 @@ gem. Gemsmith is essentially an enhanced version of Bundler's gem building capab
|
|
20
25
|
= Requirements
|
21
26
|
|
22
27
|
1. A UNIX-based system.
|
23
|
-
2. {Ruby
|
24
|
-
3. RubyGems[http://rubygems.org]
|
25
|
-
4. Bundler[https://github.com/carlhuda/bundler]
|
28
|
+
2. {Ruby 2.0.x}[http://www.ruby-lang.org].
|
29
|
+
3. RubyGems[http://rubygems.org].
|
30
|
+
4. Bundler[https://github.com/carlhuda/bundler].
|
26
31
|
|
27
32
|
= Setup
|
28
33
|
|
@@ -53,7 +58,7 @@ If no options are configured, then the defaults are as follows:
|
|
53
58
|
company_url: <author URL>
|
54
59
|
github_user: <github user>
|
55
60
|
year: <current year>
|
56
|
-
ruby_version:
|
61
|
+
ruby_version: 2.0.0
|
57
62
|
rails_version: 3.2.0
|
58
63
|
|
59
64
|
= Usage
|
@@ -68,12 +73,18 @@ From the command line, type: gemsmith help
|
|
68
73
|
|
69
74
|
For more gem creation options, type: gemsmith help create
|
70
75
|
|
71
|
-
-b, [--bin]
|
72
|
-
-r, [--rails]
|
73
|
-
-
|
74
|
-
|
75
|
-
-
|
76
|
-
|
76
|
+
-b, [--bin] # Add binary support.
|
77
|
+
-r, [--rails] # Add Rails support.
|
78
|
+
-p, [--pry] # Add Pry support.
|
79
|
+
# Default: true
|
80
|
+
-g, [--guard] # Add Guard support.
|
81
|
+
# Default: true
|
82
|
+
-s, [--rspec] # Add RSpec support.
|
83
|
+
# Default: true
|
84
|
+
-t, [--travis] # Add Travis CI support.
|
85
|
+
# Default: true
|
86
|
+
-c, [--code-climate] # Add Code Climate support.
|
87
|
+
# Default: true
|
77
88
|
|
78
89
|
Also, don't forget that once you have created your gem skeleton, the following rake tasks are also
|
79
90
|
available to you via Bundler (i.e. rake -T):
|
@@ -87,7 +98,14 @@ available to you via Bundler (i.e. rake -T):
|
|
87
98
|
1. {Best Practices While Cutting Gems}[http://rubysource.com/crafting-rubies-best-practices-while-cutting-gems].
|
88
99
|
2. {Ruby on Rails Gem Packaging}[http://weblog.rubyonrails.org/2009/9/1/gem-packaging-best-practices].
|
89
100
|
3. {Why You Should Use a BSD Style License}[http://www.freebsd.org/doc/en/articles/bsdl-gpl/article.html].
|
90
|
-
4.
|
101
|
+
4. Add -w to the RUBYOPT environment variable when testing. {Details}[http://avdi.org/devblog/2011/06/23/how-ruby-helps-you-fix-your-broken-code].
|
102
|
+
|
103
|
+
== When To Include a Railtie (quoted from {Crafting Rails Applications}[http://pragprog.com/book/jvrails/crafting-rails-applications] - Page 93 by José Valim)
|
104
|
+
|
105
|
+
* "Your gem needs to perform a given task while or after the Rails application is initialized."
|
106
|
+
* "Your gem needs to change a configuration value, such as setting a generator."
|
107
|
+
* "Your gem must provide Rake tasks and generators in nondefault locations (the default location for the former is lib/tasks and lib/gen- erators or lib/rails/generators for the latter)."
|
108
|
+
* "You want your gem to provide configuration options to the appli- cation, such as config.my_gem.key = :value."
|
91
109
|
|
92
110
|
= Tests
|
93
111
|
|
@@ -99,7 +117,7 @@ To test, do the following:
|
|
99
117
|
|
100
118
|
= Contributions
|
101
119
|
|
102
|
-
|
120
|
+
Read CONTRIBUTING for details.
|
103
121
|
|
104
122
|
= Credits
|
105
123
|
|
data/lib/gemsmith/cli.rb
CHANGED
@@ -24,8 +24,11 @@ module Gemsmith
|
|
24
24
|
map "-c" => :create
|
25
25
|
method_option :bin, aliases: "-b", desc: "Add binary support.", type: :boolean, default: false
|
26
26
|
method_option :rails, aliases: "-r", desc: "Add Rails support.", type: :boolean, default: false
|
27
|
+
method_option :pry, aliases: "-p", desc: "Add Pry support.", type: :boolean, default: true
|
28
|
+
method_option :guard, aliases: "-g", desc: "Add Guard support.", type: :boolean, default: true
|
27
29
|
method_option :rspec, aliases: "-s", desc: "Add RSpec support.", type: :boolean, default: true
|
28
30
|
method_option :travis, aliases: "-t", desc: "Add Travis CI support.", type: :boolean, default: true
|
31
|
+
method_option :code_climate, aliases: "-c", desc: "Add Code Climate support.", type: :boolean, default: true
|
29
32
|
def create name
|
30
33
|
say
|
31
34
|
info "Creating gem..."
|
@@ -39,8 +42,9 @@ module Gemsmith
|
|
39
42
|
|
40
43
|
# Default templates.
|
41
44
|
template "README.rdoc.tmp", File.join(target_path, "README.rdoc"), template_options
|
42
|
-
template "
|
45
|
+
template "CONTRIBUTING.md.tmp", File.join(target_path, "CONTRIBUTING.md"), template_options
|
43
46
|
template "LICENSE.rdoc.tmp", File.join(target_path, "LICENSE.rdoc"), template_options
|
47
|
+
template "CHANGELOG.rdoc.tmp", File.join(target_path, "CHANGELOG.rdoc"), template_options
|
44
48
|
template "Gemfile.tmp", File.join(target_path, "Gemfile"), template_options
|
45
49
|
template "Rakefile.tmp", File.join(target_path, "Rakefile"), template_options
|
46
50
|
template "gitignore.tmp", File.join(target_path, ".gitignore"), template_options
|
@@ -170,13 +174,16 @@ module Gemsmith
|
|
170
174
|
company_url: (settings[:company_url] || author_url),
|
171
175
|
github_user: (settings[:github_user] || Gemsmith::Kit.git_config_value("github.user") || "unknown"),
|
172
176
|
year: (settings[:year] || Time.now.year),
|
173
|
-
ruby_version: (settings[:ruby_version] || "
|
177
|
+
ruby_version: (settings[:ruby_version] || "2.0.0"),
|
174
178
|
rails_version: (settings[:rails_version] || "3.0"),
|
175
179
|
post_install_message: settings[:post_install_message],
|
176
180
|
bin: (options[:bin] || false),
|
177
181
|
rails: (options[:rails] || false),
|
182
|
+
pry: (options[:pry] || true),
|
183
|
+
guard: (options[:guard] || true),
|
178
184
|
rspec: (options[:rspec] || true),
|
179
|
-
travis: (options[:travis] || true)
|
185
|
+
travis: (options[:travis] || true),
|
186
|
+
code_climate: (options[:code_climate] || true)
|
180
187
|
}
|
181
188
|
end
|
182
189
|
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Overview
|
2
|
+
|
3
|
+
Thanks for taking an interest in this open source project. Your support
|
4
|
+
and involvement is greatly appreciated. The following details what you need to know
|
5
|
+
in order to contribute back.
|
6
|
+
|
7
|
+
# Requirements
|
8
|
+
|
9
|
+
* Document the code - Explain the intent/purpose along with usage examples (where appropriate).
|
10
|
+
* Write tests that demonstration passing and failing requirements.
|
11
|
+
* Use two spaces, no tabs for indentation.
|
12
|
+
* Remove trailing whitespace.
|
13
|
+
* Remove spaces from blank lines.
|
14
|
+
* Write methods as "example_method example_params", not "example_method(example_params)" for one-liners.
|
15
|
+
* Write methods as "outer_method inner_method(example_params)" for nested method calls.
|
16
|
+
* Use &&/|| instead of and/or where appropriate.
|
17
|
+
* Define a = b instead of a=b.
|
18
|
+
* In the end, follow the conventions found in the source code.
|
19
|
+
* Use common sense, keep it simple.
|
20
|
+
|
21
|
+
# Contributing Code (awesome option)
|
22
|
+
|
23
|
+
1. Fork the repository (master branch).
|
24
|
+
2. Ensure there are no setup issues (see README for details).
|
25
|
+
3. Run the tests (see README for details).
|
26
|
+
4. Add tests for new functionality (refactoring and documentation changes can be excluded).
|
27
|
+
5. Ensure all tests pass.
|
28
|
+
6. Push your fork and submit a pull request.
|
29
|
+
|
30
|
+
# Contributing Issues (lazy, but sometimes necessary, option)
|
31
|
+
|
32
|
+
1. Submit an issue via the GitHub Issues tab (assuming one does not already exist).
|
33
|
+
2. Clearly describe the issue (including steps to reproduce).
|
34
|
+
3. Specify your enviroment setup (OS, browser, language, etc. with version info).
|
35
|
+
4. Provide a stack dump (if possible).
|
36
|
+
5. Explain any additional details that might help diagnose the problem quickly.
|
37
|
+
|
38
|
+
# Feedback
|
39
|
+
|
40
|
+
Expect a response with one to three business days (normally responses are faster than mentioned).
|
41
|
+
Changes, alternatives, and/or improvements might be suggested upon review.
|
42
|
+
|
43
|
+
# Resources
|
44
|
+
|
45
|
+
* [GitHub Documentation](http://help.github.com)
|
46
|
+
* [GitHub Pull Request Documentation](http://help.github.com/send-pull-requests)
|
@@ -1,2 +1,2 @@
|
|
1
|
-
source
|
1
|
+
source "https://rubygems.org"
|
2
2
|
gemspec
|
@@ -1,7 +1,11 @@
|
|
1
1
|
= Overview
|
2
2
|
|
3
|
+
{<img src="https://badge.fury.io/rb/<%= config[:gem_name] %>.png" alt="Gem Version" />}[http://badge.fury.io/rb/<%= config[:gem_name] %>]
|
4
|
+
<%- if config[:code_climate] -%>
|
5
|
+
{<img src="https://codeclimate.com/github/<%= config[:github_user] %>/<%= config[:gem_name] %>.png" alt="Code Climate GPA" />}[https://codeclimate.com/github/<%= config[:github_user] %>/<%= config[:gem_name] %>]
|
6
|
+
<%- end -%>
|
3
7
|
<%- if config[:travis] -%>
|
4
|
-
{<img src="https://secure.travis-ci.org/<%= config[:github_user] %>/<%= config[:gem_name] %>.png" />}[http://travis-ci.org/<%= config[:github_user] %>/<%= config[:gem_name] %>]
|
8
|
+
{<img src="https://secure.travis-ci.org/<%= config[:github_user] %>/<%= config[:gem_name] %>.png" alt="Travis CI Status" />}[http://travis-ci.org/<%= config[:github_user] %>/<%= config[:gem_name] %>]
|
5
9
|
<%- end -%>
|
6
10
|
|
7
11
|
= Features
|
@@ -38,7 +42,7 @@ To test, do the following:
|
|
38
42
|
|
39
43
|
= Contributions
|
40
44
|
|
41
|
-
|
45
|
+
Read CONTRIBUTING for details.
|
42
46
|
|
43
47
|
= Credits
|
44
48
|
|
@@ -27,12 +27,23 @@ Gem::Specification.new do |s|
|
|
27
27
|
<%- if config[:travis] -%>
|
28
28
|
s.add_development_dependency "rake"
|
29
29
|
<%- end -%>
|
30
|
+
<%- if config[:pry] -%>
|
31
|
+
s.add_development_dependency "pry"
|
32
|
+
s.add_development_dependency "pry-nav"
|
33
|
+
s.add_development_dependency "pry-stack_explorer"
|
34
|
+
s.add_development_dependency "pry-vterm_aliases"
|
35
|
+
<%- end -%>
|
30
36
|
<%- if config[:rspec] -%>
|
31
37
|
<%- rspec_gem = config[:rails] ? "rspec-rails" : "rspec" -%>
|
32
38
|
s.add_development_dependency "<%= rspec_gem %>"
|
33
39
|
<%- end -%>
|
34
40
|
<%- if config[:bin] -%>
|
35
|
-
|
41
|
+
s.add_development_dependency "aruba"
|
42
|
+
<%- end -%>
|
43
|
+
<%- if config[:guard] -%>
|
44
|
+
s.add_development_dependency "rb-fsevent" # Guard file events for OSX.
|
45
|
+
s.add_development_dependency "rb-inotify" # Guard file events for Linux.
|
46
|
+
s.add_development_dependency "guard-rspec"
|
36
47
|
<%- end -%>
|
37
48
|
|
38
49
|
s.files = Dir["lib/**/*", "vendor/**/*"]
|
data/lib/gemsmith/version.rb
CHANGED
metadata
CHANGED
@@ -1,97 +1,170 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemsmith
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 2.0.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Brooke Kuhlmann
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2013-03-17 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: thor
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: '0.
|
19
|
+
version: '0.17'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
26
|
+
version: '0.17'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: thor_plus
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - ~>
|
36
32
|
- !ruby/object:Gem::Version
|
37
|
-
version: '0
|
33
|
+
version: '1.0'
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - ~>
|
44
39
|
- !ruby/object:Gem::Version
|
45
|
-
version: '0
|
40
|
+
version: '1.0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: rake
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - '>='
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry-nav
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: pry-stack_explorer
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: pry-vterm_aliases
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '>='
|
60
109
|
- !ruby/object:Gem::Version
|
61
110
|
version: '0'
|
62
111
|
- !ruby/object:Gem::Dependency
|
63
112
|
name: rspec
|
64
113
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
114
|
requirements:
|
67
|
-
- -
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '>='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rb-fsevent
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rb-inotify
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '>='
|
68
144
|
- !ruby/object:Gem::Version
|
69
145
|
version: '0'
|
70
146
|
type: :development
|
71
147
|
prerelease: false
|
72
148
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
149
|
requirements:
|
75
|
-
- -
|
150
|
+
- - '>='
|
76
151
|
- !ruby/object:Gem::Version
|
77
152
|
version: '0'
|
78
153
|
- !ruby/object:Gem::Dependency
|
79
|
-
name:
|
154
|
+
name: guard-rspec
|
80
155
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
156
|
requirements:
|
83
|
-
- -
|
157
|
+
- - '>='
|
84
158
|
- !ruby/object:Gem::Version
|
85
159
|
version: '0'
|
86
160
|
type: :development
|
87
161
|
prerelease: false
|
88
162
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
163
|
requirements:
|
91
|
-
- -
|
164
|
+
- - '>='
|
92
165
|
- !ruby/object:Gem::Version
|
93
166
|
version: '0'
|
94
|
-
description:
|
167
|
+
description: 'Ruby gem skeleton generation for the professional gemsmith. Includes
|
95
168
|
custom settings, binary, Ruby on Rails, and RSpec support. '
|
96
169
|
email: brooke@redalchemist.com
|
97
170
|
executables:
|
@@ -104,13 +177,11 @@ extra_rdoc_files:
|
|
104
177
|
files:
|
105
178
|
- lib/gemsmith/cli.rb
|
106
179
|
- lib/gemsmith/kit.rb
|
107
|
-
- lib/gemsmith/templates/CHANGELOG.rdoc.tmp
|
108
|
-
- lib/gemsmith/templates/Gemfile.tmp
|
109
|
-
- lib/gemsmith/templates/LICENSE.rdoc.tmp
|
110
|
-
- lib/gemsmith/templates/README.rdoc.tmp
|
111
|
-
- lib/gemsmith/templates/Rakefile.tmp
|
112
180
|
- lib/gemsmith/templates/bin/gem.tmp
|
181
|
+
- lib/gemsmith/templates/CHANGELOG.rdoc.tmp
|
182
|
+
- lib/gemsmith/templates/CONTRIBUTING.md.tmp
|
113
183
|
- lib/gemsmith/templates/gem.gemspec.tmp
|
184
|
+
- lib/gemsmith/templates/Gemfile.tmp
|
114
185
|
- lib/gemsmith/templates/gemfiles/rails-3.0.x.gemfile.tmp
|
115
186
|
- lib/gemsmith/templates/gemfiles/rails-3.1.x.gemfile.tmp
|
116
187
|
- lib/gemsmith/templates/gemfiles/rails-3.2.x.gemfile.tmp
|
@@ -123,10 +194,13 @@ files:
|
|
123
194
|
- lib/gemsmith/templates/lib/gem/cli.rb.tmp
|
124
195
|
- lib/gemsmith/templates/lib/gem/version.rb.tmp
|
125
196
|
- lib/gemsmith/templates/lib/gem.rb.tmp
|
126
|
-
- lib/gemsmith/templates/lib/generators/gem/install/USAGE.tmp
|
127
197
|
- lib/gemsmith/templates/lib/generators/gem/install/install_generator.rb.tmp
|
128
|
-
- lib/gemsmith/templates/lib/generators/gem/
|
198
|
+
- lib/gemsmith/templates/lib/generators/gem/install/USAGE.tmp
|
129
199
|
- lib/gemsmith/templates/lib/generators/gem/upgrade/upgrade_generator.rb.tmp
|
200
|
+
- lib/gemsmith/templates/lib/generators/gem/upgrade/USAGE.tmp
|
201
|
+
- lib/gemsmith/templates/LICENSE.rdoc.tmp
|
202
|
+
- lib/gemsmith/templates/Rakefile.tmp
|
203
|
+
- lib/gemsmith/templates/README.rdoc.tmp
|
130
204
|
- lib/gemsmith/templates/rspec.tmp
|
131
205
|
- lib/gemsmith/templates/spec/gem_spec.rb.tmp
|
132
206
|
- lib/gemsmith/templates/spec/spec_helper.rb.tmp
|
@@ -140,26 +214,25 @@ files:
|
|
140
214
|
homepage: http://www.redalchemist.com
|
141
215
|
licenses:
|
142
216
|
- MIT
|
143
|
-
|
217
|
+
metadata: {}
|
218
|
+
post_install_message:
|
144
219
|
rdoc_options: []
|
145
220
|
require_paths:
|
146
221
|
- lib
|
147
222
|
required_ruby_version: !ruby/object:Gem::Requirement
|
148
|
-
none: false
|
149
223
|
requirements:
|
150
224
|
- - ~>
|
151
225
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
226
|
+
version: 2.0.0
|
153
227
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
|
-
none: false
|
155
228
|
requirements:
|
156
|
-
- -
|
229
|
+
- - '>='
|
157
230
|
- !ruby/object:Gem::Version
|
158
231
|
version: '0'
|
159
232
|
requirements: []
|
160
233
|
rubyforge_project:
|
161
|
-
rubygems_version:
|
234
|
+
rubygems_version: 2.0.0
|
162
235
|
signing_key:
|
163
|
-
specification_version:
|
236
|
+
specification_version: 4
|
164
237
|
summary: Ruby gem skeleton generation for the professional gemsmith.
|
165
238
|
test_files: []
|