capistrano-grove 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +8 -0
- data/README.md +9 -4
- data/lib/capistrano-grove.rb +1 -0
- data/lib/capistrano-grove/version.rb +1 -1
- metadata +5 -4
data/CHANGELOG
ADDED
data/README.md
CHANGED
@@ -6,15 +6,20 @@ Easily send notifications to your [grove.io](http://grove.io) channel after a de
|
|
6
6
|
|
7
7
|
In your application's `Gemfile` put the following:
|
8
8
|
|
9
|
-
gem 'capistrano-grove'
|
9
|
+
gem 'capistrano-grove'
|
10
10
|
|
11
|
-
At the top of your `Capfile` you should also add the following:
|
12
|
-
|
13
|
-
require 'grove/capistrano'
|
14
11
|
|
15
12
|
Once you get your gems installed via `bundle install`, you can configure
|
16
13
|
`capistrano-grove`.
|
17
14
|
|
15
|
+
Alternatively, you can install `capistrano-grove` via `gem`:
|
16
|
+
|
17
|
+
gem install capistrano-grove
|
18
|
+
|
19
|
+
At the top of your `Capfile` you should also add the following:
|
20
|
+
|
21
|
+
require 'grove/capistrano'
|
22
|
+
|
18
23
|
The only required parameter to use this plugin is the `grove_channel_key` variable.
|
19
24
|
You can get your channel key from the grove.io website. Initialize it as follows:
|
20
25
|
|
data/lib/capistrano-grove.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-grove
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Spike Grobstein
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-05-
|
18
|
+
date: 2012-05-30 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: capistrano
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- .gitignore
|
63
63
|
- .rspec
|
64
|
+
- CHANGELOG
|
64
65
|
- Gemfile
|
65
66
|
- LICENSE
|
66
67
|
- README.md
|