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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df17b3536e569b94853ca253515178b8237baa39bb4b8caecee89ec309beb068
4
- data.tar.gz: 1a49c072ced2b71497e51dd5b2393cf73632f0e122a171ee2de78e65e8a43018
3
+ metadata.gz: 4bb7b108c2de8a9ac1fc828f99ff7b5dc086ead257486db17fd34a368f61af0e
4
+ data.tar.gz: 3d23185bfc0b53b98afcb555115ac5849970775c89697be8699eed7c9ad36863
5
5
  SHA512:
6
- metadata.gz: 2b7f8653ffab635f9a967cc88e7973af62081249a9a3c5f07d83d810ac91122ae2cd45fffca0f8fcc830902f6009968f339d035ab287395678080c94d65732b0
7
- data.tar.gz: a1cb04c106f24ed6178b55bd3272d8516c9bba4af0e0903e52cc95c3fc32f47be8a5959dbc7dcab3b0057f8427a61917d8ce5b36232e0361cbaa9a299d8d8058
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 << "/p:Platform=#{config[:build_platform]}" if Souyuz.project.ios? and config[:build_platform]
31
- options << "/p:BuildIpa=true" if Souyuz.project.ios?
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 << "/p:SolutionDir=#{solution_dir}/"
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| "/t:#{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 << "/t:SignAndroidPackage" if Souyuz.project.android?
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
@@ -1,5 +1,5 @@
1
1
 
2
2
  module Souyuz
3
- VERSION = "0.8.1"
3
+ VERSION = "0.9.0"
4
4
  DESCRIPTION = "A fastlane component to make Xamarin builds a breeze"
5
5
  end
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.8.1
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: 2018-03-15 00:00:00.000000000 Z
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: 2.29.0
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: 2.29.0
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
- rubyforge_project:
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