capistrano-git-plugins 0.0.10 → 0.0.11
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.
- data/.idea/capistrano-git-plugins.iml +9 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +8 -0
- data/.idea/modules.xml +9 -0
- data/.idea/vcs.xml +7 -0
- data/VERSION +1 -1
- data/capistrano-git-plugins.gemspec +7 -2
- data/lib/capistrano/git/plugins/hoptoad.rb +1 -1
- metadata +13 -8
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="inheritedJdk" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
</component>
|
|
8
|
+
</module>
|
|
9
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
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
|
+
|
data/.idea/modules.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/capistrano-git-plugins.iml" filepath="$PROJECT_DIR$/.idea/capistrano-git-plugins.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.11
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "capistrano-git-plugins"
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.11"
|
|
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 = "2012-02-
|
|
12
|
+
s.date = "2012-02-16"
|
|
13
13
|
s.description = "Plugins to support capistrano-git deployments"
|
|
14
14
|
s.email = "ryan.moran@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -18,6 +18,11 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
20
|
".document",
|
|
21
|
+
".idea/capistrano-git-plugins.iml",
|
|
22
|
+
".idea/encodings.xml",
|
|
23
|
+
".idea/misc.xml",
|
|
24
|
+
".idea/modules.xml",
|
|
25
|
+
".idea/vcs.xml",
|
|
21
26
|
".rvmrc",
|
|
22
27
|
"Gemfile",
|
|
23
28
|
"Gemfile.lock",
|
|
@@ -7,7 +7,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
7
7
|
task :notify_hoptoad, :except => { :no_release => true } do
|
|
8
8
|
rails_env = fetch(:hoptoad_env, fetch(:rails_env, 'production'))
|
|
9
9
|
local_user = ENV['USER'] || ENV['USERNAME']
|
|
10
|
-
executable = RUBY_PLATFORM.downcase.include?('mswin') ? 'rake.bat' : 'rake'
|
|
10
|
+
executable = fetch(:rake, (RUBY_PLATFORM.downcase.include?('mswin') ? 'rake.bat' : 'rake'))
|
|
11
11
|
notify_command = "#{executable} hoptoad:deploy TO=#{rails_env} REPO=#{repository} USER=#{local_user}"
|
|
12
12
|
notify_command << " API_KEY=#{ENV['API_KEY']}" if ENV['API_KEY']
|
|
13
13
|
puts "\n\n### NOTIFY HOPTOAD: Notifying Hoptoad of Deploy (#{notify_command})\n\n"
|
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:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 11
|
|
10
|
+
version: 0.0.11
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Ryan Moran
|
|
@@ -15,11 +15,10 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-02-
|
|
18
|
+
date: 2012-02-16 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
|
-
|
|
22
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
21
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
|
23
22
|
none: false
|
|
24
23
|
requirements:
|
|
25
24
|
- - ~>
|
|
@@ -30,9 +29,10 @@ dependencies:
|
|
|
30
29
|
- 6
|
|
31
30
|
- 4
|
|
32
31
|
version: 1.6.4
|
|
33
|
-
prerelease: false
|
|
34
32
|
name: jeweler
|
|
35
|
-
|
|
33
|
+
prerelease: false
|
|
34
|
+
type: :development
|
|
35
|
+
requirement: *id001
|
|
36
36
|
description: Plugins to support capistrano-git deployments
|
|
37
37
|
email: ryan.moran@gmail.com
|
|
38
38
|
executables: []
|
|
@@ -44,6 +44,11 @@ extra_rdoc_files:
|
|
|
44
44
|
- README.rdoc
|
|
45
45
|
files:
|
|
46
46
|
- .document
|
|
47
|
+
- .idea/capistrano-git-plugins.iml
|
|
48
|
+
- .idea/encodings.xml
|
|
49
|
+
- .idea/misc.xml
|
|
50
|
+
- .idea/modules.xml
|
|
51
|
+
- .idea/vcs.xml
|
|
47
52
|
- .rvmrc
|
|
48
53
|
- Gemfile
|
|
49
54
|
- Gemfile.lock
|