smartystreets_ruby_sdk 4.1.3 → 4.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.
- data/Makefile +2 -3
- data/lib/smartystreets_ruby_sdk/version.rb +1 -1
- metadata +1 -1
data/Makefile
CHANGED
@@ -5,16 +5,15 @@ tests:
|
|
5
5
|
|
6
6
|
publish-patch:
|
7
7
|
@python tag.py patch
|
8
|
-
git describe
|
9
8
|
gem build smartystreets_ruby_sdk.gemspec
|
10
9
|
gem push smartystreets_ruby_sdk-`git describe`.gem
|
11
10
|
|
12
11
|
publish-minor:
|
13
12
|
@python tag.py minor
|
14
13
|
gem build smartystreets_ruby_sdk.gemspec
|
15
|
-
gem push smartystreets_ruby_sdk
|
14
|
+
gem push smartystreets_ruby_sdk-`git describe`.gem
|
16
15
|
|
17
16
|
publish-major:
|
18
17
|
@python tag.py major
|
19
18
|
gem build smartystreets_ruby_sdk.gemspec
|
20
|
-
gem push smartystreets_ruby_sdk
|
19
|
+
gem push smartystreets_ruby_sdk-`git describe`.gem
|