Top Level Namespace

Defined Under Namespace

Modules: ApplicationHelpers, Erb, LayoutHelper, Leolay, Leonardo, Leosca, Rails, Rspec, Utility Classes: LeolayGenerator

Constant Summary collapse

CONFIG =

Put here application’s params

{
  :application => {
    :name => "<%= app_name %>",
    :version => "0.0.1",
    :started_at => "<%= Time.now.strftime('%d/%m/%Y') %>",
    :updated_at => "<%= Time.now.strftime('%d/%m/%Y') %>"
    },
  :default_style => "<%= style_name %>"
}
WINDOWS =
(RUBY_PLATFORM =~ /dos|win32|cygwin/i) || (RUBY_PLATFORM =~ /(:?mswin|mingw)/)
CRLF =
WINDOWS ? "\r\n" : "\n"