fastlane-plugin-ravn_mobile 0.1.5 → 0.1.7

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: 8259edefd61ccddf6d3c004a0580b3318b498edcaab8e3635a2d5438cbed0600
4
- data.tar.gz: 4d828a78d973204cdc76dca94bbfb696c748ff74abf9ca6b3cbe0fd89e8ba094
3
+ metadata.gz: c10b779b2b4898a458e59239552d5de55c015595395307e02f4755c9b51a4801
4
+ data.tar.gz: ca06d23f56b6855488028e63ebabaa5b149e518fc4e06c1848a16538b69d0df7
5
5
  SHA512:
6
- metadata.gz: ef0844a263d0e3337354b67882d71ccc60524048ab18e6a4bf1e2ebc9be52f3738996f837aee5c5eec1494a56c95224cbe35b1be6401762631c0af78f67edef0
7
- data.tar.gz: 7bbc37340a1ccb3087ec239f05ce3189d80d3d56f9c64e5dc82977a211138661ff07035231c3253edaec799688180598e43340edf2dff33f79bd0cbf0cf5cc98
6
+ metadata.gz: b6acad24d06be1b1aec159843436786797e3b566ad08a9ab89a50e4a2dd71158bcf24c4c613f422734a747fe57071f785607fbe34a3b4097b07c46ef91dea23c
7
+ data.tar.gz: 33e6bd5b937b49717ba7cb1bba80d7ba70bbff5aede13c6469d35f6b7c6dd1244509615e3cee3d11d1c85b6032238f0386660024b825a94e5c12d7a19ac121ea
@@ -4,7 +4,6 @@ require_relative '../util/util'
4
4
 
5
5
  module Fastlane
6
6
  module Actions
7
-
8
7
  class ImportRavnLanesAction < Action
9
8
  IMPORT_URL = 'https://github.com/ravnhq/mobile-cicd'
10
9
  IMPORT_VERSION = '~> 0.2'
@@ -17,10 +16,12 @@ module Fastlane
17
16
 
18
17
  url = ImportRavnLanesAction::IMPORT_URL
19
18
  path = platform == 'android' ? 'lanes/android.rb' : 'lanes/ios.rb'
20
- dependencies = %w[lanes/util.rb]
21
19
  cache_path = Dir.mktmpdir("ravn_lanes")
22
20
 
23
- other_action.import_from_git(url:, path:, version:, dependencies:, cache_path:)
21
+ dependencies = %w[lanes/util.rb]
22
+ dependencies.each { |dep_path| other_action.import_from_git(url: url, path: dep_path, version: version, cache_path: cache_path) }
23
+
24
+ other_action.import_from_git(url: url, path: path, version: version, cache_path: cache_path)
24
25
  end
25
26
 
26
27
  #####################################################
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module RavnMobile
3
- VERSION = '0.1.5'
3
+ VERSION = '0.1.7'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-ravn_mobile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - ravnhq