capistrano-inspeqtor 0.0.1 → 0.0.2
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 +8 -0
- data/capistrano-inspeqtor.gemspec +1 -0
- data/lib/capistrano/inspeqtor/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4798e3e423ceff6598a8ddb5505a6213f04a5937
|
|
4
|
+
data.tar.gz: 0e98c820003985f04d222dae76e178a417a171c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca4016ced664351ebd1f4b11d2ab6d39f34b19344db8eee6743d4fd70e39ba60773140b7812f0d74758836c3d0f81369f683a77578f57c1f84a962457385cbf2
|
|
7
|
+
data.tar.gz: bc4649feba90af0b4f1777975e4441a579e2d7cdccd73c398e6fd1944078664cf11a1bfdb7405cdf5ec3a3be96201f6644027837a36ac22d6b900a411b63a7d9
|
data/README.md
CHANGED
|
@@ -26,6 +26,14 @@ Or install it yourself as:
|
|
|
26
26
|
require 'capistrano/inspeqtor'
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
By default inspeqtor hooks will run on all roles.
|
|
30
|
+
You can change this behavior by setting :inspeqtor_role
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
role :app, %w{example.com}
|
|
34
|
+
set :inspeqtor_role, :app
|
|
35
|
+
```
|
|
36
|
+
|
|
29
37
|
## Contributing
|
|
30
38
|
|
|
31
39
|
1. Fork it ( https://github.com/seuros/capistrano-inspeqtor/fork )
|
|
@@ -9,6 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ['Abdelkader Boudih']
|
|
10
10
|
spec.email = ['terminale@gmail.com']
|
|
11
11
|
spec.summary = %q(Inspeqtor integration for Capistrano)
|
|
12
|
+
spec.homepage = 'https://github.com/seuros/capistrano-inspeqtor'
|
|
12
13
|
spec.description = spec.summary
|
|
13
14
|
spec.license = 'LGPLv3'
|
|
14
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-inspeqtor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abdelkader Boudih
|
|
@@ -40,7 +40,7 @@ files:
|
|
|
40
40
|
- lib/capistrano/inspeqtor.rb
|
|
41
41
|
- lib/capistrano/inspeqtor/version.rb
|
|
42
42
|
- lib/capistrano/tasks/inspeqtor.cap
|
|
43
|
-
homepage:
|
|
43
|
+
homepage: https://github.com/seuros/capistrano-inspeqtor
|
|
44
44
|
licenses:
|
|
45
45
|
- LGPLv3
|
|
46
46
|
metadata: {}
|