shopify_empty_gem 0.1.2 → 0.1.3
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
- data/Gemfile.lock +1 -1
- data/lib/shopify_empty_gem/version.rb +1 -1
- data/lib/snippets/release-gem-with-otp +6 -1
- data/shipit.rubygems_otp.yml +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2bce142be57a112d00bab97f3f62d12d19282074d2fc69ec39469e6e91757548
|
|
4
|
+
data.tar.gz: a791aabc66c5790aa9ee0256c1d61f949880dc6d77f4b5c390ef76cd5b5d1ffe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65613d19b09e686b12c54e0ca5be99c42bc6c6d42b5840e4ea2210eb3b4315b14c51f79685854a7a41831e73402786709476895aa3f2e15f62ee7cbdbc32d5f2
|
|
7
|
+
data.tar.gz: a39f9ee5a5d99f8c0505c1b39ff598045882fa6218140af02c429bc81e52d3ab12856a8717d04799d2a1b5f6a43c0494f55a047bf26c484703244642a36eb915
|
data/Gemfile.lock
CHANGED
|
@@ -88,10 +88,12 @@ module Poll
|
|
|
88
88
|
end
|
|
89
89
|
end
|
|
90
90
|
|
|
91
|
-
puts "Kicking off the release-gem-with-otp script!!"
|
|
91
|
+
puts "🚀 Kicking off the release-gem-with-otp script!!"
|
|
92
92
|
|
|
93
93
|
spec_path, temp_otp_code, *release_command = ARGV
|
|
94
94
|
|
|
95
|
+
puts "📝 The otp code is: #{temp_otp_code}"
|
|
96
|
+
|
|
95
97
|
spec = Gem::Specification.load(spec_path)
|
|
96
98
|
if RubygemsAPI.published?(spec.name, spec.version)
|
|
97
99
|
puts "#{spec.name} version #{spec.version} is already published."
|
|
@@ -126,6 +128,9 @@ else
|
|
|
126
128
|
#
|
|
127
129
|
# Since we've already tagged and built the gem with `bundle exec gem_push=no rake release`, the last step is to push the gem
|
|
128
130
|
# Instead of re-building and re-tagging the gem, we'll complete the last step of the `rake release` command => (gem push)
|
|
131
|
+
puts "💪 Preparing to release gem"
|
|
132
|
+
puts "🎉 Running 'bundle exec rake release' with otp code #{temp_otp_code}"
|
|
133
|
+
|
|
129
134
|
system(
|
|
130
135
|
{'GEM_HOST_OTP_CODE' => temp_otp_code.to_s},
|
|
131
136
|
'bundle',
|
data/shipit.rubygems_otp.yml
CHANGED