gemsmith 7.1.0 → 7.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 556fb0c1bd299bf37ec7754287a48c73233f9c2b
4
- data.tar.gz: 75e7626140ef9631cced124809bd0519f0928a7d
3
+ metadata.gz: 662e814586c4f37d3a10ff89ae864438cf65210d
4
+ data.tar.gz: 8d9b0b9e1555391015ad315566ed829d18bdf922
5
5
  SHA512:
6
- metadata.gz: a1d8852be12c69bdc9470c7cfd2363ba9e25581a03d2b7bf78b33449dc74c47fe4d918dbfa96e5e10b07d3cf6af013b71304f05025cbd77da79a8a432f7c7e8a
7
- data.tar.gz: cc94be6599eb3279f2de236083407a107b31f57599c02408e73a72ea0aa30b5796472b276d57979448ba2eb4f1626a5c1208951c0c9f97a5296aafb2b91d5518
6
+ metadata.gz: 41fcb36f790fed31f7950f9f14329ae720f51ba6bb4a61be2d93c12f4978b302b117cd7c8b02f45edaa1dc94fd972e1addbf246bdfef8db4e9f2cf51619d55cf
7
+ data.tar.gz: 6e8bdefb5e12f7e88e85661a3aaa81379871d8f181c118b7ae92403782fa63c2d3152a5caa737ea973e82de9b819cb33b3db31c1a3083c83052e64a4755afd71
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -14,6 +14,7 @@ A command line interface for smithing new Ruby gems.
14
14
  # Table of Contents
15
15
 
16
16
  - [Features](#features)
17
+ - [Screencast](#screencast)
17
18
  - [Requirements](#requirements)
18
19
  - [Setup](#setup)
19
20
  - [Usage](#usage)
@@ -45,6 +46,7 @@ A command line interface for smithing new Ruby gems.
45
46
  - Supports [Guard](https://github.com/guard/guard).
46
47
  - Supports [RSpec](http://rspec.info).
47
48
  - Supports [Rubocop](https://github.com/bbatsov/rubocop).
49
+ - Supports [GitHub](https://github.com).
48
50
  - Supports [Code Climate](https://codeclimate.com).
49
51
  - Supports [Gemnasium](https://gemnasium.com).
50
52
  - Supports [Travis CI](https://travis-ci.org).
@@ -54,6 +56,8 @@ A command line interface for smithing new Ruby gems.
54
56
  - Provides the ability to open the source code of any gem within your favorite editor.
55
57
  - Provides the ability to read the documentation of any gem within your default browser.
56
58
 
59
+ # Screencast
60
+
57
61
  [![asciicast](https://asciinema.org/a/30728.png)](https://asciinema.org/a/30728)
58
62
 
59
63
  # Requirements
@@ -155,6 +159,7 @@ For more gem creation options, type: `gemsmith --help --create`
155
159
  # Default: true
156
160
  -R, [--rubocop], [--no-rubocop] # Add Rubocop support.
157
161
  # Default: true
162
+ -H, [--git-hub], [--no-git-hub] # Add GitHub support.
158
163
  -C, [--code-climate], [--no-code-climate] # Add Code Climate support.
159
164
  # Default: true
160
165
  -G, [--gemnasium], [--no-gemnasium] # Add Gemnasium support.
data/lib/gemsmith/cli.rb CHANGED
@@ -13,6 +13,7 @@ require "gemsmith/skeletons/cli_skeleton"
13
13
  require "gemsmith/skeletons/documentation_skeleton"
14
14
  require "gemsmith/skeletons/gem_skeleton"
15
15
  require "gemsmith/skeletons/git_skeleton"
16
+ require "gemsmith/skeletons/git_hub_skeleton"
16
17
  require "gemsmith/skeletons/guard_skeleton"
17
18
  require "gemsmith/skeletons/pry_skeleton"
18
19
  require "gemsmith/skeletons/rails_skeleton"
@@ -52,6 +53,7 @@ module Gemsmith
52
53
  Skeletons::PrySkeleton,
53
54
  Skeletons::TravisSkeleton,
54
55
  Skeletons::BundlerSkeleton,
56
+ Skeletons::GitHubSkeleton,
55
57
  Skeletons::GitSkeleton
56
58
  ]
57
59
  end
@@ -72,6 +74,7 @@ module Gemsmith
72
74
  method_option :guard, aliases: "-g", desc: "Add Guard support.", type: :boolean, default: true
73
75
  method_option :rspec, aliases: "-s", desc: "Add RSpec support.", type: :boolean, default: true
74
76
  method_option :rubocop, aliases: "-R", desc: "Add Rubocop support.", type: :boolean, default: true
77
+ method_option :git_hub, aliases: "-H", desc: "Add GitHub support.", type: :boolean, default: false
75
78
  method_option :code_climate, aliases: "-C", desc: "Add Code Climate support.", type: :boolean, default: true
76
79
  method_option :gemnasium, aliases: "-G", desc: "Add Gemnasium support.", type: :boolean, default: true
77
80
  method_option :travis, aliases: "-t", desc: "Add Travis CI support.", type: :boolean, default: true
@@ -7,8 +7,8 @@ module Gemsmith
7
7
  attr_writer :gem_platform, :gem_home_url, :gem_license, :gem_private_key, :gem_public_key, :author_name,
8
8
  :author_email, :author_url, :organization_name, :organization_email, :organization_url,
9
9
  :ruby_version, :rails_version, :create_cli, :create_rails, :create_security, :create_pry,
10
- :create_guard, :create_rspec, :create_rubocop, :create_code_climate, :create_gemnasium,
11
- :create_travis, :create_patreon, :github_user, :year
10
+ :create_guard, :create_rspec, :create_rubocop, :create_git_hub, :create_code_climate,
11
+ :create_gemnasium, :create_travis, :create_patreon, :github_user, :year
12
12
 
13
13
  def initialize gem_name: "unknown",
14
14
  gem_class: "Unknown",
@@ -94,6 +94,10 @@ module Gemsmith
94
94
  parse_boolean @create_rspec, :create, :rspec, true
95
95
  end
96
96
 
97
+ def create_git_hub?
98
+ parse_boolean @create_git_hub, :create, :git_hub, false
99
+ end
100
+
97
101
  def create_rubocop?
98
102
  parse_boolean @create_rubocop, :create, :rubocop, true
99
103
  end
@@ -156,6 +160,7 @@ module Gemsmith
156
160
  guard: create_guard?,
157
161
  rspec: create_rspec?,
158
162
  rubocop: create_rubocop?,
163
+ git_hub: create_git_hub?,
159
164
  code_climate: create_code_climate?,
160
165
  gemnasium: create_gemnasium?,
161
166
  travis: create_travis?,
@@ -12,7 +12,7 @@ module Gemsmith
12
12
  end
13
13
 
14
14
  def self.version
15
- "7.1.0"
15
+ "7.2.0"
16
16
  end
17
17
 
18
18
  def self.version_label
@@ -9,6 +9,7 @@ module Gemsmith
9
9
 
10
10
  cli.template "%gem_name%/bin/%gem_name%.tt", configuration.to_h
11
11
  cli.template "%gem_name%/lib/%gem_name%/cli.rb.tt", configuration.to_h
12
+ cli.chmod "#{configuration.gem_name}/bin/#{configuration.gem_name}", 0755
12
13
  end
13
14
  end
14
15
  end
@@ -5,10 +5,12 @@ module Gemsmith
5
5
  # Configures default gem support.
6
6
  class GemSkeleton < BaseSkeleton
7
7
  def create
8
+ cli.template "%gem_name%/bin/setup.tt", configuration.to_h
8
9
  cli.template "%gem_name%/Gemfile.tt", configuration.to_h
9
10
  cli.template "%gem_name%/%gem_name%.gemspec.tt", configuration.to_h
10
11
  cli.template "#{lib_root}/%gem_name%.rb.tt", configuration.to_h
11
12
  cli.template "#{lib_root}/%gem_name%/identity.rb.tt", configuration.to_h
13
+ cli.chmod "#{configuration.gem_name}/bin/setup", 0755
12
14
  end
13
15
  end
14
16
  end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Gemsmith
4
+ module Skeletons
5
+ # Configures GitHub support.
6
+ class GitHubSkeleton < BaseSkeleton
7
+ def create
8
+ return unless configuration.create_git_hub?
9
+ cli.template "%gem_name%/.github/ISSUE_TEMPLATE.md.tt", configuration.to_h
10
+ cli.template "%gem_name%/.github/PULL_REQUEST_TEMPLATE.md.tt", configuration.to_h
11
+ end
12
+ end
13
+ end
14
+ end
@@ -20,14 +20,15 @@ Gem::Specification.new do |spec|
20
20
  <%- end -%>
21
21
 
22
22
  <%- if config.dig(:create, :cli) -%>
23
- spec.add_dependency "thor"
24
- spec.add_dependency "thor_plus"
23
+ spec.add_dependency "thor", "~> 0.19"
24
+ spec.add_dependency "thor_plus", "~> 3.0"
25
25
  <%- end -%>
26
26
  <%- if config.dig(:create, :rails) -%>
27
27
  spec.add_dependency "rails", "~> <%= config.dig(:versions, :rails) %>"
28
28
  <%- end -%>
29
- spec.add_development_dependency "rake"
30
- spec.add_development_dependency "gemsmith"
29
+ spec.add_development_dependency "bundler", "~> 1.11"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ spec.add_development_dependency "gemsmith", "~> <%= Gemsmith::Identity.version[/\d{1}\.\d{1}/] %>"
31
32
  <%- if config.dig(:create, :pry) -%>
32
33
  spec.add_development_dependency "pry"
33
34
  spec.add_development_dependency "pry-byebug"
@@ -37,7 +38,7 @@ Gem::Specification.new do |spec|
37
38
  spec.add_development_dependency "pry-stack_explorer"
38
39
  <%- end -%>
39
40
  <%- if config.dig(:create, :rspec) -%>
40
- spec.add_development_dependency "<%= config.dig(:create, :rails) ? "rspec-rails" : "rspec" %>"
41
+ spec.add_development_dependency "<%= config.dig(:create, :rails) ? "rspec-rails" : "rspec" %>", "~> 3.4"
41
42
  <%- end -%>
42
43
  <%- if config.dig(:create, :guard) -%>
43
44
  spec.add_development_dependency "rb-fsevent" # Guard file events for OSX.
@@ -46,7 +47,7 @@ Gem::Specification.new do |spec|
46
47
  spec.add_development_dependency "terminal-notifier-guard"
47
48
  <%- end -%>
48
49
  <%- if config.dig(:create, :rubocop) -%>
49
- spec.add_development_dependency "rubocop"
50
+ spec.add_development_dependency "rubocop", "~> 0.37"
50
51
  <%- end -%>
51
52
  <%- if config.dig(:create, :code_climate) -%>
52
53
  spec.add_development_dependency "codeclimate-test-reporter"
@@ -0,0 +1,19 @@
1
+ ## Expected Behavior
2
+
3
+ <!-- Describe, in detail, the experienced behavior. -->
4
+
5
+ ## Actual Behavior
6
+
7
+ <!-- Describe, in detail, what should be the correct behavior. -->
8
+
9
+ ## Environment
10
+
11
+ <!-- What is your operating system, software version(s), and/or other details that might be helpful. -->
12
+
13
+ ## Steps to Recreate
14
+
15
+ 0.
16
+
17
+ ## Screenshots/Screencasts
18
+
19
+ <!-- Attach screenshots/screencasts that demo the behavior. -->
@@ -0,0 +1,15 @@
1
+ ## Overview
2
+
3
+ <!-- Why is this pull request important/necessary -->
4
+
5
+ ## Features
6
+
7
+ <!-- List the key features of this pull request as bullet points. -->
8
+
9
+ -
10
+
11
+ <!-- Optional. Uncomment to provide additional notes, links, concerns, caveats, etc. -->
12
+ <!-- ## Notes -->
13
+
14
+ <!-- Optional. Uncomment to provide image/video details. -->
15
+ <!-- ## Screenshots/Screencasts -->
@@ -1,10 +1,11 @@
1
1
  <%- if config.dig(:create, :rails) -%>
2
2
  AllCops:
3
- RunRailsCops: true
4
3
  Exclude:
5
4
  - "spec/dummy/**/*"
6
5
  - "bin/rails"
7
6
  - "vendor/**/*"
7
+ Rails:
8
+ Enabled: true
8
9
  <%- end -%>
9
10
  Style/CaseIndentation:
10
11
  IndentOneStep: true
@@ -15,6 +16,8 @@ Style/NumericLiterals:
15
16
  Style/PercentLiteralDelimiters:
16
17
  PreferredDelimiters:
17
18
  "%r": "()"
19
+ Style/SignalException:
20
+ EnforcedStyle: semantic
18
21
  Style/SingleLineBlockParams:
19
22
  Enabled: false
20
23
  Style/SpaceInsideHashLiteralBraces:
@@ -1,42 +1,61 @@
1
- # Contributor Code of Conduct
1
+ # Contributor Covenant Code of Conduct
2
2
 
3
- As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we
4
- pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation,
5
- submitting pull requests or patches, and other activities.
3
+ ## Our Pledge
6
4
 
7
- We are committed to making participation in this project a harassment-free experience for everyone, regardless of level
8
- of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size,
9
- race, ethnicity, age, religion, or nationality.
5
+ In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making
6
+ participation in our project and our community a harassment-free experience for everyone, regardless of age, body size,
7
+ disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race,
8
+ religion, or sexual identity and orientation.
9
+
10
+ ## Our Standards
11
+
12
+ Examples of behavior that contributes to creating a positive environment include:
13
+
14
+ * Using welcoming and inclusive language
15
+ * Being respectful of differing viewpoints and experiences
16
+ * Gracefully accepting constructive criticism
17
+ * Focusing on what is best for the community
18
+ * Showing empathy towards other community members
10
19
 
11
20
  Examples of unacceptable behavior by participants include:
12
21
 
13
- * The use of sexualized language or imagery
14
- * Personal attacks
15
- * Trolling or insulting/derogatory comments
22
+ * The use of sexualized language or imagery and unwelcome sexual attention or advances
23
+ * Trolling, insulting/derogatory comments, and personal or political attacks
16
24
  * Public or private harassment
17
- * Publishing other's private information, such as physical or electronic addresses, without explicit permission
18
- * Other unethical or unprofessional conduct
25
+ * Publishing others' private information, such as a physical or electronic address, without explicit permission
26
+ * Other conduct which could reasonably be considered inappropriate in a professional setting
27
+
28
+ ## Our Responsibilities
29
+
30
+ Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take
31
+ appropriate and fair corrective action in response to any instances of unacceptable behavior.
19
32
 
20
33
  Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits,
21
34
  issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any
22
35
  contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
23
36
 
24
- By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these
25
- principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of
26
- Conduct may be permanently removed from the project team.
37
+ ## Scope
38
+
39
+ This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the
40
+ project or its community. Examples of representing a project or community include using an official project e-mail
41
+ address, posting via an official social media account, or acting as an appointed representative at an online or offline
42
+ event. Representation of a project may be further defined and clarified by project maintainers.
43
+
44
+ ## Enforcement
27
45
 
28
- This code of conduct applies both within project spaces and in public spaces when an individual is representing the
29
- project or its community.
46
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at
47
+ [<%= config.dig :author, :email %>](mailto:<%= config.dig :author, :email %>). All complaints will be reviewed and
48
+ investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project
49
+ team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific
50
+ enforcement policies may be posted separately.
30
51
 
31
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer
32
- at [INSERT EMAIL ADDRESS]. All complaints will be reviewed and investigated and will result in a response that is deemed
33
- necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the
34
- reporter of an incident.
52
+ Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent
53
+ repercussions as determined by other members of the project's leadership.
35
54
 
55
+ ## Attribution
36
56
 
37
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
38
- version 1.3.0, available at
39
- [http://contributor-covenant.org/version/1/3/0/][version]
57
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
58
+ available at [http://contributor-covenant.org/version/1/4][version]
40
59
 
41
60
  [homepage]: http://contributor-covenant.org
42
- [version]: http://contributor-covenant.org/version/1/3/0/
61
+ [version]: http://contributor-covenant.org/version/1/4/
@@ -10,7 +10,7 @@ following details what you need to know in order to contribute.
10
10
  - Follow these [Git Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/git.md).
11
11
  - Follow these [Bash Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/languages/bash.md).
12
12
  - Follow these [CSS Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/languages/css.md).
13
- - Follow these [Ruby Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/languages/ruby.md).
13
+ - Follow these [Ruby Styles](https://github.com/bkuhlmann/style_guides/blob/master/programming/languages/ruby/ruby.md).
14
14
 
15
15
  # Contributing Code
16
16
 
@@ -31,5 +31,5 @@ following details what you need to know in order to contribute.
31
31
 
32
32
  # Feedback
33
33
 
34
- Expect a response with one to three business days (normally responses are faster than mentioned).
34
+ Expect a response within one to three business days.
35
35
  Changes, alternatives, and/or improvements might be suggested upon review.
File without changes
@@ -0,0 +1,8 @@
1
+ #! /bin/bash
2
+
3
+ set -o nounset # Exit, with error message, when attempting to use an undefined variable.
4
+ set -o errexit # Abort script at first error, when a command exits with non-zero status.
5
+ set -o pipefail # Return exit status of the last command in the pipe that returned a non-zero return value.
6
+ IFS=$'\n\t' # Defines newlines and tabs as delimiters for splitting words and iterating arrays.
7
+
8
+ bundle install
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: 7.1.0
4
+ version: 7.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -30,7 +30,7 @@ cert_chain:
30
30
  aSif+qBc6oHD7EQWPF5cZkzkIURuwNwPBngZGxIKaMAgRhjGFXzUMAaq++r59cS9
31
31
  xTfQ4k6fglKEgpnLAXiKdo2c8Ym+X4rIKFfedQ==
32
32
  -----END CERTIFICATE-----
33
- date: 2016-01-21 00:00:00.000000000 Z
33
+ date: 2016-02-20 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: thor
@@ -88,6 +88,20 @@ dependencies:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
90
  version: '2.0'
91
+ - !ruby/object:Gem::Dependency
92
+ name: bundler
93
+ requirement: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '1.11'
98
+ type: :development
99
+ prerelease: false
100
+ version_requirements: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '1.11'
91
105
  - !ruby/object:Gem::Dependency
92
106
  name: rake
93
107
  requirement: !ruby/object:Gem::Requirement
@@ -190,16 +204,16 @@ dependencies:
190
204
  name: rspec
191
205
  requirement: !ruby/object:Gem::Requirement
192
206
  requirements:
193
- - - ">="
207
+ - - "~>"
194
208
  - !ruby/object:Gem::Version
195
- version: '0'
209
+ version: '3.4'
196
210
  type: :development
197
211
  prerelease: false
198
212
  version_requirements: !ruby/object:Gem::Requirement
199
213
  requirements:
200
- - - ">="
214
+ - - "~>"
201
215
  - !ruby/object:Gem::Version
202
- version: '0'
216
+ version: '3.4'
203
217
  - !ruby/object:Gem::Dependency
204
218
  name: climate_control
205
219
  requirement: !ruby/object:Gem::Requirement
@@ -274,16 +288,16 @@ dependencies:
274
288
  name: rubocop
275
289
  requirement: !ruby/object:Gem::Requirement
276
290
  requirements:
277
- - - ">="
291
+ - - "~>"
278
292
  - !ruby/object:Gem::Version
279
- version: '0'
293
+ version: '0.37'
280
294
  type: :development
281
295
  prerelease: false
282
296
  version_requirements: !ruby/object:Gem::Requirement
283
297
  requirements:
284
- - - ">="
298
+ - - "~>"
285
299
  - !ruby/object:Gem::Version
286
- version: '0'
300
+ version: '0.37'
287
301
  - !ruby/object:Gem::Dependency
288
302
  name: codeclimate-test-reporter
289
303
  requirement: !ruby/object:Gem::Requirement
@@ -328,6 +342,7 @@ files:
328
342
  - lib/gemsmith/skeletons/cli_skeleton.rb
329
343
  - lib/gemsmith/skeletons/documentation_skeleton.rb
330
344
  - lib/gemsmith/skeletons/gem_skeleton.rb
345
+ - lib/gemsmith/skeletons/git_hub_skeleton.rb
331
346
  - lib/gemsmith/skeletons/git_skeleton.rb
332
347
  - lib/gemsmith/skeletons/guard_skeleton.rb
333
348
  - lib/gemsmith/skeletons/pry_skeleton.rb
@@ -338,6 +353,8 @@ files:
338
353
  - lib/gemsmith/skeletons/ruby_skeleton.rb
339
354
  - lib/gemsmith/skeletons/travis_skeleton.rb
340
355
  - lib/gemsmith/templates/%gem_name%/%gem_name%.gemspec.tt
356
+ - lib/gemsmith/templates/%gem_name%/.github/ISSUE_TEMPLATE.md.tt
357
+ - lib/gemsmith/templates/%gem_name%/.github/PULL_REQUEST_TEMPLATE.md.tt
341
358
  - lib/gemsmith/templates/%gem_name%/.gitignore.tt
342
359
  - lib/gemsmith/templates/%gem_name%/.rubocop.yml.tt
343
360
  - lib/gemsmith/templates/%gem_name%/.ruby-version.tt
@@ -351,6 +368,7 @@ files:
351
368
  - lib/gemsmith/templates/%gem_name%/README.md.tt
352
369
  - lib/gemsmith/templates/%gem_name%/Rakefile.tt
353
370
  - lib/gemsmith/templates/%gem_name%/bin/%gem_name%.tt
371
+ - lib/gemsmith/templates/%gem_name%/bin/setup.tt
354
372
  - lib/gemsmith/templates/%gem_name%/gemfiles/rails-%rails_version%.x.gemfile.tt
355
373
  - lib/gemsmith/templates/%gem_name%/lib/%gem_name%.rb.tt
356
374
  - lib/gemsmith/templates/%gem_name%/lib/%gem_name%/cli.rb.tt
@@ -393,7 +411,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
393
411
  version: '0'
394
412
  requirements: []
395
413
  rubyforge_project:
396
- rubygems_version: 2.5.1
414
+ rubygems_version: 2.5.2
397
415
  signing_key:
398
416
  specification_version: 4
399
417
  summary: A command line interface for smithing new Ruby gems.
metadata.gz.sig CHANGED
@@ -1,2 +1 @@
1
- �}Է�Z�>M�^��Cy�?|s �؏�PDi�8�4
2
- ��75}��-
1
+ 8�`[q7��%���4�$���1���� �j����L����fW �0����M��}��V�M��� ��{,�Cm~<by��W��r^�܇:ho7��