Sha256: 39de5ee85e72bdea720a918fdb07c08bdb5ea6bbe3a02d4e6a39a5de53e685fc
Contents?: true
Size: 866 Bytes
Versions: 9
Compression:
Stored size: 866 Bytes
Contents
# Be sure to restart your server when you modify this file # Specifies gem version of Rails to use when vendor/rails is not present RAILS_GEM_VERSION = '2.3.14' unless defined? RAILS_GEM_VERSION # monkey patch from https://github.com/rails/rails/pull/3473 class MissingSourceFile < LoadError #:nodoc: REGEXPS = [ [/^no such file to load -- (.+)$/i, 1], [/^Missing \w+ (file\s*)?([^\s]+.rb)$/i, 2], [/^Missing API definition file in (.+)$/i, 1], [/^cannot load such file -- (.+)$/i, 1] ] end # Bootstrap the Rails environment, frameworks, and default configuration require File.join(File.dirname(__FILE__), 'boot') Rails::Initializer.run do |config| # we use bundler now, so don't do this at this example # config.gem 'rest-graph' config.frameworks -= [ :active_record, :active_resource, :action_mailer ] config.time_zone = 'UTC' end
Version data entries
9 entries across 9 versions & 2 rubygems