inploy 1.9.1 → 1.9.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -130,6 +130,7 @@ cache_dirs = ['public/cache', 'tmp/cache'] # default ['public/cache']
130
130
  skip_steps = ['install_gems', 'clear_cache'] # default []
131
131
  app_folder = 'project_folder' # default empty
132
132
  login_shell = true # default false
133
+ bundler_path = 'another_path' # default ~/.bundle
133
134
  </code></pre>
134
135
 
135
136
  h2. SKIP STEPS
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'rake/gempackagetask'
5
5
  require 'rspec/core/rake_task'
6
6
 
7
7
  GEM = "inploy"
8
- GEM_VERSION = "1.9.1"
8
+ GEM_VERSION = "1.9.3"
9
9
  SUMMARY = "Rails and Sinatra deployment made easy"
10
10
  AUTHOR = "Diego Carrion"
11
11
  EMAIL = "dc.rec1@gmail.com"
data/lib/inploy/deploy.rb CHANGED
@@ -3,7 +3,7 @@ module Inploy
3
3
  include Helper
4
4
  include DSL
5
5
 
6
- attr_accessor :repository, :user, :application, :hosts, :path, :app_folder, :ssh_opts, :branch, :environment, :port, :skip_steps, :cache_dirs, :sudo, :login_shell
6
+ attr_accessor :repository, :user, :application, :hosts, :path, :app_folder, :ssh_opts, :branch, :environment, :port, :skip_steps, :cache_dirs, :sudo, :login_shell, :bundler_path
7
7
 
8
8
  define_callbacks :after_setup, :before_restarting_server
9
9
 
@@ -93,7 +93,7 @@ module Inploy
93
93
  run "rm -R -f public/assets" if jammit_is_installed?
94
94
  run "RAILS_ENV=#{environment} script/delayed_job restart" if file_exists?("script/delayed_job")
95
95
  rake_if_included "more:parse"
96
- run "compass compile" if file_exists?("config/initializers/compass.rb")
96
+ run "compass compile" if file_exists?("config/compass.rb")
97
97
  rake_if_included "barista:brew"
98
98
  rake_if_included "asset:packager:build_all"
99
99
  rake_if_included "hoptoad:deploy RAILS_ENV=#{environment} TO=#{environment} REPO=#{repository} REVISION=#{`git log | head -1 | cut -d ' ' -f 2`}"
data/lib/inploy/helper.rb CHANGED
@@ -57,7 +57,7 @@ module Inploy
57
57
  end
58
58
 
59
59
  def bundle_cmd
60
- "bundle install --path ~/.bundle --without development test cucumber"
60
+ "bundle install --path #{bundler_path || '~/.bundle'} --without development test cucumber"
61
61
  end
62
62
 
63
63
  def bundle_install
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inploy
3
3
  version: !ruby/object:Gem::Version
4
- hash: 49
4
+ hash: 53
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 9
9
- - 1
10
- version: 1.9.1
9
+ - 3
10
+ version: 1.9.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Diego Carrion
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-25 00:00:00 -03:00
18
+ date: 2011-05-06 00:00:00 -03:00
19
19
  default_executable:
20
20
  dependencies: []
21
21