capones_recipes 0.3.9 → 0.4.0
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/capones_recipes.gemspec +2 -1
- data/lib/cookbook/wikisigns.rb +10 -0
- metadata +3 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.4.0
|
data/capones_recipes.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{capones_recipes}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.4.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Roman Simecek"]
|
|
@@ -32,6 +32,7 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
"lib/capones_recipes.rb",
|
|
33
33
|
"lib/cookbook/rails.rb",
|
|
34
34
|
"lib/cookbook/rails31.rb",
|
|
35
|
+
"lib/cookbook/wikisigns.rb",
|
|
35
36
|
"lib/recipes/database.rb",
|
|
36
37
|
"lib/recipes/database/mysql.rb",
|
|
37
38
|
"lib/recipes/database/sqlite.rb",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
require 'capistrano'
|
|
2
|
+
require 'capistrano/cli'
|
|
3
|
+
require 'capistrano_colors'
|
|
4
|
+
# Passenger
|
|
5
|
+
require 'cap_recipes/tasks/passenger'
|
|
6
|
+
|
|
7
|
+
load File.join(File.dirname(__FILE__), '../recipes/rails.rb')
|
|
8
|
+
load File.join(File.dirname(__FILE__), '../recipes/settings_logic.rb')
|
|
9
|
+
load File.join(File.dirname(__FILE__), '../recipes/new_relic.rb')
|
|
10
|
+
load File.join(File.dirname(__FILE__), '../recipes/database/mysql.rb')
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: capones_recipes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.
|
|
5
|
+
version: 0.4.0
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Roman Simecek
|
|
@@ -126,6 +126,7 @@ files:
|
|
|
126
126
|
- lib/capones_recipes.rb
|
|
127
127
|
- lib/cookbook/rails.rb
|
|
128
128
|
- lib/cookbook/rails31.rb
|
|
129
|
+
- lib/cookbook/wikisigns.rb
|
|
129
130
|
- lib/recipes/database.rb
|
|
130
131
|
- lib/recipes/database/mysql.rb
|
|
131
132
|
- lib/recipes/database/sqlite.rb
|
|
@@ -159,7 +160,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
159
160
|
requirements:
|
|
160
161
|
- - ">="
|
|
161
162
|
- !ruby/object:Gem::Version
|
|
162
|
-
hash:
|
|
163
|
+
hash: 916987034803103105
|
|
163
164
|
segments:
|
|
164
165
|
- 0
|
|
165
166
|
version: "0"
|