souyuz 0.8.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/souyuz/generators/build_command_generator.rb +8 -8
- data/lib/souyuz/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bb7b108c2de8a9ac1fc828f99ff7b5dc086ead257486db17fd34a368f61af0e
|
4
|
+
data.tar.gz: 3d23185bfc0b53b98afcb555115ac5849970775c89697be8699eed7c9ad36863
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 145975b20e3e7e6c09ea80a37c7c008686934adcf6c188f8de64f044dab9660bc5cc296ed003d0991d0261cb1fdde3eefc2475860893cd8590e8f40bae527ba5
|
7
|
+
data.tar.gz: a64838989893a8af1ac9f55107221c076f4202ca634b1df41dcbbff2c9cd6f0c8b6f01d0183f43306237f355afedd0523fb14b54fbdaa703c23a81a73f9fb8d0
|
@@ -25,26 +25,26 @@ module Souyuz
|
|
25
25
|
config = Souyuz.config
|
26
26
|
|
27
27
|
options = []
|
28
|
-
options << "/p:Configuration=#{config[:build_configuration]}" if config[:build_configuration]
|
29
28
|
options << config[:extra_build_options] if config[:extra_build_options]
|
30
|
-
options << "
|
31
|
-
options << "
|
29
|
+
options << "-p:Configuration=#{config[:build_configuration]}" if config[:build_configuration]
|
30
|
+
options << "-p:Platform=#{config[:build_platform]}" if Souyuz.project.ios? and config[:build_platform]
|
31
|
+
options << "-p:BuildIpa=true" if Souyuz.project.ios?
|
32
32
|
if config[:solution_path]
|
33
33
|
solution_dir = File.dirname(config[:solution_path])
|
34
|
-
options << "
|
34
|
+
options << "-p:SolutionDir=#{solution_dir}/"
|
35
35
|
end
|
36
36
|
|
37
37
|
options
|
38
38
|
end
|
39
39
|
|
40
40
|
def build_targets
|
41
|
-
Souyuz.config[:build_target].map! { |t| "
|
41
|
+
Souyuz.config[:build_target].map! { |t| "-t:#{t}" }
|
42
42
|
end
|
43
43
|
|
44
44
|
def targets
|
45
45
|
targets = []
|
46
46
|
targets += build_targets
|
47
|
-
targets << "
|
47
|
+
targets << "-t:SignAndroidPackage" if Souyuz.project.android?
|
48
48
|
|
49
49
|
targets
|
50
50
|
end
|
@@ -52,8 +52,8 @@ module Souyuz
|
|
52
52
|
def project
|
53
53
|
path = []
|
54
54
|
|
55
|
-
path << Souyuz.config[:project_path] if Souyuz.project.android?
|
56
|
-
path << Souyuz.config[:solution_path] if Souyuz.project.ios? or Souyuz.project.osx?
|
55
|
+
path << Souyuz.config[:project_path] # if Souyuz.project.android?
|
56
|
+
# path << Souyuz.config[:solution_path] if Souyuz.project.ios? or Souyuz.project.osx?
|
57
57
|
|
58
58
|
path
|
59
59
|
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.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Rudat
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 1.103.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 1.103.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: highline
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -166,8 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
- !ruby/object:Gem::Version
|
167
167
|
version: '0'
|
168
168
|
requirements: []
|
169
|
-
|
170
|
-
rubygems_version: 2.7.6
|
169
|
+
rubygems_version: 3.0.3
|
171
170
|
signing_key:
|
172
171
|
specification_version: 4
|
173
172
|
summary: A fastlane component to make Xamarin builds a breeze
|