railshoster 0.0.1 → 0.0.2
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/CHANGELOG.markdown +7 -2
- data/lib/railshoster/version.rb +1 -1
- data/templates/h/deploy.rb.erb +1 -1
- metadata +4 -4
data/CHANGELOG.markdown
CHANGED
@@ -4,5 +4,10 @@ h2. 0.0.1
|
|
4
4
|
* Current status:
|
5
5
|
** Decode and parse credentials - done
|
6
6
|
** Gather Git Repository URL using git gem - done
|
7
|
-
|
8
|
-
**
|
7
|
+
** Write deploy.rb
|
8
|
+
** Capify project
|
9
|
+
|
10
|
+
h2. 0.0.2
|
11
|
+
|
12
|
+
* deploy.rb now creates a symlink to database.yml with -f (force) and overwrites an eventually existing database.yml from the customer's repository.
|
13
|
+
|
data/lib/railshoster/version.rb
CHANGED
data/templates/h/deploy.rb.erb
CHANGED
@@ -64,7 +64,7 @@ namespace :deploy do
|
|
64
64
|
|
65
65
|
desc "Additional Symlinks ( database.yml, etc. )"
|
66
66
|
task :additional_symlink, :roles => :app do
|
67
|
-
run "ln -
|
67
|
+
run "ln -sf #{shared_path}/config/database.yml #{current_path}/config/database.yml"
|
68
68
|
end
|
69
69
|
|
70
70
|
end
|
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:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Julian Fischer
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-11-
|
18
|
+
date: 2011-11-04 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: capistrano
|