capistrano-invoke 1.0.0 → 1.0.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 +6 -0
- data/lib/capistrano/invoke/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: 5258e4f866d904bd7c2cd2743d1189d4ee4c5e5d
|
|
4
|
+
data.tar.gz: 086cfc89bee883c4c3434de224976ed27c6a1413
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a131a4254693e6c44edc9f5d0ecde15ce9eea33bd469b2d38452433fd270379171247372a490f95cb7c238bda04ed9bf31fc59d3faefba5f05c4a34e85b2700
|
|
7
|
+
data.tar.gz: cf3b2857f4fd9697ae914c2fecad28b667e0846cf6e49bf20c825c8760394094c429f2681244067f60d1dd33c38e1e4abe26da3b2413aa0aca2190b5e3f3450c
|
data/README.md
CHANGED
|
@@ -18,6 +18,12 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
$ gem install capistrano-invoke
|
|
20
20
|
|
|
21
|
+
Remember to add this line to your Capfile:
|
|
22
|
+
|
|
23
|
+
```ruby
|
|
24
|
+
require 'capistrano/invoke'
|
|
25
|
+
```
|
|
26
|
+
|
|
21
27
|
## Usage
|
|
22
28
|
|
|
23
29
|
Add this line to your Capfile and `cap invoke` will run the command given via the environment
|