capistrano-helpers 0.5.5 → 0.5.6
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.markdown +12 -0
- data/VERSION +1 -1
- data/capistrano-helpers.gemspec +2 -2
- data/lib/capistrano-helpers/skylinecms.rb +2 -2
- metadata +3 -3
data/CHANGELOG.markdown
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Capistrano-Helpers Changelog
|
2
2
|
|
3
|
+
## 0.5.6
|
4
|
+
|
5
|
+
Fixed:
|
6
|
+
|
7
|
+
* Really ensure that stylesheets and javascripts are writeable.
|
8
|
+
|
9
|
+
## 0.5.5
|
10
|
+
|
11
|
+
Fixed:
|
12
|
+
|
13
|
+
* Ensure that skyline can write to stylesheets to compile them.
|
14
|
+
|
3
15
|
## 0.5.4
|
4
16
|
|
5
17
|
Changed:
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.6
|
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.6"
|
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-19}
|
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 = [
|
@@ -8,9 +8,9 @@ CapistranoHelpers.with_configuration do
|
|
8
8
|
desc "Make certain directories writeable."
|
9
9
|
task :make_writeable, :roles => :app do
|
10
10
|
# Make this directory writeable so sprockets can compress the javascript.
|
11
|
-
run "sudo chown passenger #{release_path}/public/skyline/javascripts"
|
11
|
+
run "sudo chown -Rh passenger #{release_path}/public/skyline/javascripts"
|
12
12
|
# Make this directory writeable so compass can regenerate the css.
|
13
|
-
run "sudo chown passenger #{release_path}/public/stylesheets/compiled"
|
13
|
+
run "sudo chown -Rh passenger #{release_path}/public/stylesheets/compiled"
|
14
14
|
end
|
15
15
|
|
16
16
|
desc "Create cache directories on the remote server."
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 0.5.
|
8
|
+
- 6
|
9
|
+
version: 0.5.6
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Scott Woods
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-10-
|
17
|
+
date: 2010-10-19 00:00:00 -04:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|