fastlane-plugin-branch 0.7.0 → 0.7.1

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: b9698deff778126e250ebc87f1944a952ced21c3ccdc614ba5e91683e39ae18f
4
- data.tar.gz: ed00d7306008408acc65780eb2bcc18b27ae7db193acbfc15ed6c6c9b6296a63
3
+ metadata.gz: bd39c6f8cb3e01574ccc02701f047933f76df66273197104320eee428b1297a6
4
+ data.tar.gz: 6706e1b2c1622a5bc4c2432980eb0e021026eca92f6999203de170b5fb6bac41
5
5
  SHA512:
6
- metadata.gz: a8a15ce1709786a5d21311442c9bcc4f714fccc1b924b4707029c7844051225a00ca0dc50a5f95d118a74837b5a781e4f60a9ecf71a9f980bc63e728b9b29c79
7
- data.tar.gz: 0d5aaf69ee0ca67d2b559074efe1da5e7f6ef67540c7f5825f0c18d120bd51c6fa4015b36c87307d1f6b649d690c400abbdc7882230c8ace24b00891cb7d5949
6
+ metadata.gz: d0e5391291ca46d5b49bf08448b6aad80eb86487a3dcbe6982495a125bdf93164a8c64cf85c9980462f205f191608872962ace401d61111210a3cf6a596b9f2e
7
+ data.tar.gz: 9b34dd74d591dd9b87e421442cebbc9e907f188cae8a811949e004ce68d97e47f79656f877c1308d83a2767ec2b23a191500f758d4e2036788cf5e30ce148975
@@ -9,7 +9,7 @@ module Fastlane
9
9
  class BranchReportAction < Action
10
10
  def self.run(params)
11
11
  config = BranchIOCLI::Configuration::ReportConfiguration.wrapper params, false
12
- BranchIOCLI::Commands::ReportCommand.new(config).run!
12
+ BranchIOCLI::Command::ReportCommand.new(config).run!
13
13
  rescue StandardError => e
14
14
  UI.user_error! "Error in BranchReportAction: #{e.message}\n#{e.backtrace}"
15
15
  end
@@ -11,8 +11,8 @@ module Fastlane
11
11
  params.load_configuration_file "Branchfile"
12
12
  # second arg false: Don't add default values or env. vars. Let Fastlane
13
13
  # handle that. This is necessary to work with the Branchfile.
14
- config = BranchIOCLI::Configuration::SetupConfiguration.wrapper params, false
15
- BranchIOCLI::Commands::SetupCommand.new(config).run!
14
+ config = BranchIOCLI::Configuration::Configuration.wrapper params, false
15
+ BranchIOCLI::Command::SetupCommand.new(config).run!
16
16
  rescue StandardError => e
17
17
  UI.user_error! "Error in SetupBranchAction: #{e.message}\n#{e.backtrace}"
18
18
  end
@@ -9,7 +9,7 @@ module Fastlane
9
9
  class ValidateUniversalLinksAction < Action
10
10
  def self.run(params)
11
11
  config = BranchIOCLI::Configuration::ValidateConfiguration.wrapper params, false
12
- BranchIOCLI::Commands::ValidateCommand.new(config).run! == 0
12
+ BranchIOCLI::Command::ValidateCommand.new(config).run! == 0
13
13
  rescue StandardError => e
14
14
  UI.user_error! "Error in ValidateUniversalLinksAction: #{e.message}\n#{e.backtrace}"
15
15
  false
@@ -7,7 +7,9 @@ module FastlaneCore
7
7
  env_name: option.env_name,
8
8
  description: option.description,
9
9
  default_value: option.default_value,
10
- type: option.type
10
+ type: option.type,
11
+ is_string: option.type == String,
12
+ optional: true
11
13
  )
12
14
  end
13
15
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Branch
3
- VERSION = "0.7.0"
3
+ VERSION = "0.7.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-branch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Branch
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-11-19 00:00:00.000000000 Z
12
+ date: 2017-11-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: branch_io_cli