fastlane-plugin-scipio 0.1.0 → 0.1.4

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: b09c0ba90447d94aeb8c4f916aa51b3406a1626901feba76e7bc19430398bd20
4
- data.tar.gz: 30627db482695f52ade837747b6fd496b97acb1a858e36285e941791f1de72ad
3
+ metadata.gz: 6afb09998fd436c0e2589315dad13a2723a817206207b094253f83c4087eb394
4
+ data.tar.gz: 56f759a99070406826c596543f08b15698d8eca124a9460d714778e521a887c5
5
5
  SHA512:
6
- metadata.gz: a47658bc64361cef19093499bd14022f7da057c6be391e081fc406d189c65f10aa38e3280c365141677b1135108415ce8acf1ce8b1d796e49d5846c570be5ae5
7
- data.tar.gz: 0df47989cf34402e0665a4ed700107d299c9d6795ac87685881b85f4d623628191f7f3284afd93202d7f1dba0aac31e5877fc9762ba55a997cf09b98a6fa2c59
6
+ metadata.gz: 21ac8b34f4d4f0387620a92f497484adc8851a38e518dffaf6a4a44f395ed30ee35f62cfff454f42a1b78c6ac421c3bfc5cb474565863e54f68a42c6ec163690
7
+ data.tar.gz: 3f536f7e362565378f84dc8cf4e078d152f70ec206b8a40ca5b099ca3fd9bea37988e7a680adbda9a100b18bae9d47f84721b1beca89e25507fa5cfc025c224f
@@ -19,9 +19,9 @@ module Fastlane
19
19
  cmd << "--config #{params[:config_path]}" if params[:config_path]
20
20
  cmd << "--build-path #{params[:build_path]}" if params[:build_path]
21
21
  cmd << "--skip-clean" if params[:skip_clean] == true
22
- cmd << "--skip-resolve-dependencies" if params[:skip_resolve_dependencies] == true
23
22
  cmd << "--force" if params[:force] == true
24
- cmd << "--sdks #{params[:sdks].join(",")}"
23
+ cmd << "--force-upload" if params[:force_upload] == true
24
+ cmd << "--force-build" if params[:force_build] == true
25
25
  cmd << "--verbose " if params[:verbose]
26
26
 
27
27
  if (command_name == "build" || command_name == "upload") && params[:packages].count > 0
@@ -64,6 +64,7 @@ module Fastlane
64
64
  UI.user_error!("Please pass a valid value for verbose. Use one of the following: true, false") unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
65
65
  end),
66
66
  FastlaneCore::ConfigItem.new(key: :packages,
67
+ env_name: "FL_SCIPIO_PACKAGES",
67
68
  description: "Package name or names to build/upload",
68
69
  default_value: [],
69
70
  is_string: false,
@@ -78,19 +79,6 @@ module Fastlane
78
79
  description: "The path to store build artifacts",
79
80
  optional: true,
80
81
  is_string: true),
81
- FastlaneCore::ConfigItem.new(key: :sdks,
82
- env_name: "FL_SCIPIO_SDKS",
83
- description: "Comma separated list of SDKs to build",
84
- is_string: false,
85
- optional: true,
86
- type: Array,
87
- default_value: ["iphoneos", "iphonesimulator"]),
88
- FastlaneCore::ConfigItem.new(key: :skip_resolve_dependencies,
89
- env_name: "FL_SCIPIO_SKIP_RESOLVE_DEPENDENCIES",
90
- description: "Skips resolving package dependencies",
91
- is_string: false,
92
- optional: true,
93
- default_value: false),
94
82
  FastlaneCore::ConfigItem.new(key: :skip_clean,
95
83
  env_name: "FL_SCIPIO_SKIP_CLEAN",
96
84
  description: "Skips cleaning the build directory",
@@ -103,6 +91,18 @@ module Fastlane
103
91
  is_string: false,
104
92
  optional: true,
105
93
  default_value: false),
94
+ FastlaneCore::ConfigItem.new(key: :force_build,
95
+ env_name: "FL_SCIPIO_FORCE_BUILD",
96
+ description: "Force build packages",
97
+ is_string: false,
98
+ optional: true,
99
+ default_value: false),
100
+ FastlaneCore::ConfigItem.new(key: :force_upload,
101
+ env_name: "FL_SCIPIO_FORCE_UPLOAD",
102
+ description: "Force upload packages",
103
+ is_string: false,
104
+ optional: true,
105
+ default_value: false),
106
106
  ]
107
107
  end
108
108
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Scipio
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-scipio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - evandcoleman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-17 00:00:00.000000000 Z
11
+ date: 2021-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler