tworingtools 2.0.0 → 2.0.1
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/bin/clean-rc-tags +2 -2
- data/bin/release-podspec +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: c11e763730be0688eced48554d8d180761cedd6c99f66d28535492833caf6641
|
|
4
|
+
data.tar.gz: 2729c37706c364c29e83a982365e499a1b0be52e2e3e6b65d98f090487ac2f6c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e4b08aab3ba6d04d5def2f2c35a278a514191adcd949420e264e729ad33a2beea9a5f84de32947644040ce6395cc174ba62c7222385c347ba7fa35653d01791
|
|
7
|
+
data.tar.gz: 4968587b139468aa2c2d1d012e5cfbd6566482bb8653e0b720700f26033767be84d9db5f76afda29c0ae1a0b3f06cf9805f4f14a930c1465de39be873f7cb6f3
|
data/bin/clean-rc-tags
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
#! /usr/bin/env ruby
|
|
2
2
|
#
|
|
3
3
|
# Deletes any release candidate tags leftover after prerelease testing.
|
|
4
4
|
|
|
5
|
-
git tag --list | grep '\-RC[0-9]\+' | xargs -
|
|
5
|
+
`git tag --list | grep '\-RC[0-9]\+' | xargs -tI @ bash -c "git tag --delete @ && git push --delete origin @"`
|
data/bin/release-podspec
CHANGED
|
@@ -50,7 +50,7 @@ end
|
|
|
50
50
|
|
|
51
51
|
command = String.new
|
|
52
52
|
if options[:repo] != nil then
|
|
53
|
-
command = "rbenv exec bundle exec pod repo push #{options[:repo]} #
|
|
53
|
+
command = "rbenv exec bundle exec pod repo push #{options[:repo]} #{spec_lint_flags.join ' '}"
|
|
54
54
|
else
|
|
55
55
|
command = "rbenv exec bundle exec pod trunk push #{podspec}.podspec #{spec_lint_flags.join ' '}"
|
|
56
56
|
end
|