gemsmith 15.1.1 → 15.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
  SHA256:
3
- metadata.gz: 1f190e2e184c6e7bc0162db81fafa6e6b540f002a8ea8aaaa40f5e74962c79b9
4
- data.tar.gz: 24e012ab124c2ad7b2bd44d7924d3dba5dffd3f2ca101b9c0a2559fb52015294
3
+ metadata.gz: bd609475e2ebdbe1f9719f9f6965a3cd86bd41bea7cc1027dbb217f92ff2523d
4
+ data.tar.gz: a424145aba4522922f990f753c1b636f32cd032118c59549c081d12dc447b5f1
5
5
  SHA512:
6
- metadata.gz: b5888b48be409236bdc4a3bb4e0a4bf5ff9c0853e54ee89af15d555188dc34aac3668d8537ebc8a21de40c4da71a589eed43427e5a07bd75ffebf4157b94e02d
7
- data.tar.gz: 8f435efd7a8b247eb5d68577e0b55a8986603fbb394595e958dbfdce61632e376b84e9272ef7aaea57a5faba1ad02d487e5ed458bc48530de53bc89c57fc5e64
6
+ metadata.gz: a10ea720aa84f0419b16408df8c553a3833f1854d552e7ddb19f206416a955ad67995ec8c054d3f4ade9742ad3af41fc6c295435b6ee17a45c4414b04f8cce45
7
+ data.tar.gz: 9b240b161a12f1c38ac358b8e6b1669c3a7f63dc93fa8cd90517cef6d66835a3b87a057f9e4f53c80bec820882e95843b697d30a1a8cf1e9aa64fb18a1de28ae
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -7,7 +7,7 @@ module Gemsmith
7
7
  def run
8
8
  return unless configuration.dig :generate, :circle_ci
9
9
 
10
- template "%gem_name%/circle.yml.tt"
10
+ template "%gem_name%/.circleci/config.yml.tt"
11
11
  end
12
12
  end
13
13
  end
@@ -5,7 +5,7 @@ module Gemsmith
5
5
  module Identity
6
6
  NAME = "gemsmith"
7
7
  LABEL = "Gemsmith"
8
- VERSION = "15.1.1"
8
+ VERSION = "15.2.0"
9
9
  VERSION_LABEL = "#{LABEL} #{VERSION}"
10
10
  URL = "https://www.alchemists.io/projects/gemsmith"
11
11
  end
@@ -0,0 +1,31 @@
1
+ version: 2.1
2
+ jobs:
3
+ build:
4
+ working_directory: ~/project
5
+ docker:
6
+ - image: bkuhlmann/ruby:latest
7
+ steps:
8
+ - checkout
9
+
10
+ - restore_cache:
11
+ name: Bundler Restore
12
+ keys:
13
+ - gem-cache-{{.Branch}}-{{checksum "<%= config.dig(:gem, :name) %>.gemspec"}}
14
+ - gem-cache-
15
+
16
+ - run:
17
+ name: Bundler Install
18
+ command: |
19
+ gem update --system
20
+ bundle config set path "vendor/bundle"
21
+ bundle install
22
+
23
+ - save_cache:
24
+ name: Bundler Store
25
+ key: gem-cache-{{.Branch}}-{{checksum "<%= config.dig(:gem, :name) %>.gemspec"}}
26
+ paths:
27
+ - vendor/bundle
28
+
29
+ - run:
30
+ name: Build
31
+ command: bundle exec rake
@@ -13,7 +13,7 @@ group :code_quality do
13
13
  gem "reek", "~> 6.0"
14
14
  <%- end -%>
15
15
  <%- if config.dig(:generate, :rubocop) -%>
16
- gem "rubocop", "~> 1.5"
16
+ gem "rubocop", "~> 1.8"
17
17
  gem "rubocop-performance", "~> 1.8"
18
18
  gem "rubocop-rake", "~> 0.5"
19
19
  <%- end -%>
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: 15.1.1
4
+ version: 15.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -28,7 +28,7 @@ cert_chain:
28
28
  2XV8FRa7/JimI07sPLC13eLY3xd/aYTi85Z782KIA4j0G8XEEWAX0ouBhlXPocZv
29
29
  QWc=
30
30
  -----END CERTIFICATE-----
31
- date: 2021-01-04 00:00:00.000000000 Z
31
+ date: 2021-01-24 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: git_plus
@@ -92,14 +92,14 @@ dependencies:
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: '1.5'
95
+ version: '1.8'
96
96
  type: :runtime
97
97
  prerelease: false
98
98
  version_requirements: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
- version: '1.5'
102
+ version: '1.8'
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: runcom
105
105
  requirement: !ruby/object:Gem::Requirement
@@ -208,6 +208,7 @@ files:
208
208
  - lib/gemsmith/rake/setup.rb
209
209
  - lib/gemsmith/rake/tasks.rb
210
210
  - lib/gemsmith/templates/%gem_name%/%gem_name%.gemspec.tt
211
+ - lib/gemsmith/templates/%gem_name%/.circleci/config.yml.tt
211
212
  - lib/gemsmith/templates/%gem_name%/.github/ISSUE_TEMPLATE.md.tt
212
213
  - lib/gemsmith/templates/%gem_name%/.github/PULL_REQUEST_TEMPLATE.md.tt
213
214
  - lib/gemsmith/templates/%gem_name%/.gitignore.tt
@@ -225,7 +226,6 @@ files:
225
226
  - lib/gemsmith/templates/%gem_name%/bin/%gem_name%.tt
226
227
  - lib/gemsmith/templates/%gem_name%/bin/console.tt
227
228
  - lib/gemsmith/templates/%gem_name%/bin/setup.tt
228
- - lib/gemsmith/templates/%gem_name%/circle.yml.tt
229
229
  - lib/gemsmith/templates/%gem_name%/lib/%gem_path%.rb.tt
230
230
  - lib/gemsmith/templates/%gem_name%/lib/%gem_path%/cli.rb.tt
231
231
  - lib/gemsmith/templates/%gem_name%/lib/%gem_path%/engine.rb.tt
@@ -261,7 +261,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
261
261
  - !ruby/object:Gem::Version
262
262
  version: '0'
263
263
  requirements: []
264
- rubygems_version: 3.2.4
264
+ rubygems_version: 3.2.6
265
265
  signing_key:
266
266
  specification_version: 4
267
267
  summary: A command line interface for smithing Ruby gems.
metadata.gz.sig CHANGED
Binary file
@@ -1,64 +0,0 @@
1
- version: 2
2
- jobs:
3
- build:
4
- working_directory: ~/project
5
- docker:
6
- - image: circleci/ruby
7
- environment:
8
- BUNDLE_JOBS: 3
9
- BUNDLE_RETRY: 3
10
- BUNDLE_PATH: vendor/bundle
11
- EDITOR: vim
12
- RAILS_ENV: test
13
- steps:
14
- - checkout
15
-
16
- - run:
17
- name: Environment Setup
18
- command: |
19
- printf "%s\n" 'export CI_RUBY_VERSION=$(cat ".ruby-version" | tr -d "\n")' >> $BASH_ENV
20
-
21
- - type: cache-restore
22
- name: Ruby Restore
23
- key: ruby-{{checksum ".ruby-version"}}
24
-
25
- - run:
26
- name: Ruby Install
27
- command: |
28
- cd ..
29
- curl https://cache.ruby-lang.org/pub/ruby/${CI_RUBY_VERSION::-2}/ruby-$CI_RUBY_VERSION.tar.gz > ruby-$CI_RUBY_VERSION.tar.gz
30
- tar --extract --gzip --verbose --file ruby-$CI_RUBY_VERSION.tar.gz
31
- cd ruby-$CI_RUBY_VERSION
32
- ./configure
33
- make
34
- make update-gems
35
- make extract-gems
36
- sudo make install
37
-
38
- - type: cache-save
39
- name: Ruby Store
40
- key: ruby-{{checksum ".ruby-version"}}
41
- paths:
42
- - ../ruby-$CI_RUBY_VERSION
43
-
44
- - type: cache-restore
45
- name: Bundler Restore
46
- key: bundler-{{checksum "<%= config.dig(:gem, :name) %>.gemspec"}}
47
-
48
- - run:
49
- name: Bundler Install
50
- command: |
51
- gem update --system
52
- bundle config set path "vendor/bundle"
53
- bundle install
54
-
55
- - type: cache-save
56
- name: Bundler Store
57
- key: bundler-{{checksum "<%= config.dig(:gem, :name) %>.gemspec"}}
58
- paths:
59
- - vendor/bundle
60
-
61
- - run:
62
- name: Build
63
- command: |
64
- bundle exec rake