milkshake 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/VERSION +1 -1
- data/lib/milkshake/app/actions.rb +4 -4
- data/lib/milkshake/environment.rb +1 -1
- data/milkshake.gemspec +5 -4
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
|
@@ -195,22 +195,22 @@ module Milkshake
|
|
|
195
195
|
rails_path + 'log',
|
|
196
196
|
shared_path + 'log')
|
|
197
197
|
|
|
198
|
-
(rails_path + 'public/system').rmtree
|
|
198
|
+
(rails_path + 'public/system').rmtree if File.exist?('public/system')
|
|
199
199
|
make_symlink!(
|
|
200
200
|
rails_path + 'public/system',
|
|
201
201
|
shared_path + 'public')
|
|
202
202
|
|
|
203
|
-
(rails_path + 'config/settings').rmtree
|
|
203
|
+
(rails_path + 'config/settings').rmtree if File.exist?('config/settings')
|
|
204
204
|
make_symlink!(
|
|
205
205
|
rails_path + 'config/settings',
|
|
206
206
|
shared_path + 'settings')
|
|
207
207
|
|
|
208
|
-
(rails_path + 'config/milkshake.yml').unlink
|
|
208
|
+
(rails_path + 'config/milkshake.yml').unlink if File.exist?('config/milkshake.yml')
|
|
209
209
|
make_symlink!(
|
|
210
210
|
rails_path + 'config/milkshake.yml',
|
|
211
211
|
shared_path + 'settings/milkshake.yml')
|
|
212
212
|
|
|
213
|
-
(rails_path + 'config/database.yml').unlink
|
|
213
|
+
(rails_path + 'config/database.yml').unlink if File.exist?('config/database.yml')
|
|
214
214
|
make_symlink!(
|
|
215
215
|
rails_path + 'config/database.yml',
|
|
216
216
|
shared_path + 'settings/database.yml')
|
data/milkshake.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
|
-
# DO NOT EDIT THIS FILE
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{milkshake}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Simon Menke"]
|
|
12
|
-
s.date = %q{2009-
|
|
12
|
+
s.date = %q{2009-11-02}
|
|
13
13
|
s.default_executable = %q{milkshake}
|
|
14
14
|
s.description = %q{Compose rails applications using several smaller rails applications}
|
|
15
15
|
s.email = %q{simon@mrhenry.be}
|
|
@@ -114,3 +114,4 @@ Gem::Specification.new do |s|
|
|
|
114
114
|
s.add_dependency(%q<snapshots>, [">= 0"])
|
|
115
115
|
end
|
|
116
116
|
end
|
|
117
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: milkshake
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Menke
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-11-02 00:00:00 +01:00
|
|
13
13
|
default_executable: milkshake
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|