gorilla-capistrano-recipes 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -29,10 +29,10 @@ Keep your Capfile clean like this:
29
29
  host: your_db_host
30
30
  }
31
31
 
32
- load 'lib/gorilla-capistrano-recipes/deploy'
33
- load 'lib/gorilla-capistrano-recipes/mysql'
34
- load 'lib/gorilla-capistrano-recipes/passenger'
35
- load 'lib/gorilla-capistrano-recipes/radiant'
32
+ require 'gorilla-capistrano-recipes/deploy'
33
+ require 'gorilla-capistrano-recipes/mysql'
34
+ require 'gorilla-capistrano-recipes/passenger'
35
+ require 'gorilla-capistrano-recipes/radiant'
36
36
 
37
37
  == Note on Patches/Pull Requests
38
38
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -0,0 +1,60 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{gorilla-capistrano-recipes}
8
+ s.version = "0.1.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Benny Degezelle"]
12
+ s.date = %q{2009-12-15}
13
+ s.description = %q{This gem allows for a clean Capfile by setting up common capistrano stuff such as Git preferences, Radiant specifics, db dump helpers, passenger or lighty restart, ...}
14
+ s.email = %q{benny@gorilla-webdesign.be}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "gorilla-capistrano-recipes.gemspec",
27
+ "lib/gorilla-capistrano-recipes.rb",
28
+ "lib/gorilla-capistrano-recipes/deploy.rb",
29
+ "lib/gorilla-capistrano-recipes/lighttpd.rb",
30
+ "lib/gorilla-capistrano-recipes/mysql.rb",
31
+ "lib/gorilla-capistrano-recipes/passenger.rb",
32
+ "lib/gorilla-capistrano-recipes/radiant.rb",
33
+ "lib/tasks/db.rake",
34
+ "test/helper.rb",
35
+ "test/test_gorilla-capistrano-recipes.rb"
36
+ ]
37
+ s.homepage = %q{http://github.com/jomz/gorilla-capistrano-recipes}
38
+ s.rdoc_options = ["--charset=UTF-8"]
39
+ s.require_paths = ["lib"]
40
+ s.rubygems_version = %q{1.3.5}
41
+ s.summary = %q{Common capistrano recipes for Gorilla sites}
42
+ s.test_files = [
43
+ "test/helper.rb",
44
+ "test/test_gorilla-capistrano-recipes.rb"
45
+ ]
46
+
47
+ if s.respond_to? :specification_version then
48
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
49
+ s.specification_version = 3
50
+
51
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
52
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
53
+ else
54
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
55
+ end
56
+ else
57
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
58
+ end
59
+ end
60
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gorilla-capistrano-recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benny Degezelle
@@ -38,6 +38,7 @@ files:
38
38
  - README.rdoc
39
39
  - Rakefile
40
40
  - VERSION
41
+ - gorilla-capistrano-recipes.gemspec
41
42
  - lib/gorilla-capistrano-recipes.rb
42
43
  - lib/gorilla-capistrano-recipes/deploy.rb
43
44
  - lib/gorilla-capistrano-recipes/lighttpd.rb