capistrano-helpers 0.5.4 → 0.5.5
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/VERSION +1 -1
- data/capistrano-helpers.gemspec +4 -4
- data/lib/capistrano-helpers/skylinecms.rb +2 -0
- metadata +4 -11
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.5
|
data/capistrano-helpers.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{capistrano-helpers}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Scott Woods"]
|
|
12
|
-
s.date = %q{2010-10-
|
|
12
|
+
s.date = %q{2010-10-11}
|
|
13
13
|
s.description = %q{A set of optional extensions to capistrano to make common tasks easier.}
|
|
14
14
|
s.email = %q{scott@westarete.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
|
|
|
46
46
|
s.homepage = %q{http://github.com/westarete/capistrano-helpers}
|
|
47
47
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
48
48
|
s.require_paths = ["lib"]
|
|
49
|
-
s.rubygems_version = %q{1.3.
|
|
49
|
+
s.rubygems_version = %q{1.3.6}
|
|
50
50
|
s.summary = %q{A set of optional extensions to capistrano to make common tasks easier.}
|
|
51
51
|
s.test_files = [
|
|
52
52
|
"test/test_helper.rb"
|
|
@@ -56,7 +56,7 @@ Gem::Specification.new do |s|
|
|
|
56
56
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
57
57
|
s.specification_version = 3
|
|
58
58
|
|
|
59
|
-
if Gem::Version.new(Gem::
|
|
59
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
60
60
|
s.add_runtime_dependency(%q<capistrano>, [">= 2.0.0"])
|
|
61
61
|
else
|
|
62
62
|
s.add_dependency(%q<capistrano>, [">= 2.0.0"])
|
|
@@ -9,6 +9,8 @@ CapistranoHelpers.with_configuration do
|
|
|
9
9
|
task :make_writeable, :roles => :app do
|
|
10
10
|
# Make this directory writeable so sprockets can compress the javascript.
|
|
11
11
|
run "sudo chown passenger #{release_path}/public/skyline/javascripts"
|
|
12
|
+
# Make this directory writeable so compass can regenerate the css.
|
|
13
|
+
run "sudo chown passenger #{release_path}/public/stylesheets/compiled"
|
|
12
14
|
end
|
|
13
15
|
|
|
14
16
|
desc "Create cache directories on the remote server."
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: 3
|
|
5
4
|
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 0
|
|
8
7
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
8
|
+
- 5
|
|
9
|
+
version: 0.5.5
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Scott Woods
|
|
@@ -15,18 +14,16 @@ autorequire:
|
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date: 2010-10-
|
|
17
|
+
date: 2010-10-11 00:00:00 -04:00
|
|
19
18
|
default_executable:
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: capistrano
|
|
23
22
|
prerelease: false
|
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
24
|
requirements:
|
|
27
25
|
- - ">="
|
|
28
26
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 15
|
|
30
27
|
segments:
|
|
31
28
|
- 2
|
|
32
29
|
- 0
|
|
@@ -79,27 +76,23 @@ rdoc_options:
|
|
|
79
76
|
require_paths:
|
|
80
77
|
- lib
|
|
81
78
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
|
-
none: false
|
|
83
79
|
requirements:
|
|
84
80
|
- - ">="
|
|
85
81
|
- !ruby/object:Gem::Version
|
|
86
|
-
hash: 3
|
|
87
82
|
segments:
|
|
88
83
|
- 0
|
|
89
84
|
version: "0"
|
|
90
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
|
-
none: false
|
|
92
86
|
requirements:
|
|
93
87
|
- - ">="
|
|
94
88
|
- !ruby/object:Gem::Version
|
|
95
|
-
hash: 3
|
|
96
89
|
segments:
|
|
97
90
|
- 0
|
|
98
91
|
version: "0"
|
|
99
92
|
requirements: []
|
|
100
93
|
|
|
101
94
|
rubyforge_project:
|
|
102
|
-
rubygems_version: 1.3.
|
|
95
|
+
rubygems_version: 1.3.6
|
|
103
96
|
signing_key:
|
|
104
97
|
specification_version: 3
|
|
105
98
|
summary: A set of optional extensions to capistrano to make common tasks easier.
|