gemsmith 15.1.1 → 15.2.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/gemsmith/generators/circle_ci.rb +1 -1
- data/lib/gemsmith/identity.rb +1 -1
- data/lib/gemsmith/templates/%gem_name%/.circleci/config.yml.tt +31 -0
- data/lib/gemsmith/templates/%gem_name%/Gemfile.tt +1 -1
- metadata +6 -6
- metadata.gz.sig +0 -0
- data/lib/gemsmith/templates/%gem_name%/circle.yml.tt +0 -64
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd609475e2ebdbe1f9719f9f6965a3cd86bd41bea7cc1027dbb217f92ff2523d
|
|
4
|
+
data.tar.gz: a424145aba4522922f990f753c1b636f32cd032118c59549c081d12dc447b5f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a10ea720aa84f0419b16408df8c553a3833f1854d552e7ddb19f206416a955ad67995ec8c054d3f4ade9742ad3af41fc6c295435b6ee17a45c4414b04f8cce45
|
|
7
|
+
data.tar.gz: 9b240b161a12f1c38ac358b8e6b1669c3a7f63dc93fa8cd90517cef6d66835a3b87a057f9e4f53c80bec820882e95843b697d30a1a8cf1e9aa64fb18a1de28ae
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/lib/gemsmith/identity.rb
CHANGED
|
@@ -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
|
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.
|
|
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-
|
|
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.
|
|
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.
|
|
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.
|
|
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
|