fastlane-plugin-brew 0.1.0 → 0.1.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/README.md +2 -2
- data/lib/fastlane/plugin/brew/actions/brew_action.rb +2 -2
- data/lib/fastlane/plugin/brew/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2779f4336ff99d1ea10dc16b7444e035dfbb2cf
|
|
4
|
+
data.tar.gz: 761247fe1f160dd2f300bce8db694da69a20d892
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e7127c01f6636bb04d023866649ba64aed2ac5ea4e41190bd0a1a916e4bed7d417562f380d9986312717878e94f77f29fe6c4a31d900d16be2496085349f5ce
|
|
7
|
+
data.tar.gz: 097d7a911aee81e6c1ab17d6a18cbb83aa15d62c7c6014260ccd9c7f13aa5dcc88fcc5bd4c2dd7a128edf4a70c0078a9462c2b6e0525b3046a37464f91217bda
|
data/README.md
CHANGED
|
@@ -18,10 +18,10 @@ Allows to execute Homebrew/Linuxbrew commands within fastlane.
|
|
|
18
18
|
|
|
19
19
|
```ruby
|
|
20
20
|
# Install Android-SDK
|
|
21
|
-
brew
|
|
21
|
+
brew(command:"install android-sdk")
|
|
22
22
|
|
|
23
23
|
# Install Android-Studio on macOS
|
|
24
|
-
brew
|
|
24
|
+
brew(command:"cask install android-studio")
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## Run tests for this plugin
|
|
@@ -21,7 +21,7 @@ module Fastlane
|
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def self.details
|
|
24
|
-
'Example: brew("install imagemagick")'
|
|
24
|
+
'Example: brew(command:"install imagemagick")'
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def self.available_options
|
|
@@ -35,7 +35,7 @@ module Fastlane
|
|
|
35
35
|
|
|
36
36
|
def self.example_code
|
|
37
37
|
[
|
|
38
|
-
'brew("install imagemagick")'
|
|
38
|
+
'brew(command:"install imagemagick")'
|
|
39
39
|
]
|
|
40
40
|
end
|
|
41
41
|
|