capistrano-git-plugins 0.0.17 → 0.0.18

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,12 @@
1
1
  = capistrano-git-plugins
2
2
 
3
- Description goes here.
3
+ A collection of common capistrano tasks:
4
+ - 'capistrano/git/plugins/airbrake' Airbrake deployment notification
5
+ - 'capistrano/git/plugins/bundler' Bundler deployment
6
+ - 'capistrano/git/plugins/deploy_reporter' Deployment reporting
7
+ - 'capistrano/git/plugins/hoptoad' Hoptoad deployment notification
8
+ - 'capistrano/git/plugins/kill_resque_workers' Kill resque workers
9
+ - 'capistrano/git/plugins/new_relic' NewRelic activation by copying newrelic.yml into place
4
10
 
5
11
  == Contributing to capistrano-git-plugins
6
12
 
@@ -14,6 +20,5 @@ Description goes here.
14
20
 
15
21
  == Copyright
16
22
 
17
- Copyright (c) 2011 Ryan Moran. See LICENSE.txt for
18
- further details.
23
+ Copyright (c) 2011-2012 Ryan Moran. See LICENSE.txt for further details.
19
24
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.17
1
+ 0.0.18
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{capistrano-git-plugins}
8
- s.version = "0.0.17"
8
+ s.version = "0.0.18"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ryan Moran"]
12
- s.date = %q{2012-02-17}
12
+ s.date = %q{2012-02-20}
13
13
  s.description = %q{Plugins to support capistrano-git deployments}
14
14
  s.email = %q{ryan.moran@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -19,7 +19,6 @@ Gem::Specification.new do |s|
19
19
  s.files = [
20
20
  ".document",
21
21
  ".idea/encodings.xml",
22
- ".idea/misc.xml",
23
22
  ".idea/modules.xml",
24
23
  ".idea/vcs.xml",
25
24
  ".rvmrc",
@@ -9,7 +9,7 @@ Capistrano::Configuration.instance(:must_exist).load do
9
9
  local_user = ENV['USER'] || ENV['USERNAME']
10
10
  executable = fetch(:rake, (RUBY_PLATFORM.downcase.include?('mswin') ? 'rake.bat' : 'rake'))
11
11
  executable = "cd #{deploy_to} && sudo #{executable}" if executable.include?('bundle exec')
12
- notify_command = "#{executable} hoptoad:deploy TO=#{rails_env} REPO=#{repository} USER=#{local_user} RAILS_ENV=production"
12
+ notify_command = "#{executable} hoptoad:deploy TO=#{rails_env} REPO=#{repository} USER=#{local_user} RAILS_ENV=#{rails_env}"
13
13
  notify_command << " API_KEY=#{ENV['API_KEY']}" if ENV['API_KEY']
14
14
  puts "\n\n### NOTIFY HOPTOAD: Notifying Hoptoad of Deploy (#{notify_command})\n\n"
15
15
  run "#{notify_command}"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-git-plugins
3
3
  version: !ruby/object:Gem::Version
4
- hash: 61
4
+ hash: 59
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 17
10
- version: 0.0.17
9
+ - 18
10
+ version: 0.0.18
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ryan Moran
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-02-17 00:00:00 -08:00
18
+ date: 2012-02-20 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -46,7 +46,6 @@ extra_rdoc_files:
46
46
  files:
47
47
  - .document
48
48
  - .idea/encodings.xml
49
- - .idea/misc.xml
50
49
  - .idea/modules.xml
51
50
  - .idea/vcs.xml
52
51
  - .rvmrc
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="DependencyValidationManager">
4
- <option name="SKIP_IMPORT_STATEMENTS" value="false" />
5
- </component>
6
- <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ree-1.8.7-2010.02 [capistrano-git-plugins]" project-jdk-type="RUBY_SDK" />
7
- </project>
8
-