inploy 1.9.1 → 1.9.3
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/README.textile +1 -0
- data/Rakefile +1 -1
- data/lib/inploy/deploy.rb +2 -2
- data/lib/inploy/helper.rb +1 -1
- metadata +4 -4
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
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/
|
|
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
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:
|
|
4
|
+
hash: 53
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 9
|
|
9
|
-
-
|
|
10
|
-
version: 1.9.
|
|
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-
|
|
18
|
+
date: 2011-05-06 00:00:00 -03:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies: []
|
|
21
21
|
|