fastlane-plugin-rome 0.3.7 → 0.3.8

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: 30ea9f58ce542cb8f793c9daf8168bf45cc8c40291030f35b522c1f7253e1b1f
4
- data.tar.gz: 35b3fc147f06de0e8ab397b86e47753f87e694e56d995036b746929b60a1ed5c
3
+ metadata.gz: a5526d53283cf225b265b29e5fa3f00bac9405b8f49d33d9b52524888c47c0f6
4
+ data.tar.gz: ac940147ed4012f6998a65bd3fb4e4e2c11f4b8bd21413a4262f0a13cb1bbe7f
5
5
  SHA512:
6
- metadata.gz: 181bfe634e62f63ad673026e80ffada87d8a116f019410945045d08d5907af06521b0fbd90f13a99548a9f3e17a3f292bf39fc5482b758d201b675d62d630096
7
- data.tar.gz: 1a667c12596978edc7633b91cbdd97760c2a4c5dcf15f7381a4bc1d637d69685794775f00f737873847807356210204e1949adebc8edde05e98ec59d74dd2d92
6
+ metadata.gz: 4748ba3e3c6e106c11807207b1f5024d3484055510e24e79c164685814119a379567e8d3609022e2be2a2135ca088a05740a36f6f841847806d4e07e86e9d050
7
+ data.tar.gz: ddbf69f057f82a89e3d44302df84c40b26e4c6ee6087ff405475bb7437c20ceb5b7c33caa44f22e3409ae1c71f383c6d350b6f1d54208dbc33c96c6eace5b503
data/README.md CHANGED
@@ -16,7 +16,7 @@ A S3 cache tool for Carthage
16
16
 
17
17
  Please see more on the tool's repo: [Rome](https://github.com/blender/rome)
18
18
 
19
- ## Example
19
+ ## Examples
20
20
 
21
21
  ```bash
22
22
  rome(
@@ -24,6 +24,17 @@ rome(
24
24
  command: "upload", # One of: download, upload, list
25
25
  verbose: false, # Print rome output inline
26
26
  platform: "all", # Define which platform to build for (one of ‘all’, ‘Mac’, ‘iOS’, ‘watchOS’, ‘tvOS‘, or comma-separated values of the formers except for ‘all’)
27
+ cacheprefix: "Swift_4_2_1", # A prefix appended to the top level directories inside the caches. Useful to separate artifacts between Swift versions
28
+ romefile: "~/Code/", # The path to the Romefile to use. Defaults to the \"Romefile\" in the current directory
29
+ noignore: "true", # Ignore the `ignoreMap` section in the Romefile when performing the operation
30
+ concurrently: "true", # Maximise concurrency while performing the operation. Might make verbose output hard to follow
31
+ )
32
+ ```
33
+
34
+ ```bash
35
+ rome(
36
+ command: "list",
37
+ printformat: "JSON", # Sets list output formats: JSON or if omitted, default to Text
27
38
  )
28
39
  ```
29
40
 
@@ -19,6 +19,7 @@ module Fastlane
19
19
  cmd.concat params[:frameworks]
20
20
  elsif command_name == "list"
21
21
  cmd << "--missing" if params[:missing] == true
22
+ cmd << "--present" if params[:present] == true
22
23
  end
23
24
 
24
25
  cmd << "--platform #{params[:platform]}" if params[:platform]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Rome
3
- VERSION = "0.3.7"
3
+ VERSION = "0.3.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-rome
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - François Benaiteau
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-03-11 00:00:00.000000000 Z
12
+ date: 2019-08-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pry