souyuz 0.6.1 → 0.6.2
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/README.md +3 -1
- data/lib/souyuz/generators/java_sign_command_generator.rb +3 -3
- data/lib/souyuz/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5ddef0749e7829c850a76d2f09b9abbd13aa337
|
|
4
|
+
data.tar.gz: 49a20abee4c39fe8d57dfa5a53f1fa290744393f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8e19d215c4618a4c28f9b970c0dfaa4ee10a5c55ade30b9e01d88033044cebf750bc7eb6b39c6c5de426c840aa385219440aa0200f5e84d3f9dddff7fdf15bb
|
|
7
|
+
data.tar.gz: 96f0b0d05c332a62f0cf2ce3bb1851d3781c539312807b6323f4dde6e378240173127655c5c8fcdbc9119245cb5e3b9e01c587d133339acbef94bc3f75c818bc
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Souyuz
|
|
2
2
|
|
|
3
|
-
A fastlane component to make Xamarin builds a breeze.
|
|
3
|
+
A fastlane component to make Xamarin builds a breeze. Souyuz is now avaialbe as an **Fastlane plugin** see [fastlane-plugin-souyuz](fastlane-plugin-souyuz) for details.
|
|
4
|
+
|
|
5
|
+
*NOTE: While souyuz should continue working with your existing configuration just fine, consider using the Fastlane plugin.*
|
|
4
6
|
|
|
5
7
|
## ToDos
|
|
6
8
|
|
|
@@ -34,10 +34,10 @@ module Souyuz
|
|
|
34
34
|
options << "-verbose" if $verbose
|
|
35
35
|
options << "-sigalg MD5withRSA"
|
|
36
36
|
options << "-digestalg SHA1"
|
|
37
|
-
options << "-storepass #{config[:keystore_password]}"
|
|
38
|
-
options << "-keystore #{config[:keystore_path]}"
|
|
37
|
+
options << "-storepass \"#{config[:keystore_password]}\""
|
|
38
|
+
options << "-keystore \"#{config[:keystore_path]}\""
|
|
39
39
|
options << "-tsa #{config[:keystore_tsa]}"
|
|
40
|
-
options << "-signedjar #{Souyuz.cache[:signed_apk_path]}"
|
|
40
|
+
options << "-signedjar \"#{Souyuz.cache[:signed_apk_path]}\""
|
|
41
41
|
|
|
42
42
|
options
|
|
43
43
|
end
|
data/lib/souyuz/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: souyuz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Rudat
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|