Sha256: 32659bf23b316431ad7abc78a481ea14ff14e7e2974c2ee362771193e13752fa
Contents?: true
Size: 1.39 KB
Versions: 3
Compression:
Stored size: 1.39 KB
Contents
module Voltron module Generators class InstallGenerator < Rails::Generators::Base desc 'Add Voltron initializer' def copy_initializer create_file Rails.root.join('config', 'initializers', 'voltron.rb'), <<-CONTENT Voltron.setup do |config| # === Voltron Base Configuration === # Whether to enable debug output in the browser console and terminal window # config.debug = false # The base url of the site. Used by various voltron-* gems to correctly build urls # Defaults to Rails.application.config.action_controller.default_url_options[:host], or 'localhost:3000' if not set # config.base_url = '#{Rails.application.config.action_controller.default_url_options.try(:[], :host) || "http://localhost:3000"}' # What logger calls to Voltron.log should use # config.logger = Logger.new(Rails.root.join('log', 'voltron.log')) # Set the log level for JS output in the browser console. # Available log levels are: :debug, :info, :warn, :error, :fatal, and :unknown, # or each log levels corresponding number, ranging from 0 through 5 respectively. # For consistency the available log levels match possible options for rails' +log_level+, # but due to limited output options available in the browser console, # "error", "fatal", and "unknown" all behave the same way. # config.log_level = Rails.application.config.log_level end CONTENT end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
voltron-0.3.2 | lib/generators/voltron/install_generator.rb |
voltron-0.3.1 | lib/generators/voltron/install_generator.rb |
voltron-0.2.10 | lib/generators/voltron/install_generator.rb |