Sha256: d3b35954232d9495a5161bcfe4c28ff1c680c4166de038e25451fd6932ae477c
Contents?: true
Size: 776 Bytes
Versions: 6
Compression:
Stored size: 776 Bytes
Contents
require File.expand_path('../boot', __FILE__) # Issue described in detail here: http://www.ruby-forum.com/topic/1002689 . Please see last comment # rvm builds 1.9.2 with libyaml and it falls back to psych yaml parser # carmen gem fails with psych. Following two lines fixes the problem require 'yaml' YAML::ENGINE.yamler= 'syck' require 'rails/all' if defined?(Bundler) # If you precompile assets before deploying to production, use this line Bundler.require(*Rails.groups(:assets => %w(development test))) # If you want your assets lazily compiled in production, use this line # Bundler.require(:default, :assets, Rails.env) end module RailsApp class Application < Rails::Application # Enable the asset pipeline config.assets.enabled = true end end
Version data entries
6 entries across 6 versions & 1 rubygems