milkshake 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
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')
@@ -51,7 +51,7 @@ module Milkshake
51
51
  def gemspecs
52
52
  @ordered_gemspecs ||= @order.collect do |name|
53
53
  gemspecs_by_name[name]
54
- end
54
+ end.compact
55
55
  end
56
56
 
57
57
  def gem_dependencies
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 `rake gemspec`
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.1"
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-09-30}
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.1
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-09-30 00:00:00 +02:00
12
+ date: 2009-11-02 00:00:00 +01:00
13
13
  default_executable: milkshake
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency