fastlane-plugin-branch 0.7.0 → 0.7.1
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/lib/fastlane/plugin/branch/actions/branch_report_action.rb +1 -1
- data/lib/fastlane/plugin/branch/actions/setup_branch_action.rb +2 -2
- data/lib/fastlane/plugin/branch/actions/validate_universal_links_action.rb +1 -1
- data/lib/fastlane/plugin/branch/config_item.rb +3 -1
- data/lib/fastlane/plugin/branch/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd39c6f8cb3e01574ccc02701f047933f76df66273197104320eee428b1297a6
|
|
4
|
+
data.tar.gz: 6706e1b2c1622a5bc4c2432980eb0e021026eca92f6999203de170b5fb6bac41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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::
|
|
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::
|
|
15
|
-
BranchIOCLI::
|
|
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::
|
|
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
|
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.
|
|
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-
|
|
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
|