cocoapods-submit 0.1.0 → 0.1.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/lib/pod/command/submit.rb +1 -1
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bfd703856d72be6f6cb95327b52fd4ec3ba8344b
|
|
4
|
+
data.tar.gz: 25cadb740f8bf202a432c1e6cc7a1091f6c565bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e62c29fc2265cbf8548141153ec42847635b632e1b8604e1f6cca4d6bc067453ebf03a8e920e0ece8c65e70a75682ab7f8a5d29bd147eeb869c5579154d4dc89
|
|
7
|
+
data.tar.gz: 75f2f6ee3762c3e3c544cf4e213f731300b0bc91caebf52ce3aa40c5bf4e8fcaf88e629f3a516bfc57c9b8ca3ff2b9515fd4d4b242ef1bb0ce34484c9ce51ce6
|
data/lib/pod/command/submit.rb
CHANGED
|
@@ -126,7 +126,7 @@ module Pod
|
|
|
126
126
|
execute "#{transporter} -m upload -f Package.itmsp -u #{username} -p #{password}"
|
|
127
127
|
`rm -rf Package.itmsp #{@target_name}.ipa #{@target_name}.app.dSYM.zip`
|
|
128
128
|
|
|
129
|
-
time = Time.now.
|
|
129
|
+
time = Time.now.strftime "%Y%m%d%H%m%S"
|
|
130
130
|
execute "git add ."
|
|
131
131
|
execute "git commit -am 'Submitted to iTunes Connect submit-#{time}-#{@target.name}-#{info_plist["CFBundleShortVersionString"]}-#{info_plist["CFBundleVersion"]}'"
|
|
132
132
|
execute "git tag submit-#{time}-#{@target.name}-#{info_plist["CFBundleShortVersionString"]}-#{info_plist["CFBundleVersion"]}"
|
data/lib/version.rb
CHANGED