obbistrano 1.1.36 → 1.1.37

Sign up to get free protection for your applications and to get access to all the features.
@@ -115,7 +115,7 @@ Capistrano::Configuration.instance(:must_exist).load do
115
115
  # DEPLOYING APPLICATIONS
116
116
  # =============================================================================
117
117
 
118
- task :deploy, :roles =>[:web] do
118
+ task :full_deploy, :roles =>[:web] do
119
119
  host.config_check
120
120
  deploy_check
121
121
  php_wax_deploy if defined? "#{phpwax}"
@@ -123,6 +123,14 @@ Capistrano::Configuration.instance(:must_exist).load do
123
123
  bundle.css
124
124
  bundle.js
125
125
  end
126
+
127
+ desc "Deploys the application only - no Framework / Plugins"
128
+ task :deploy, :roles =>[:web] do
129
+ host.config_check
130
+ deploy_check
131
+ bundle.css
132
+ bundle.js
133
+ end
126
134
 
127
135
  task :deploy_check, :roles =>[:web] do
128
136
  fetch "repository" rescue abort "You have not specified a repository for this application"
@@ -252,7 +260,7 @@ Capistrano::Configuration.instance(:must_exist).load do
252
260
  desc "Uses the specified repository to deploy an application. Also checks for correct versions of PHPWax and plugins."
253
261
  task :default, :roles => [:web] do
254
262
  logger.level=-1
255
- app.deploy
263
+ app.full_deploy
256
264
  end
257
265
  end
258
266
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{obbistrano}
5
- s.version = "1.1.36"
5
+ s.version = "1.1.37"
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=
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: obbistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.36
4
+ version: 1.1.37
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ross Riley