alpha_omega 0.0.38 → 0.0.39
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/Gemfile.lock +1 -1
- data/recipes/alpha_omega/deploy.rb +2 -16
- data/recipes/alpha_omega/version.rb +1 -1
- metadata +4 -4
data/Gemfile.lock
CHANGED
|
@@ -41,10 +41,8 @@ Capistrano::Configuration.instance(:must_exist).load do |config|
|
|
|
41
41
|
|
|
42
42
|
_cset :dir_perms, "0775"
|
|
43
43
|
|
|
44
|
-
_cset :ruby_env, false
|
|
45
|
-
_cset :ruby_rvm, false
|
|
46
|
-
|
|
47
44
|
_cset :bundler_options, "--deployment --without development test"
|
|
45
|
+
_cset :ruby_loader, ""
|
|
48
46
|
|
|
49
47
|
# =========================================================================
|
|
50
48
|
# These variables should NOT be changed unless you are very confident in
|
|
@@ -512,20 +510,8 @@ end
|
|
|
512
510
|
set -e; cd #{release_path};
|
|
513
511
|
SCRIPT
|
|
514
512
|
|
|
515
|
-
if ruby_env
|
|
516
|
-
run_script += <<-SCRIPT
|
|
517
|
-
[[ -f #{ruby_env} ]] && . #{ruby_env};
|
|
518
|
-
SCRIPT
|
|
519
|
-
end
|
|
520
|
-
|
|
521
|
-
if ruby_rvm
|
|
522
|
-
run_script += <<-SCRIPT
|
|
523
|
-
[[ -f #{ruby_rvm} ]] && { set +e; source #{ruby_rvm}; set -e; };
|
|
524
|
-
SCRIPT
|
|
525
|
-
end
|
|
526
|
-
|
|
527
513
|
run_script += <<-SCRIPT
|
|
528
|
-
bundle check 2>&1 > /dev/null || { bundle install --quiet --local #{bundler_options} && bundle check; };
|
|
514
|
+
#{ruby_loader} bundle check 2>&1 > /dev/null || { #{ruby_loader} bundle install --quiet --local #{bundler_options} && #{ruby_loader} bundle check; };
|
|
529
515
|
SCRIPT
|
|
530
516
|
|
|
531
517
|
run run_script.gsub(/[\n\r]+[ \t]+/, " ")
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alpha_omega
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 81
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 39
|
|
10
|
+
version: 0.0.39
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- David Nghiem
|
|
@@ -1239,7 +1239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1239
1239
|
requirements: []
|
|
1240
1240
|
|
|
1241
1241
|
rubyforge_project:
|
|
1242
|
-
rubygems_version: 1.8.
|
|
1242
|
+
rubygems_version: 1.8.10
|
|
1243
1243
|
signing_key:
|
|
1244
1244
|
specification_version: 3
|
|
1245
1245
|
summary: alpha_omega capistrano recipes
|