hudson_deployer 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.
- data/Manifest +1 -0
- data/Rakefile +1 -1
- data/hudson_deployer.gemspec +3 -3
- data/lib/hudson_deployer.rb +3 -3
- metadata +5 -5
data/Manifest
CHANGED
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('hudson_deployer', '0.0.
|
5
|
+
Echoe.new('hudson_deployer', '0.0.2') do |p|
|
6
6
|
p.description = "Unmagical Capistrano deployment using Hudson"
|
7
7
|
p.url = "https://github.com/collinvandyck/hudson_deployer"
|
8
8
|
p.author = "Collin VanDyck"
|
data/hudson_deployer.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{hudson_deployer}
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Collin VanDyck"]
|
@@ -10,12 +10,12 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.description = %q{Unmagical Capistrano deployment using Hudson}
|
11
11
|
s.email = %q{collinvandyck @nospam@ gmail.com}
|
12
12
|
s.extra_rdoc_files = ["LICENSE", "README.md", "lib/hudson_deployer.rb"]
|
13
|
-
s.files = ["LICENSE", "Manifest", "README.md", "Rakefile", "
|
13
|
+
s.files = ["LICENSE", "Manifest", "README.md", "Rakefile", "hudson_deployer.gemspec", "lib/hudson_deployer.rb"]
|
14
14
|
s.homepage = %q{https://github.com/collinvandyck/hudson_deployer}
|
15
15
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Hudson_deployer", "--main", "README.md"]
|
16
16
|
s.require_paths = ["lib"]
|
17
17
|
s.rubyforge_project = %q{hudson_deployer}
|
18
|
-
s.rubygems_version = %q{1.
|
18
|
+
s.rubygems_version = %q{1.6.2}
|
19
19
|
s.summary = %q{Unmagical Capistrano deployment using Hudson}
|
20
20
|
|
21
21
|
if s.respond_to? :specification_version then
|
data/lib/hudson_deployer.rb
CHANGED
@@ -130,13 +130,13 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
130
130
|
end
|
131
131
|
|
132
132
|
set(:local_entries) do
|
133
|
-
Dir.entries(File.expand_path(
|
133
|
+
Dir.entries(File.expand_path(Dir.pwd)).reject do |name|
|
134
134
|
name =~ /^\./ || name == "Capfile"
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
138
|
set(:template_names) do
|
139
|
-
Dir.entries(File.expand_path(
|
139
|
+
Dir.entries(File.expand_path(Dir.pwd + "/templates")).reject do |name|
|
140
140
|
name =~ /^\./
|
141
141
|
end
|
142
142
|
end
|
@@ -157,7 +157,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
157
157
|
end
|
158
158
|
|
159
159
|
def create_local_build
|
160
|
-
from = File.expand_path(
|
160
|
+
from = File.expand_path(Dir.pwd + "/" + application)
|
161
161
|
local_entries.each { |f| FileUtils.cp_r f, tmpdir, :verbose => true }
|
162
162
|
end
|
163
163
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hudson_deployer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Collin VanDyck
|
@@ -34,8 +34,8 @@ files:
|
|
34
34
|
- Manifest
|
35
35
|
- README.md
|
36
36
|
- Rakefile
|
37
|
-
- lib/hudson_deployer.rb
|
38
37
|
- hudson_deployer.gemspec
|
38
|
+
- lib/hudson_deployer.rb
|
39
39
|
has_rdoc: true
|
40
40
|
homepage: https://github.com/collinvandyck/hudson_deployer
|
41
41
|
licenses: []
|
@@ -72,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements: []
|
73
73
|
|
74
74
|
rubyforge_project: hudson_deployer
|
75
|
-
rubygems_version: 1.
|
75
|
+
rubygems_version: 1.6.2
|
76
76
|
signing_key:
|
77
77
|
specification_version: 3
|
78
78
|
summary: Unmagical Capistrano deployment using Hudson
|