Commit 51aa0c139fda1bb89b3063989a510386f673d41f

Authored by Nathan Broadbent
1 parent c38e664b
Exists in master and in 1 other branch production

Move "YAML::ENGINE.yamler = 'syck'" to top of environment.rb

Showing 1 changed file with 4 additions and 3 deletions   Show diff stats
config/environment.rb
1   -# Load the rails application
2   -require File.expand_path('../application', __FILE__)
3 1 if RUBY_VERSION.to_f >= 1.9
4 2 require 'yaml'
5 3 YAML::ENGINE.yamler = 'syck'
6 4 end
  5 +
  6 +# Load the rails application
  7 +require File.expand_path('../application', __FILE__)
  8 +
7 9 # Initialize the rails application
8 10 Errbit::Application.initialize!
9   -
... ...