guard-gradle 0.2.0 → 0.2.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: 2cb85e6018f4c8d2b272916f0d4dce1dc74b2760
4
- data.tar.gz: 9723e9296516b46914266bc8d858317a64811a91
3
+ metadata.gz: 624faea904104445bf71ee0d208a5f6fd140aa28
4
+ data.tar.gz: 4e764223db021cd75b865d5eeb5d39a5f94770d6
5
5
  SHA512:
6
- metadata.gz: 19da8eb01d58929f2dde5e5b0a9b6d7ff3440c39aa313a5c2b4dd770b3fea10167eb2962aa25e2c077e0a5a0b24c6e8e3590675f3eb79350216260dfcc1ced58
7
- data.tar.gz: 4afc6c2878ad62569f9ae19a281962a5397a6b0d871fce835a229bf8b18281dfc0d4f8702820b2c489741d7203d212039aee9e746df3654db71b6d66417f4ff3
6
+ metadata.gz: 95ad023c2f576e4b1445b4b30e74ae780aafd42f13b7d6016e25061464010ffd2381a53fcc2a477f9f4419a1ff272975c7f5467bf735d6b7d12dec618b825003
7
+ data.tar.gz: 669bcc72692f1fcee889c84e0ffcace5a837aa1a8dad68eaf5c90f5e9285d3f7b06fc20766487a0cddb07d97e17a9f275c3d13d52df7d7e7b857ed1e27e36b28
data/README.md CHANGED
@@ -28,7 +28,7 @@ If you see something like `ruby: command not found` then you need to [install Ru
28
28
  We've made this super easy. Open up a terminal, `cd` to your desired project, and type:
29
29
 
30
30
  ```bash
31
- wget --no-check-certificate https://github.com/aglover/guard-gradle/blob/master/etc/installer.sh && bash installer.sh
31
+ curl https://raw.githubusercontent.com/bricker/guard-gradle/master/etc/installer.sh | bash -
32
32
  ```
33
33
 
34
34
  It's important you do this in the root directory of a project you wish to use Gradle::Guard in. This plugin is designed to work on individual project instances, much like a `build.gradle` file is unique to a project.
@@ -16,7 +16,7 @@ bundle install --path vendor
16
16
 
17
17
  echo 'Initializing the Guard Nebula plugin'
18
18
  sleep 1
19
- bundle exec guard init nebula
19
+ bundle exec guard init gradle
20
20
 
21
21
  echo 'This file will delete itself. Going forward to start Guard, run the guard.sh script'
22
22
 
@@ -24,8 +24,4 @@ cat <<EOF > guard.sh
24
24
  bundle exec guard
25
25
  EOF
26
26
 
27
- chmod +x guard.sh
28
-
29
- sleep 1
30
-
31
- rm install-guard.sh
27
+ chmod +x guard.sh
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module GradleVersion
3
- VERSION = '0.2.0'
3
+ VERSION = '0.2.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-gradle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Ricker