Sha256: bd156f029a5293d1fc0b6c75f05980f0ebdf42013244bb00f3370ee3cd01201b
Contents?: true
Size: 443 Bytes
Versions: 3
Compression:
Stored size: 443 Bytes
Contents
# Environment - For env specific code only # Environment Constants GRAPE_ENV ||= (ENV['GRAPE_ENV'] || ENV['RACK_ENV'] || :development).to_sym RACK_ENV = GRAPE_ENV # Load Environment Specific gems require 'bundler' Bundler.require :default, GRAPE_ENV # Load Environment Specific Settings specific_environment = File.join(APP_ROOT, 'config', 'environments', "#{GRAPE_ENV}.rb") require specific_environment if File.exist? specific_environment
Version data entries
3 entries across 3 versions & 1 rubygems