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 +4 -4
- data/README.md +1 -1
- data/etc/installer.sh +2 -6
- data/lib/guard/gradle/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: 624faea904104445bf71ee0d208a5f6fd140aa28
|
|
4
|
+
data.tar.gz: 4e764223db021cd75b865d5eeb5d39a5f94770d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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.
|
data/etc/installer.sh
CHANGED
|
@@ -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
|
|
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
|
data/lib/guard/gradle/version.rb
CHANGED