Module: Inkling

Defined in:
lib/inkling/slugs.rb,
lib/inkling/types.rb,
lib/inkling/engine.rb,
lib/inkling/routing.rb,
lib/inkling/version.rb,
app/models/inkling/path.rb,
app/models/inkling/role.rb,
lib/inkling/commands/generator.rb,
app/models/inkling/role_membership.rb,
lib/inkling/util/migration_helpers.rb

Defined Under Namespace

Modules: Routing, Slugs, Types, Util Classes: Ability, BaseController, CanCanAction, ContentController, Engine, Generator, HomeController, Log, Path, PathsController, Permission, ProxyingController, Role, RoleMembership, Theme, ThemesController, Type, User

Constant Summary collapse

TMP_DIR =
"tmp/inkling/"
THEMES_DIR =
"#{TMP_DIR}themes/"
THEME_LAYOUTS_DIR =
"#{THEMES_DIR}layouts/"
BOOTSTRAP_TASKS =
[]
WELCOME_MSG =
<<-MSG

Welcome!
Inkling was bootstrapped at #{Time.now}.
Start the server ('rails server') then visit http://localhost:3000/inkling/users/sign_in. 
Use the default admin account [email protected]/test123.

MSG
VERSION =
"0.1.0"
USAGE =
<<END
Inkling #{Inkling::VERSION}

Usage:  inkling command  [ options ... ]

Options:
        -?, -h, --help              Print this help message
        -v,     --version           Print the current Inkling version
        -m,     --template=path     Use an application template that lives at path (can be a filesystem path or URL) (Not implemented)
        -p,     --pretend           Run but do not make any changes.
                --force             Overwrite files that already exist.
        -s,     --skip              Skip files that already exist.
        -q,     --quiet             Suppress normal output.

Commands:
        generate name_of_new_content_type
                                    Generate a new blank Inkling content type

END