Commit 48737a27a7ac8b2080238c2450a48c3a497d5157

Authored by Daniel Cohen
1 parent 5528df16
Exists in master and in 1 other branch production

[FIX] validate_db_name error

Showing 2 changed files with 4 additions and 3 deletions   Show diff stats
Gemfile.lock
... ... @@ -64,7 +64,7 @@ GEM
64 64 faraday (0.7.4)
65 65 addressable (~> 2.2.6)
66 66 multipart-post (~> 1.1.0)
67   - rack (< 2, >= 1.1.0)
  67 + rack (>= 1.1.0, < 2)
68 68 faraday_middleware (0.7.0)
69 69 faraday (~> 0.7.3)
70 70 haml (3.1.3)
... ... @@ -203,7 +203,7 @@ GEM
203 203 warden (1.0.5)
204 204 rack (>= 1.0)
205 205 webmock (1.7.6)
206   - addressable (> 2.2.5, ~> 2.2)
  206 + addressable (~> 2.2, > 2.2.5)
207 207 crack (>= 0.1.7)
208 208 will_paginate (3.0.2)
209 209  
... ...
config/environment.rb
1 1 # Load the rails application
2 2 require File.expand_path('../application', __FILE__)
3   -
  3 +require 'yaml'
  4 +YAML::ENGINE.yamler= 'syck'
4 5 # Initialize the rails application
5 6 Errbit::Application.initialize!
6 7  
... ...