Sha256: 53f254a2e5e8af8dfe6f56e415ef793de1a473ff7bf4d3beabeac8a413d1f769
Contents?: true
Size: 477 Bytes
Versions: 15
Compression:
Stored size: 477 Bytes
Contents
require 'yaml' # Railman::Config contains configuration parameters used to generate the rails application # It is saved in .railman in the generated application, so that it can be used to upgrade the application later. module Railman class Config attr_accessor :version, :app_name, :class_name, :admin_email, :domain, :www_domain, :domains, :server, :vendor, :private def initialize @private = true @vendor = :github end end end
Version data entries
15 entries across 15 versions & 1 rubygems