Sha256: 4b128d5c047279811e86484d920e9600bf119eadf83fd6a5c59999a8c28dda68

Contents?: true

Size: 655 Bytes

Versions: 2

Compression:

Stored size: 655 Bytes

Contents

# Use this file to setup SimpleHelpers.
require "simple_helpers"

SimpleHelpers.configure do |config|

  # Helper methods that will be automatically
  # created in the controllers
  # config.helpers   = [:page_title]

  # config.helpers will NOT be created automatically in these controllers
  # *** keep it empty if you would allow all controlers
  # example: [SessionsController]
  # config.blacklist = []

  # config.helpers will be created automatically in these controllers
  # *** keep it empty if you would allow all controlers
  # example: [ApplicationController]
  # config.whitelist = []

  # Options:
  # [ :log ]
  config.options = [:log]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_helpers-0.0.2 templates/initializer.rb
simple_helpers-0.0.1 templates/initializer.rb