fastlane-plugin-souyuz 0.6.3 → 0.6.5

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
  SHA1:
3
- metadata.gz: 056df47d720c05dffccbff4cb410087be09e644a
4
- data.tar.gz: 4dbd54f759cb2388c1e8ec369b4a6d5a32014213
3
+ metadata.gz: 0debfe71c1e61b5531c91571845e00224dab6214
4
+ data.tar.gz: 1da3f25ad96f3b3dc307fdc2ec1185b9ba650616
5
5
  SHA512:
6
- metadata.gz: f86332907cb8111834e4bf6808b3ae15540617fb5205395e219cfb977717e64db08e8d603ffd8a63d549991fe2fca6a49b0a60ac55c9b34a944bb2894c8a740b
7
- data.tar.gz: 46e1dbb7a472fd4b3050499d0d80209494f9c42a4d80b8990a4600af29a9deb49e9e9d68898290d5386694ca6f6e8b74ce488c0992176436cee39238177374bb
6
+ metadata.gz: bd3273332a8b0a6d93356289501c2800bbfa203efae446b61979a2bff23464105c7a280d7e784202ee0541ea1e6b00db6f210c25dbcd6aef4f4718bd865354ad
7
+ data.tar.gz: 4d48f362df92735bf0985b2c16834148a113d3b79ce7045ce09e21a21efe4c0357166bb6cc5fee29b4489b915d3849325f8df1d785d7a3c8a3745f32567adcb6
data/README.md CHANGED
@@ -14,27 +14,6 @@ fastlane add_plugin souyuz
14
14
 
15
15
  A fastlane component to make Xamarin builds a breeze
16
16
 
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
18
-
19
- ## Example
20
-
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
-
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
25
- ## Run tests for this plugin
26
-
27
- To run both the tests, and code style validation, run
28
-
29
- ```
30
- rake
31
- ```
32
-
33
- To automatically fix many of the styling issues, use
34
- ```
35
- rubocop -a
36
- ```
37
-
38
17
  ## Issues and Feedback
39
18
 
40
19
  For any other issues and feedback about this plugin, please submit it to this repository.
@@ -17,7 +17,7 @@ module Fastlane
17
17
  absolute_ipa_path = File.expand_path(::Souyuz::Manager.new.work(values))
18
18
  absolute_app_path = File.join(values[:output_path], "#{values[:assembly_name]}.app")
19
19
  absolute_dsym_path = absolute_ipa_path.gsub(".ipa", ".app.dSYM.zip")
20
-
20
+
21
21
  Actions.lane_context[SharedValues::APP_OUTPUT_PATH] = absolute_app_path
22
22
  Actions.lane_context[SharedValues::IPA_OUTPUT_PATH] = absolute_ipa_path
23
23
  Actions.lane_context[SharedValues::DSYM_OUTPUT_PATH] = absolute_dsym_path if File.exist?(absolute_dsym_path)
@@ -28,6 +28,12 @@ module Fastlane
28
28
 
29
29
  absolute_ipa_path
30
30
  elsif ::Souyuz.project.android?
31
+ # check if keystore vars are set but password is missing
32
+ if (values[:keystore_path] && values[:keystore_alias])
33
+ if (!values[:keystore_password])
34
+ ::Souyuz.config[:keystore_password] = ask("Password (for #{values[:keystore_alias]}): ") { |q| q.echo = "*" }
35
+ end
36
+ end
31
37
  absolute_apk_path = File.expand_path(::Souyuz::Manager.new.work(values))
32
38
 
33
39
  Actions.lane_context[SharedValues::GRADLE_BUILD_TYPE] = values[:build_configuration]
@@ -1,6 +1,6 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module Fastlane
3
3
  module Souyuz
4
- VERSION = "0.6.3"
4
+ VERSION = "0.6.5"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-souyuz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.5
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-20 00:00:00.000000000 Z
11
+ date: 2017-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: souyuz