factorylabs-fdlcap 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/fdlcap.gemspec +2 -1
- data/lib/fdlcap/recipes.rb +1 -0
- data/lib/fdlcap/recipes/ruby_inline.rb +19 -0
- metadata +2 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.6
|
data/fdlcap.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{fdlcap}
|
5
|
-
s.version = "0.2.
|
5
|
+
s.version = "0.2.6"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Factory Design Labs"]
|
@@ -40,6 +40,7 @@ Gem::Specification.new do |s|
|
|
40
40
|
"lib/fdlcap/recipes/performance.rb",
|
41
41
|
"lib/fdlcap/recipes/rake.rb",
|
42
42
|
"lib/fdlcap/recipes/rsync.rb",
|
43
|
+
"lib/fdlcap/recipes/ruby_inline.rb",
|
43
44
|
"lib/fdlcap/recipes/sass.rb",
|
44
45
|
"lib/fdlcap/recipes/slice.rb",
|
45
46
|
"lib/fdlcap/recipes/ssh.rb",
|
data/lib/fdlcap/recipes.rb
CHANGED
@@ -21,6 +21,7 @@ require 'fdlcap/recipes/nginx'
|
|
21
21
|
require 'fdlcap/recipes/performance'
|
22
22
|
require 'fdlcap/recipes/rake'
|
23
23
|
require 'fdlcap/recipes/rsync'
|
24
|
+
require 'fdlcap/recipes/ruby_inline'
|
24
25
|
require 'fdlcap/recipes/sass'
|
25
26
|
require 'fdlcap/recipes/slice'
|
26
27
|
require 'fdlcap/recipes/ssh'
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Capistrano::Configuration.instance(:must_exist).load do
|
2
|
+
define_recipe :ruby_inline do
|
3
|
+
|
4
|
+
#
|
5
|
+
# Tasks
|
6
|
+
#
|
7
|
+
task :ruby_inline, :roles => :app, :except => {:no_release => true, :no_symlink => true} do
|
8
|
+
run "mkdir #{release_path}/tmp/ruby_inline/"
|
9
|
+
run "mkdir #{release_path}/tmp/ruby_inline/.ruby_inline"
|
10
|
+
sudo "chmod 755 #{release_path}/tmp/ruby_inline/"
|
11
|
+
sudo "chmod 755 #{release_path}/tmp/ruby_inline/.ruby_inline"
|
12
|
+
end
|
13
|
+
|
14
|
+
#
|
15
|
+
# Callbacks
|
16
|
+
#
|
17
|
+
after "deploy:symlink_configs", "ruby_inline"
|
18
|
+
end
|
19
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: factorylabs-fdlcap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Factory Design Labs
|
@@ -87,6 +87,7 @@ files:
|
|
87
87
|
- lib/fdlcap/recipes/performance.rb
|
88
88
|
- lib/fdlcap/recipes/rake.rb
|
89
89
|
- lib/fdlcap/recipes/rsync.rb
|
90
|
+
- lib/fdlcap/recipes/ruby_inline.rb
|
90
91
|
- lib/fdlcap/recipes/sass.rb
|
91
92
|
- lib/fdlcap/recipes/slice.rb
|
92
93
|
- lib/fdlcap/recipes/ssh.rb
|