obbistrano 1.1.145 → 1.1.146
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/lib/obbistrano_tasks.rb +8 -6
- data/obbistrano.gemspec +1 -1
- metadata +2 -2
data/lib/obbistrano_tasks.rb
CHANGED
@@ -39,23 +39,25 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
39
39
|
end
|
40
40
|
|
41
41
|
#### Variable defaults
|
42
|
-
set :php_bin,
|
42
|
+
set :php_bin, "php"
|
43
43
|
|
44
44
|
# Flags an app to install composer - false by default
|
45
|
-
set :use_composer,
|
45
|
+
set :use_composer, false
|
46
46
|
|
47
47
|
# If set to false download/install composer
|
48
|
-
set :composer_bin,
|
48
|
+
set :composer_bin, false
|
49
49
|
|
50
50
|
# Options to pass to composer when installing/updating
|
51
|
-
set :composer_options,
|
51
|
+
set :composer_options, "--no-scripts --verbose --prefer-dist"
|
52
52
|
|
53
53
|
# Whether to update vendors using the configured dependency manager (composer or bin/vendors)
|
54
|
-
set :update_vendors,
|
54
|
+
set :update_vendors, false
|
55
55
|
|
56
56
|
# run bin/vendors script in mode (upgrade, install (faster if shared /vendor folder) or reinstall)
|
57
|
-
set :vendors_mode,
|
57
|
+
set :vendors_mode, "reinstall"
|
58
58
|
|
59
|
+
# Path to deploy to after login. Defaults to root
|
60
|
+
set :deploy_to, '.'
|
59
61
|
|
60
62
|
|
61
63
|
#### Performs the initial setup for tasks ####
|
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.146"
|
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=
|