Sha256: f8c7ecc869813ae747d62431fe6c01a71cfbbdf4bf5e107388ecdeabeb4a0a0a
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# This is where you would override any of the default Mack configuration settings, # as well as create your own settings. The configuration settings for your environment # can be dumped out using this rake task: # # rake mack:dump:config#<environment> # # Configuration parameters can be used in your application like such: # # app_config.<setting_name> # # Nested parameters can be defined using ::. # # Examples: # default.yml: # default_time_limit: <%%= 15.minutes %> # api::timeout_limit: <%%= 15.seconds %> # # app_config.default_time_limit # => 900 # app_config.api.timeout_limit # => 15 whiny_config_missing: false mack::session_id: _<%= @options["app"].downcase %>_session_id mack::testing_framework: <%= @options["testing_framework"] %> default_secret_key: <%= String.randomize(80) %> # Mack provides RJS support through mack-javascript gem. # In order to have RJS support, you will need to perform the following steps: # 1. Uncomment the code below, and make sure that the framework is the one you want to use # 2. run: rake generate:javascript # mack::js_framework: <%= @options["js_framework"] %>
Version data entries
2 entries across 2 versions & 1 rubygems