obbistrano 1.1.154 → 1.1.155
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.
- checksums.yaml +4 -4
- data/lib/obbistrano_tasks.rb +4 -4
- data/obbistrano.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f96f2afa4467d656c6a4a81ddda067e839685fb
|
|
4
|
+
data.tar.gz: ae5ad4b0db1c6b3899fc5baacf83a941c1adeeea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af58d0b122f447e0f43588c830b412a5628ef135e725c0c03e0f883eebe952aedac810bdd6721ce5c74b85d48c72656de9228e37451af98481592203d0df9baa
|
|
7
|
+
data.tar.gz: b10f9e1c3ecf06c1ff663d17c2eb6e0bdbfa073dde7419a2cb9f79f764b72c8048a04e22686dc94a9404de0315a9fe3250b2ed65e0cbe0e997f392485ddba5ea
|
data/lib/obbistrano_tasks.rb
CHANGED
|
@@ -77,9 +77,9 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
77
77
|
task :full_deploy, :roles =>[:web] do
|
|
78
78
|
host.config_check
|
|
79
79
|
deploy_check
|
|
80
|
-
php_wax_deploy if defined?
|
|
81
|
-
cms_deploy if defined?
|
|
82
|
-
symlink if defined?
|
|
80
|
+
php_wax_deploy if defined? phpwax
|
|
81
|
+
cms_deploy if defined? cms
|
|
82
|
+
symlink if defined? app_environment
|
|
83
83
|
composer.install if use_composer
|
|
84
84
|
bundle.css
|
|
85
85
|
bundle.js
|
|
@@ -267,7 +267,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
267
267
|
end
|
|
268
268
|
|
|
269
269
|
command = ['crontab']
|
|
270
|
-
command << "-u #{user}" if defined?
|
|
270
|
+
command << "-u #{user}" if defined? user
|
|
271
271
|
command << tmp_cron_file
|
|
272
272
|
|
|
273
273
|
if system(command.join(' '))
|
data/obbistrano.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{obbistrano}
|
|
5
|
-
s.version = "1.1.
|
|
5
|
+
s.version = "1.1.155"
|
|
6
6
|
s.authors = ["Ross Riley", "One Black Bear"]
|
|
7
7
|
s.date = Time.now
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|