Sha256: d63b05c0dba098df1fce0243d63a5d53a2e5e67c843276214d1d073551acfcb0
Contents?: true
Size: 916 Bytes
Versions: 5
Compression:
Stored size: 916 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.paths << Rails.root.join("app/views/style-guide/**/*") end end
Version data entries
5 entries across 5 versions & 1 rubygems