thunder_punch 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/CHANGELOG.mdown +9 -0
- data/VERSION +1 -1
- data/lib/recipes/sass/compile.rb +2 -2
- data/thunder_punch.gemspec +38 -40
- metadata +15 -7
- data/.gitignore +0 -22
data/CHANGELOG.mdown
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
== 0.0.11 (December 3, 2010)
|
2
|
+
|
3
|
+
* Force compilation of sass stylesheets. If you have an external error (like a missing directory or submodule) they won't update even if you fix it. We now just force to make sure updates happen on deployment.
|
4
|
+
|
5
|
+
== 0.0.10 (September 9, 2010)
|
6
|
+
|
7
|
+
* Scope bundler to use the --deployment flag when deploying [Bob Burbach - github.com/peregrinator]
|
8
|
+
* Scope bundler to only install the relevant environments when deploying [Bob Burbach - github.com/peregrinator]
|
9
|
+
|
1
10
|
== 0.0.9 (September 7, 2010)
|
2
11
|
|
3
12
|
* Fix role on database tasks - was :database, should be :db to fit conventions
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.11
|
data/lib/recipes/sass/compile.rb
CHANGED
@@ -2,9 +2,9 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
2
2
|
|
3
3
|
namespace :sass do
|
4
4
|
|
5
|
-
desc "Generate the compiled CSS files from Sass"
|
5
|
+
desc "Generate (force) the compiled CSS files from Sass"
|
6
6
|
task :update_stylesheets, :roles => [:static] do
|
7
|
-
run "cd #{current_path}; script/runner -e #{rails_env} 'Sass::Plugin.update_stylesheets'"
|
7
|
+
run "cd #{current_path}; script/runner -e #{rails_env} 'Sass::Plugin.options[:always_update] = 1; Sass::Plugin.update_stylesheets'"
|
8
8
|
end
|
9
9
|
|
10
10
|
end # end namespace
|
data/thunder_punch.gemspec
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{thunder_punch}
|
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 = ["Bob Burbach"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-12-03}
|
13
13
|
s.description = %q{Collection of capistano recipes for deployment and server tasks}
|
14
14
|
s.email = %q{info@criticaljuncture.org}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -17,55 +17,53 @@ Gem::Specification.new do |s|
|
|
17
17
|
]
|
18
18
|
s.files = [
|
19
19
|
".document",
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
"thunder_punch.gemspec"
|
20
|
+
"CHANGELOG.mdown",
|
21
|
+
"MIT-LICENSE",
|
22
|
+
"Manifest",
|
23
|
+
"README.mdown",
|
24
|
+
"Rakefile",
|
25
|
+
"TODO.mdown",
|
26
|
+
"VERSION",
|
27
|
+
"example/amazon.yml",
|
28
|
+
"files/app/maintenance.html.erb",
|
29
|
+
"lib/recipes.rb",
|
30
|
+
"lib/recipes/bundler.rb",
|
31
|
+
"lib/recipes/database.rb",
|
32
|
+
"lib/recipes/deployment.rb",
|
33
|
+
"lib/recipes/deployment/deployment.rb",
|
34
|
+
"lib/recipes/deployment/migration.rb",
|
35
|
+
"lib/recipes/deployment/passenger.rb",
|
36
|
+
"lib/recipes/deployment/symlinks.rb",
|
37
|
+
"lib/recipes/ec2.rb",
|
38
|
+
"lib/recipes/ec2/ami.rb",
|
39
|
+
"lib/recipes/jekyll/jekyll.rb",
|
40
|
+
"lib/recipes/less/less.rb",
|
41
|
+
"lib/recipes/sass.rb",
|
42
|
+
"lib/recipes/sass/compile.rb",
|
43
|
+
"lib/recipes/site.rb",
|
44
|
+
"lib/recipes/thinking_sphinx.rb",
|
45
|
+
"lib/recipes/varnish.rb",
|
46
|
+
"lib/recipes/varnish/cache.rb",
|
47
|
+
"lib/thunder_punch.rb",
|
48
|
+
"lib/utilities/utilities.rb",
|
49
|
+
"test/helper.rb",
|
50
|
+
"test/test_thunder_punch.rb",
|
51
|
+
"thunder_punch.gemspec"
|
53
52
|
]
|
54
53
|
s.homepage = %q{http://github.com/critical/thunder_punch}
|
55
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
56
54
|
s.require_paths = ["lib"]
|
57
|
-
s.rubygems_version = %q{1.3.
|
55
|
+
s.rubygems_version = %q{1.3.7}
|
58
56
|
s.summary = %q{Collection of capistano recipes for deployment and server tasks}
|
59
57
|
s.test_files = [
|
60
58
|
"test/helper.rb",
|
61
|
-
|
59
|
+
"test/test_thunder_punch.rb"
|
62
60
|
]
|
63
61
|
|
64
62
|
if s.respond_to? :specification_version then
|
65
63
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
66
64
|
s.specification_version = 3
|
67
65
|
|
68
|
-
if Gem::Version.new(Gem::
|
66
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
69
67
|
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
70
68
|
s.add_runtime_dependency(%q<capistrano>, [">= 2.5.5"])
|
71
69
|
else
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thunder_punch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 9
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
9
|
+
- 11
|
10
|
+
version: 0.0.11
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Bob Burbach
|
@@ -14,16 +15,18 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-
|
18
|
+
date: 2010-12-03 00:00:00 -08:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: thoughtbot-shoulda
|
22
23
|
prerelease: false
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
24
26
|
requirements:
|
25
27
|
- - ">="
|
26
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
27
30
|
segments:
|
28
31
|
- 0
|
29
32
|
version: "0"
|
@@ -33,9 +36,11 @@ dependencies:
|
|
33
36
|
name: capistrano
|
34
37
|
prerelease: false
|
35
38
|
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
36
40
|
requirements:
|
37
41
|
- - ">="
|
38
42
|
- !ruby/object:Gem::Version
|
43
|
+
hash: 17
|
39
44
|
segments:
|
40
45
|
- 2
|
41
46
|
- 5
|
@@ -53,7 +58,6 @@ extra_rdoc_files:
|
|
53
58
|
- README.mdown
|
54
59
|
files:
|
55
60
|
- .document
|
56
|
-
- .gitignore
|
57
61
|
- CHANGELOG.mdown
|
58
62
|
- MIT-LICENSE
|
59
63
|
- Manifest
|
@@ -91,28 +95,32 @@ homepage: http://github.com/critical/thunder_punch
|
|
91
95
|
licenses: []
|
92
96
|
|
93
97
|
post_install_message:
|
94
|
-
rdoc_options:
|
95
|
-
|
98
|
+
rdoc_options: []
|
99
|
+
|
96
100
|
require_paths:
|
97
101
|
- lib
|
98
102
|
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
none: false
|
99
104
|
requirements:
|
100
105
|
- - ">="
|
101
106
|
- !ruby/object:Gem::Version
|
107
|
+
hash: 3
|
102
108
|
segments:
|
103
109
|
- 0
|
104
110
|
version: "0"
|
105
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
|
+
none: false
|
106
113
|
requirements:
|
107
114
|
- - ">="
|
108
115
|
- !ruby/object:Gem::Version
|
116
|
+
hash: 3
|
109
117
|
segments:
|
110
118
|
- 0
|
111
119
|
version: "0"
|
112
120
|
requirements: []
|
113
121
|
|
114
122
|
rubyforge_project:
|
115
|
-
rubygems_version: 1.3.
|
123
|
+
rubygems_version: 1.3.7
|
116
124
|
signing_key:
|
117
125
|
specification_version: 3
|
118
126
|
summary: Collection of capistano recipes for deployment and server tasks
|