railshoster 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.textile CHANGED
@@ -30,4 +30,8 @@ h3. 0.1.0
30
30
  * Added capistrano task "railshoster:appurl" to show the default railshoster app url.
31
31
  * "railshoster deploy" now can only be invoked if there's a Capfile and a deploy.rb.
32
32
  * Added "railshoster appurl" show the default railshoster app url. This command can only be invoked if there's a Capfile and a deploy.rb.
33
- * It now shows the appurl after invoking "railshoster deploy".
33
+ * It now shows the appurl after invoking "railshoster deploy".
34
+
35
+ h3. 0.1.1
36
+
37
+ * Fixed deploy_to path in deploy.rb
data/ROADMAP.textile CHANGED
@@ -12,4 +12,5 @@ h2. 2.0.0
12
12
  h3. General TODOs
13
13
 
14
14
  * Railshoster::InitCommand - Check wether it is possible to replace "system" call with a pure ruby version possibly by using the capistrano gem directly via ruby.
15
- * Test bin/railshoster
15
+ * Test bin/railshoster
16
+ * railshoster deploy should check capistrano's exit status and respond to that in case of a failure.
@@ -1,3 +1,3 @@
1
1
  module Railshoster
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -44,7 +44,7 @@ default_run_options[:pty] = true
44
44
  set :use_sudo, false
45
45
 
46
46
  # set the location where to deploy the new project
47
- set :deploy_to, "/home/#{user}/#{application}/shared/bundle"
47
+ set :deploy_to, "/home/#{user}/#{application}"
48
48
 
49
49
  # live
50
50
  role :app, "<%= app["h"]%>"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railshoster
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Julian Fischer