thunder_punch 0.1.2 → 0.1.3

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 CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.1.3 (Jan 7, 2015)
2
+ * update call to script/runner to be prefixed with ./ (compatibility for old rails and new ruby)
3
+ * add Gemfile for development usage
4
+ * update Rakefile to fix obsolete code
5
+
1
6
  == 0.1.0 (Jul, 30, 2014)
2
7
  * Remove ec2 and less recipes as these are out of date and not in use
3
8
  * Change which recipes are loaded by default so that the gem footprint is smaller
data/Rakefile CHANGED
@@ -43,8 +43,8 @@ task :test => :check_dependencies
43
43
 
44
44
  task :default => :test
45
45
 
46
- require 'rake/rdoctask'
47
- Rake::RDocTask.new do |rdoc|
46
+ require 'rdoc/task'
47
+ RDoc::Task.new do |rdoc|
48
48
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
49
49
 
50
50
  rdoc.rdoc_dir = 'rdoc'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -5,7 +5,7 @@ Capistrano::Configuration.instance(:must_exist).load do
5
5
  namespace :sass do
6
6
  desc "Generate (force) the compiled CSS files from Sass"
7
7
  task :update_stylesheets, :roles => sass_roles do
8
- run "cd #{current_path}; script/runner -e #{rails_env} 'Sass::Plugin.options[:always_update] = 1; Sass::Plugin.update_stylesheets'"
8
+ run "cd #{current_path}; ./script/runner -e #{rails_env} 'Sass::Plugin.options[:always_update] = 1; Sass::Plugin.update_stylesheets'"
9
9
  end
10
10
  end
11
11
  end
@@ -5,34 +5,75 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "thunder_punch"
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
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 = "2014-07-30"
12
+ s.date = "2015-01-07"
13
13
  s.description = "Collection of capistano recipes for deployment and server tasks"
14
14
  s.email = "info@criticaljuncture.org"
15
15
  s.extra_rdoc_files = [
16
16
  "README.mdown"
17
17
  ]
18
- s.files = `git ls-files`.split("\n")
19
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.files = [
19
+ ".document",
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
+ "files/assets/assets.rake",
30
+ "files/assets/assets_versions.rb",
31
+ "lib/thunder_punch.rb",
32
+ "lib/thunder_punch/recipes.rb",
33
+ "lib/thunder_punch/recipes/apache.rb",
34
+ "lib/thunder_punch/recipes/asset_pipeline/assets_version.rb",
35
+ "lib/thunder_punch/recipes/asset_pipeline/precompile.rb",
36
+ "lib/thunder_punch/recipes/assets.rb",
37
+ "lib/thunder_punch/recipes/bundler.rb",
38
+ "lib/thunder_punch/recipes/database.rb",
39
+ "lib/thunder_punch/recipes/deployment.rb",
40
+ "lib/thunder_punch/recipes/deployment/deployment.rb",
41
+ "lib/thunder_punch/recipes/deployment/git_based.rb",
42
+ "lib/thunder_punch/recipes/deployment/migration.rb",
43
+ "lib/thunder_punch/recipes/deployment/symlinks.rb",
44
+ "lib/thunder_punch/recipes/honeybadger.rb",
45
+ "lib/thunder_punch/recipes/jekyll/jekyll.rb",
46
+ "lib/thunder_punch/recipes/passenger.rb",
47
+ "lib/thunder_punch/recipes/sass.rb",
48
+ "lib/thunder_punch/recipes/sass/compile.rb",
49
+ "lib/thunder_punch/recipes/site.rb",
50
+ "lib/thunder_punch/recipes/thinking_sphinx.rb",
51
+ "lib/thunder_punch/recipes/varnish.rb",
52
+ "lib/thunder_punch/recipes/varnish/cache.rb",
53
+ "lib/thunder_punch/utilities/utilities.rb",
54
+ "test/helper.rb",
55
+ "test/test_thunder_punch.rb",
56
+ "thunder_punch.gemspec"
57
+ ]
20
58
  s.homepage = "http://github.com/critical/thunder_punch"
21
59
  s.require_paths = ["lib"]
22
- s.rubygems_version = "1.8.10"
60
+ s.rubygems_version = "1.8.29"
23
61
  s.summary = "Collection of capistano recipes for deployment and server tasks"
24
62
 
25
63
  if s.respond_to? :specification_version then
26
64
  s.specification_version = 3
27
65
 
28
66
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
67
+ s.add_runtime_dependency(%q<jeweler>, [">= 0"])
29
68
  s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
30
69
  s.add_runtime_dependency(%q<capistrano>, [">= 2.5.5"])
31
70
  else
71
+ s.add_dependency(%q<jeweler>, [">= 0"])
32
72
  s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
33
73
  s.add_dependency(%q<capistrano>, [">= 2.5.5"])
34
74
  end
35
75
  else
76
+ s.add_dependency(%q<jeweler>, [">= 0"])
36
77
  s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
37
78
  s.add_dependency(%q<capistrano>, [">= 2.5.5"])
38
79
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thunder_punch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,24 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-30 00:00:00.000000000 Z
12
+ date: 2015-01-07 00:00:00.000000000 Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: jeweler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
14
30
  - !ruby/object:Gem::Dependency
15
31
  name: thoughtbot-shoulda
16
32
  requirement: !ruby/object:Gem::Requirement
@@ -51,7 +67,6 @@ extra_rdoc_files:
51
67
  - README.mdown
52
68
  files:
53
69
  - .document
54
- - .gitignore
55
70
  - CHANGELOG.mdown
56
71
  - MIT-LICENSE
57
72
  - Manifest
@@ -109,10 +124,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
124
  version: '0'
110
125
  requirements: []
111
126
  rubyforge_project:
112
- rubygems_version: 1.8.25
127
+ rubygems_version: 1.8.29
113
128
  signing_key:
114
129
  specification_version: 3
115
130
  summary: Collection of capistano recipes for deployment and server tasks
116
- test_files:
117
- - test/helper.rb
118
- - test/test_thunder_punch.rb
131
+ test_files: []
data/.gitignore DELETED
@@ -1,22 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
- *.gem
21
-
22
- ## PROJECT::SPECIFIC