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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ed957a86e0c2452bc8f8c8452e7fc121e26eca0
4
- data.tar.gz: 2fdb8175b48f88dcac8804a61681e7b571c873c9
3
+ metadata.gz: a2779f4336ff99d1ea10dc16b7444e035dfbb2cf
4
+ data.tar.gz: 761247fe1f160dd2f300bce8db694da69a20d892
5
5
  SHA512:
6
- metadata.gz: 46c4ad0311ffc2e4075cb26b31a1de9a2e04b352685de36be516c93cbb5df64da9460bf8c3c4218aa5b7ab61eb21c88e8e08277155d30f5485a5fe7f0ecd8202
7
- data.tar.gz: 76976a405840cbb9f412094ee33e36143c805e9cb18f7ee3bb09c6883684314ff50664f25cb7cfa214988e657462fcdce865a1b4c80aa7df417ea93ed4f91a34
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 "install android-sdk"
21
+ brew(command:"install android-sdk")
22
22
 
23
23
  # Install Android-Studio on macOS
24
- brew "cask install android-studio"
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
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Brew
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-brew
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
  - Michael Ruhl