gemsmith 5.0.0 → 5.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 20f24c4b3a47e59d46c38f625d1e1348da14b8e6
4
- data.tar.gz: a18387718db5ff5fb2122a6e9f201b9fc8243a77
3
+ metadata.gz: 1e8b2bf427994da9fe641a5244a7447b0b9b32f2
4
+ data.tar.gz: b9ff8aac39618f74c59af745038a245c31dc7823
5
5
  SHA512:
6
- metadata.gz: 618afb656d11ecec14b61a20664fa4112aabb08b6a7adf199fdd930e7637cec4591a7d024c281de65dbece635dd09a808248b42d794cc09d9441d9c676c2f110
7
- data.tar.gz: 67154aad2d2caed78d29e2fb563fe317df422253b8c82af861e207d231d1f07d236d72e0b1231e7d7b6354af31410bb964adf994151638494b771f3da5f80912
6
+ metadata.gz: d1378624d3efd9f85077846974cb20b05b5ffcc290ad74f7da571a8488bf28f80cf16d1fbe398ad7f2b194d8b26c3070b973da7f24e2fc56319d2dc80cc73ed5
7
+ data.tar.gz: 5b1e1807ee0e45cfde515a7054f82dd668e917299d3cdb064e2fd98bd658cd332579a8357be07e0368b55899e481f3a6047d6c14effcf0155461618e1b06c6c9
Binary file
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -29,9 +29,7 @@ Gemsmith allows you to easily craft new gems via the command line with custom se
29
29
  # Requirements
30
30
 
31
31
  0. A UNIX-based system.
32
- 0. Any of the following Ruby VMs:
33
- - [MRI 2.x.x](http://www.ruby-lang.org)
34
- - [JRuby 1.x.x](http://jruby.org)
32
+ 0. [MRI 2.x.x](http://www.ruby-lang.org).
35
33
  0. [RubyGems](http://rubygems.org).
36
34
  0. [Bundler](https://github.com/carlhuda/bundler).
37
35
 
@@ -170,13 +168,14 @@ Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
170
168
  - Minor (x.Y.z) - Incremented for new, backwards compatible public API enhancements and/or bug fixes.
171
169
  - Major (X.y.z) - Incremented for any backwards incompatible public API changes.
172
170
 
173
- # Contributions
171
+ # Code of Conduct
174
172
 
175
- Read [CONTRIBUTING](CONTRIBUTING.md) for details.
173
+ Please note that this project is released with a [CODE OF CONDUCT](CODE_OF_CONDUCT.md). By participating in this project
174
+ you agree to abide by its terms.
176
175
 
177
- # Credits
176
+ # Contributions
178
177
 
179
- Developed by [Brooke Kuhlmann](https://www.alchemists.io) at [Alchemists](https://www.alchemists.io).
178
+ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
180
179
 
181
180
  # License
182
181
 
@@ -186,3 +185,7 @@ Read the [LICENSE](LICENSE.md) for details.
186
185
  # History
187
186
 
188
187
  Read the [CHANGELOG](CHANGELOG.md) for details.
188
+
189
+ # Credits
190
+
191
+ Developed by [Brooke Kuhlmann](https://www.alchemists.io) at [Alchemists](https://www.alchemists.io).
@@ -2,4 +2,7 @@
2
2
 
3
3
  require "gemsmith"
4
4
  require "gemsmith/cli"
5
+ require "gemsmith/identity"
6
+
7
+ Process.setproctitle Gemsmith::Identity.label_version
5
8
  Gemsmith::CLI.start
@@ -1,2 +1,2 @@
1
- require "gemsmith/version"
1
+ require "gemsmith/identity"
2
2
  require "gemsmith/kit"
@@ -84,7 +84,7 @@ module Gemsmith
84
84
  desc "-v, [--version]", "Show version."
85
85
  map %w(-v --version) => :version
86
86
  def version
87
- say "Gemsmith " + VERSION
87
+ say Gemsmith::Identity.label_version
88
88
  end
89
89
 
90
90
  desc "-h, [--help=HELP]", "Show this message or get help for a command."
@@ -87,7 +87,7 @@ module Gemsmith
87
87
  end
88
88
 
89
89
  def ruby_version
90
- @settings[:ruby_version] || "2.2.0"
90
+ @settings[:ruby_version] || "2.2.2"
91
91
  end
92
92
 
93
93
  def rails_version
@@ -0,0 +1,19 @@
1
+ module Gemsmith
2
+ module Identity
3
+ def self.name
4
+ "gemsmith"
5
+ end
6
+
7
+ def self.label
8
+ "Gemsmith"
9
+ end
10
+
11
+ def self.version
12
+ "5.1.0"
13
+ end
14
+
15
+ def self.label_version
16
+ [label, version].join " "
17
+ end
18
+ end
19
+ end
@@ -2,7 +2,6 @@ module Gemsmith
2
2
  module Skeletons
3
3
  class RspecSkeleton < BaseSkeleton
4
4
  def create_files
5
- template "%gem_name%/.rspec.tt", template_options
6
5
  template "#{rspec_root}/spec_helper.rb.tt", template_options
7
6
  template "#{rspec_root}/%gem_name%_spec.rb.tt", template_options
8
7
  template "#{rspec_root}/support/kit/default_config.rb.tt", template_options
@@ -1,9 +1,9 @@
1
1
  $LOAD_PATH.push File.expand_path("../lib", __FILE__)
2
- require "<%=config[:gem_name]%>/version"
2
+ require "<%=config[:gem_name]%>/identity"
3
3
 
4
4
  Gem::Specification.new do |spec|
5
- spec.name = "<%= config[:gem_name] %>"
6
- spec.version = <%= config[:gem_class] %>::VERSION
5
+ spec.name = <%= config[:gem_name] %>::Identity.name
6
+ spec.version = <%= config[:gem_class] %>::Identity.version
7
7
  spec.platform = <%= config[:gem_platform] %>
8
8
  spec.authors = ["<%= config[:author_name] %>"]
9
9
  spec.email = ["<%= config[:author_email] %>"]
@@ -22,18 +22,6 @@ Gem::Specification.new do |spec|
22
22
  end
23
23
  <%- end -%>
24
24
 
25
- <%- if config[:pry] -%>
26
- case Gem.ruby_engine
27
- when "ruby"
28
- spec.add_development_dependency "pry-byebug"
29
- spec.add_development_dependency "pry-stack_explorer"
30
- when "jruby"
31
- spec.add_development_dependency "pry-nav"
32
- else
33
- raise RuntimeError.new("Unsupported Ruby Engine!")
34
- end
35
- <%- end -%>
36
-
37
25
  spec.required_ruby_version = "~> <%= config[:ruby_version] %>"
38
26
  <%- if config[:bin] -%>
39
27
  spec.add_dependency "thor"
@@ -47,6 +35,8 @@ Gem::Specification.new do |spec|
47
35
  <%- end -%>
48
36
  <%- if config[:pry] -%>
49
37
  spec.add_development_dependency "pry"
38
+ spec.add_development_dependency "pry-byebug"
39
+ spec.add_development_dependency "pry-stack_explorer"
50
40
  spec.add_development_dependency "pry-remote"
51
41
  spec.add_development_dependency "pry-rescue"
52
42
  <%- end -%>
@@ -1,11 +1,7 @@
1
1
  language: ruby
2
- env:
3
- global:
4
- - JRUBY_OPTS=--2.0
5
2
  rvm:
6
3
  - 2.0.0
7
4
  - 2.1.0
8
- - jruby
9
5
  <%- if config[:rails] -%>
10
6
  gemfile:
11
7
  - gemfiles/rails-4.1.x.gemfile
@@ -58,13 +58,14 @@ Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
58
58
  - Minor (x.Y.z) - Incremented for new, backwards compatible public API enhancements and/or bug fixes.
59
59
  - Major (X.y.z) - Incremented for any backwards incompatible public API changes.
60
60
 
61
- # Contributions
61
+ # Code of Conduct
62
62
 
63
- Read [CONTRIBUTING](CONTRIBUTING.md) for details.
63
+ Please note that this project is released with a [CODE OF CONDUCT](CODE_OF_CONDUCT.md). By participating in this project
64
+ you agree to abide by its terms.
64
65
 
65
- # Credits
66
+ # Contributions
66
67
 
67
- Developed by [<%= config[:author_name] %>](<%= config[:author_url] %>) at [<%= config[:company_name] %>](<%= config[:company_url] %>).
68
+ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
68
69
 
69
70
  # License
70
71
 
@@ -75,3 +76,7 @@ Read the [LICENSE](LICENSE.md) for details.
75
76
 
76
77
  Read the [CHANGELOG](CHANGELOG.md) for details.
77
78
  Built with [Gemsmith](https://github.com/bkuhlmann/gemsmith).
79
+
80
+ # Credits
81
+
82
+ Developed by [<%= config[:author_name] %>](<%= config[:author_url] %>) at [<%= config[:company_name] %>](<%= config[:company_url] %>).
@@ -2,4 +2,7 @@
2
2
 
3
3
  require "<%= config[:gem_name] %>"
4
4
  require "<%= config[:gem_name] %>/cli"
5
+ require "<%= config[:gem_name] %>/identity"
6
+
7
+ Process.setproctitle <%= config[:gem_class] %>::Identity.label_version
5
8
  <%= config[:gem_class] %>::CLI.start
@@ -1,4 +1,4 @@
1
- require "<%= config[:gem_name] %>/version"
1
+ require "<%= config[:gem_name] %>/identity"
2
2
  <%- if config[:rails] -%>
3
3
  require "<%= config[:gem_name] %>/engine"
4
4
  <%- end -%>
@@ -16,7 +16,7 @@ module <%= config[:gem_class] %>
16
16
  desc "-v, [--version]", "Show version."
17
17
  map %w(-v --version) => :version
18
18
  def version
19
- say "<%= config[:gem_class] %> " + VERSION
19
+ say <%= config[:gem_class] %>::Identity.label_version
20
20
  end
21
21
 
22
22
  desc "-h, [--help=HELP]", "Show this message or get help for a command."
@@ -0,0 +1,19 @@
1
+ module <%= config[:gem_class] %>
2
+ module Identity
3
+ def self.name
4
+ "<%= config[:gem_name] %>"
5
+ end
6
+
7
+ def self.label
8
+ "<%= config[:gem_class] %>"
9
+ end
10
+
11
+ def self.version
12
+ "0.1.0"
13
+ end
14
+
15
+ def self.label_version
16
+ [label, version].join " "
17
+ end
18
+ end
19
+ end
@@ -8,20 +8,12 @@ end
8
8
  require "<%= config[:gem_name] %>"
9
9
  <%- if config[:pry] -%>
10
10
  require "pry"
11
+ require "pry-byebug"
12
+ require "pry-stack_explorer"
11
13
  require "pry-remote"
12
14
  require "pry-rescue"
13
15
  <%- end -%>
14
16
 
15
- <%- if config[:pry] -%>
16
- case Gem.ruby_engine
17
- when "ruby"
18
- require "pry-byebug"
19
- require "pry-stack_explorer"
20
- when "jruby"
21
- require "pry-nav"
22
- end
23
- <%- end -%>
24
-
25
17
  Dir[File.join(File.dirname(__FILE__), "support/kit/**/*.rb")].each { |file| require file }
26
18
 
27
19
  # Uncomment to add a custom configuration. For the default configuration, see the "support/kit" folder.
@@ -1,7 +1,8 @@
1
1
  RSpec.configure do |config|
2
- config.run_all_when_everything_filtered = true
3
- config.filter_run focus: true
4
2
  config.order = "random"
3
+ config.filter_run focus: true
4
+ config.run_all_when_everything_filtered = true
5
+ config.example_status_persistence_file_path = "./tmp/rspec/examples.txt"
5
6
 
6
7
  config.mock_with :rspec do |mocks|
7
8
  mocks.verify_partial_doubles = true
@@ -1,12 +1,16 @@
1
1
  require "rspec/core/shared_context"
2
2
 
3
- module RSpecSupportKitTempDirContext
4
- extend RSpec::Core::SharedContext
5
- let(:temp_dir) { File.expand_path "../../../../tmp/rspec", __FILE__ }
3
+ module RSpec
4
+ module Kit
5
+ module TempDirContext
6
+ extend RSpec::Core::SharedContext
7
+ let(:temp_dir) { File.expand_path "../../../../tmp/rspec", __FILE__ }
8
+ end
9
+ end
6
10
  end
7
11
 
8
12
  RSpec.configure do |config|
9
- config.include RSpecSupportKitTempDirContext
13
+ config.include RSpec::Kit::TempDirContext
10
14
 
11
15
  config.before do |example|
12
16
  if example.metadata[:temp_dir]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemsmith
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -10,56 +10,28 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- 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
- 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
- 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
- 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
- k/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCaHJaV
18
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
31
+ xTfQ4k6fglKEgpnLAXiKdo2c8Ym+X4rIKFfedQ==
32
32
  -----END CERTIFICATE-----
33
- date: 2015-01-01 00:00:00.000000000 Z
33
+ date: 2015-07-05 00:00:00.000000000 Z
34
34
  dependencies:
35
- - !ruby/object:Gem::Dependency
36
- name: pry-byebug
37
- requirement: !ruby/object:Gem::Requirement
38
- requirements:
39
- - - ">="
40
- - !ruby/object:Gem::Version
41
- version: '0'
42
- type: :development
43
- prerelease: false
44
- version_requirements: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - ">="
47
- - !ruby/object:Gem::Version
48
- version: '0'
49
- - !ruby/object:Gem::Dependency
50
- name: pry-stack_explorer
51
- requirement: !ruby/object:Gem::Requirement
52
- requirements:
53
- - - ">="
54
- - !ruby/object:Gem::Version
55
- version: '0'
56
- type: :development
57
- prerelease: false
58
- version_requirements: !ruby/object:Gem::Requirement
59
- requirements:
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- version: '0'
63
35
  - !ruby/object:Gem::Dependency
64
36
  name: thor
65
37
  requirement: !ruby/object:Gem::Requirement
@@ -80,14 +52,14 @@ dependencies:
80
52
  requirements:
81
53
  - - "~>"
82
54
  - !ruby/object:Gem::Version
83
- version: '2.0'
55
+ version: '2.1'
84
56
  type: :runtime
85
57
  prerelease: false
86
58
  version_requirements: !ruby/object:Gem::Requirement
87
59
  requirements:
88
60
  - - "~>"
89
61
  - !ruby/object:Gem::Version
90
- version: '2.0'
62
+ version: '2.1'
91
63
  - !ruby/object:Gem::Dependency
92
64
  name: rails
93
65
  requirement: !ruby/object:Gem::Requirement
@@ -130,6 +102,34 @@ dependencies:
130
102
  - - ">="
131
103
  - !ruby/object:Gem::Version
132
104
  version: '0'
105
+ - !ruby/object:Gem::Dependency
106
+ name: pry-byebug
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ type: :development
113
+ prerelease: false
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ - !ruby/object:Gem::Dependency
120
+ name: pry-stack_explorer
121
+ requirement: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ type: :development
127
+ prerelease: false
128
+ version_requirements: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
133
  - !ruby/object:Gem::Dependency
134
134
  name: pry-remote
135
135
  requirement: !ruby/object:Gem::Requirement
@@ -260,6 +260,7 @@ files:
260
260
  - lib/gemsmith/cli.rb
261
261
  - lib/gemsmith/cli_helpers.rb
262
262
  - lib/gemsmith/cli_options.rb
263
+ - lib/gemsmith/identity.rb
263
264
  - lib/gemsmith/kit.rb
264
265
  - lib/gemsmith/skeletons/base_skeleton.rb
265
266
  - lib/gemsmith/skeletons/cli_skeleton.rb
@@ -273,7 +274,6 @@ files:
273
274
  - lib/gemsmith/templates/%gem_name%/%gem_name%.gemspec.tt
274
275
  - lib/gemsmith/templates/%gem_name%/.coveralls.yml.tt
275
276
  - lib/gemsmith/templates/%gem_name%/.gitignore.tt
276
- - lib/gemsmith/templates/%gem_name%/.rspec.tt
277
277
  - lib/gemsmith/templates/%gem_name%/.ruby-version.tt
278
278
  - lib/gemsmith/templates/%gem_name%/.travis.yml.tt
279
279
  - lib/gemsmith/templates/%gem_name%/CHANGELOG.md.tt
@@ -287,7 +287,7 @@ files:
287
287
  - lib/gemsmith/templates/%gem_name%/gemfiles/rails-4.1.x.gemfile.tt
288
288
  - lib/gemsmith/templates/%gem_name%/lib/%gem_name%.rb.tt
289
289
  - lib/gemsmith/templates/%gem_name%/lib/%gem_name%/cli.rb.tt
290
- - lib/gemsmith/templates/%gem_name%/lib/%gem_name%/version.rb.tt
290
+ - lib/gemsmith/templates/%gem_name%/lib/%gem_name%/identity.rb.tt
291
291
  - lib/gemsmith/templates/%gem_name%/lib/generators/%gem_name%/install/USAGE.tt
292
292
  - lib/gemsmith/templates/%gem_name%/lib/generators/%gem_name%/install/install_generator.rb.tt
293
293
  - lib/gemsmith/templates/%gem_name%/lib/generators/%gem_name%/upgrade/USAGE.tt
@@ -295,11 +295,9 @@ files:
295
295
  - lib/gemsmith/templates/%gem_name%/spec/%gem_name%_spec.rb.tt
296
296
  - lib/gemsmith/templates/%gem_name%/spec/spec_helper.rb.tt
297
297
  - lib/gemsmith/templates/%gem_name%/spec/support/kit/default_config.rb.tt
298
- - lib/gemsmith/templates/%gem_name%/spec/support/kit/garbage_collection.rb.tt
299
298
  - lib/gemsmith/templates/%gem_name%/spec/support/kit/stderr.rb.tt
300
299
  - lib/gemsmith/templates/%gem_name%/spec/support/kit/stdout.rb.tt
301
300
  - lib/gemsmith/templates/%gem_name%/spec/support/kit/temp_dir.rb.tt
302
- - lib/gemsmith/version.rb
303
301
  homepage: https://github.com/bkuhlmann/gemsmith
304
302
  licenses:
305
303
  - MIT
@@ -320,7 +318,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
320
318
  version: '0'
321
319
  requirements: []
322
320
  rubyforge_project:
323
- rubygems_version: 2.4.5
321
+ rubygems_version: 2.4.8
324
322
  signing_key:
325
323
  specification_version: 4
326
324
  summary: Ruby gem skeleton generation for the professional gemsmith.
metadata.gz.sig CHANGED
Binary file
@@ -1,2 +0,0 @@
1
- --color
2
- --format documentation
@@ -1,3 +0,0 @@
1
- module <%= config[:gem_class] %>
2
- VERSION = "0.1.0"
3
- end
@@ -1,4 +0,0 @@
1
- RSpec.configure do |config|
2
- config.before(:suite) { GC.disable }
3
- config.after(:suite) { GC.enable }
4
- end
@@ -1,3 +0,0 @@
1
- module Gemsmith
2
- VERSION = "5.0.0"
3
- end