fastlane-plugin-scipio 0.1.0 → 0.1.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: b09c0ba90447d94aeb8c4f916aa51b3406a1626901feba76e7bc19430398bd20
4
- data.tar.gz: 30627db482695f52ade837747b6fd496b97acb1a858e36285e941791f1de72ad
3
+ metadata.gz: a880fd6039508f339c755e735564ca07bc1d3a7dddb79761deca29d46a8711ce
4
+ data.tar.gz: b464062b1c3d579d0ea3247ee30e75064b7a0240c668eab32c4c7bc711e2519a
5
5
  SHA512:
6
- metadata.gz: a47658bc64361cef19093499bd14022f7da057c6be391e081fc406d189c65f10aa38e3280c365141677b1135108415ce8acf1ce8b1d796e49d5846c570be5ae5
7
- data.tar.gz: 0df47989cf34402e0665a4ed700107d299c9d6795ac87685881b85f4d623628191f7f3284afd93202d7f1dba0aac31e5877fc9762ba55a997cf09b98a6fa2c59
6
+ metadata.gz: fa99f8c82ed4741e772b4c27091df7c58a8cd479e36025e2a9697f525d455f462fd126f48e4dc46acae4cf95847145b3648917f1c739737b3f7477dc7145bb52
7
+ data.tar.gz: b541181dca35c1d29faabd9d2df8dc0b73cb0f274c1ebfcbadc6830a87d1e140c0064e66a37aa4b0944b7f5c38c3dd7dcb879eb29247e4d5238adfdede5fb314
@@ -19,9 +19,10 @@ 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
+ cmd << "--platform #{params[:platform].join(",")}"
25
26
  cmd << "--verbose " if params[:verbose]
26
27
 
27
28
  if (command_name == "build" || command_name == "upload") && params[:packages].count > 0
@@ -78,19 +79,13 @@ 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",
82
+ FastlaneCore::ConfigItem.new(key: :platform,
83
+ env_name: "FL_SCIPIO_PLATFORMS",
84
+ description: "Comma separated list of platforms to build",
84
85
  is_string: false,
85
86
  optional: true,
86
87
  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),
88
+ default_value: ["ios"]),
94
89
  FastlaneCore::ConfigItem.new(key: :skip_clean,
95
90
  env_name: "FL_SCIPIO_SKIP_CLEAN",
96
91
  description: "Skips cleaning the build directory",
@@ -103,6 +98,18 @@ module Fastlane
103
98
  is_string: false,
104
99
  optional: true,
105
100
  default_value: false),
101
+ FastlaneCore::ConfigItem.new(key: :force_build,
102
+ env_name: "FL_SCIPIO_FORCE_BUILD",
103
+ description: "Force build packages",
104
+ is_string: false,
105
+ optional: true,
106
+ default_value: false),
107
+ FastlaneCore::ConfigItem.new(key: :force_upload,
108
+ env_name: "FL_SCIPIO_FORCE_UPLOAD",
109
+ description: "Force upload packages",
110
+ is_string: false,
111
+ optional: true,
112
+ default_value: false),
106
113
  ]
107
114
  end
108
115
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Scipio
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
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.1
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-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler