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 ADDED
@@ -0,0 +1,8 @@
1
+ 2012-05-29 => v1.0.1
2
+
3
+ documentation changes
4
+
5
+ 2012-05-27 => v1.0.0
6
+
7
+ initial release
8
+
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', 'git://github.com/spikegrobstein/capistrano-grove.git'
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
 
@@ -11,6 +11,7 @@ module Capistrano
11
11
  @grove_client = ::Grove.new(channel_key, options)
12
12
  end
13
13
 
14
+ # post +message+ as a notification. Returns true om-success and false on-failure.
14
15
  def notify(message)
15
16
  !( @grove_client.post(message).status >= 400 )
16
17
  end
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Grove
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
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: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.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-27 00:00:00 Z
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