Sha256: ab42c23567b18053cc9ba9433937a9f35ce14086de77c46ebb261e1d540ae43d
Contents?: true
Size: 914 Bytes
Versions: 5
Compression:
Stored size: 914 Bytes
Contents
require File.expand_path('../boot', __FILE__) # Pick the frameworks you want: require "action_controller/railtie" require "action_mailer/railtie" require "active_resource/railtie" require "sprockets/railtie" Bundler.require :default, Rails.env require "style_guide" module Dummy class Application < Rails::Application # Configure the default encoding used in templates for Ruby 1.9. config.encoding = "utf-8" # Configure sensitive parameters which will be filtered from the log file. config.filter_parameters += [:password] # Enable escaping HTML in JSON. config.active_support.escape_html_entities_in_json = true # Enable the asset pipeline config.assets.enabled = true # Version of your assets, change this if you want to expire all your assets config.assets.version = '1.0' config.style_guide.partial_paths << Rails.root.join("app/views/styles") end end
Version data entries
5 entries across 5 versions & 1 rubygems