capones_recipes 0.14.2 → 0.14.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/VERSION +1 -1
- data/capones_recipes.gemspec +2 -1
- data/lib/recipes/airbrake/setup.rb +2 -0
- data/lib/recipes/airbrake/symlink.rb +10 -0
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.14.
|
1
|
+
0.14.3
|
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.14.
|
8
|
+
s.version = "0.14.3"
|
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", "Simon Hürlimann"]
|
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
|
|
35
35
|
"lib/cookbook/wikisigns.rb",
|
36
36
|
"lib/recipes/airbrake.rb",
|
37
37
|
"lib/recipes/airbrake/setup.rb",
|
38
|
+
"lib/recipes/airbrake/symlink.rb",
|
38
39
|
"lib/recipes/airbrake/templates/airbrake.rb",
|
39
40
|
"lib/recipes/bookyt.rb",
|
40
41
|
"lib/recipes/bookyt/setup.rb",
|
@@ -1,6 +1,8 @@
|
|
1
1
|
require File.expand_path(File.dirname(__FILE__) + '/../utilities')
|
2
2
|
|
3
3
|
Capistrano::Configuration.instance(true).load do
|
4
|
+
after "deploy:setup", "airbrake:setup"
|
5
|
+
|
4
6
|
namespace :airbrake do
|
5
7
|
desc "Creates the air brake initializer with the custom API key."
|
6
8
|
task :setup do
|
@@ -0,0 +1,10 @@
|
|
1
|
+
Capistrano::Configuration.instance(true).load do
|
2
|
+
before "deploy:migrate", "airbrake:symlink"
|
3
|
+
|
4
|
+
namespace :airbrake do
|
5
|
+
desc "Sets the symlink to shared/config/initializers/airbrake.rb"
|
6
|
+
task :symlink do
|
7
|
+
run "ln -nfs #{shared_path}/config/initializers/airbrake.rb #{release_path}/config/initializers/airbrake.rb"
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: capones_recipes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.14.
|
5
|
+
version: 0.14.3
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Roman Simecek
|
@@ -130,6 +130,7 @@ files:
|
|
130
130
|
- lib/cookbook/wikisigns.rb
|
131
131
|
- lib/recipes/airbrake.rb
|
132
132
|
- lib/recipes/airbrake/setup.rb
|
133
|
+
- lib/recipes/airbrake/symlink.rb
|
133
134
|
- lib/recipes/airbrake/templates/airbrake.rb
|
134
135
|
- lib/recipes/bookyt.rb
|
135
136
|
- lib/recipes/bookyt/setup.rb
|
@@ -172,7 +173,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
172
173
|
requirements:
|
173
174
|
- - ">="
|
174
175
|
- !ruby/object:Gem::Version
|
175
|
-
hash:
|
176
|
+
hash: -1202212182277687559
|
176
177
|
segments:
|
177
178
|
- 0
|
178
179
|
version: "0"
|