SYMBOL INDEX (220 symbols across 50 files) FILE: apps/account/app/controllers/account/application_controller.rb type Account (line 1) | module Account class ApplicationController (line 2) | class ApplicationController < ActionController::Base method login! (line 9) | def login!(user) method logout! (line 14) | def logout! FILE: apps/account/app/controllers/account/login_controller.rb type Account (line 1) | module Account class LoginController (line 2) | class LoginController < ::Account::ApplicationController method new (line 5) | def new method create (line 10) | def create method destroy (line 17) | def destroy method try_again (line 23) | def try_again method account_params (line 29) | def account_params FILE: apps/account/app/controllers/account/users_controller.rb type Account (line 1) | module Account class UsersController (line 2) | class UsersController < ::Account::ApplicationController method new (line 5) | def new method create (line 10) | def create method account_params (line 21) | def account_params FILE: apps/account/app/models/account/user.rb type Account (line 3) | module Account class User (line 4) | class User < ActiveRecord::Base FILE: apps/account/db/migrate/20140128234906_create_users.rb class CreateUsers (line 1) | class CreateUsers < ActiveRecord::Migration method change (line 2) | def change FILE: apps/account/db/migrate/20140207012153_add_timestamp_to_users.rb class AddTimestampToUsers (line 1) | class AddTimestampToUsers < ActiveRecord::Migration method change (line 2) | def change FILE: apps/account/db/migrate/20140207164357_add_admin_to_users.rb class AddAdminToUsers (line 1) | class AddAdminToUsers < ActiveRecord::Migration method change (line 2) | def change FILE: apps/account/lib/account.rb type Account (line 3) | module Account FILE: apps/account/lib/account/engine.rb type Account (line 1) | module Account class Engine (line 2) | class Engine < ::Rails::Engine FILE: apps/admin/app/controllers/admin/application_controller.rb type Admin (line 1) | module Admin class ApplicationController (line 2) | class ApplicationController < ActionController::Base method login! (line 14) | def login!(user) method logout! (line 19) | def logout! method current_user (line 24) | def current_user method skip_sidebar (line 33) | def skip_sidebar method require_admin_user (line 40) | def require_admin_user FILE: apps/admin/app/controllers/admin/home_controller.rb type Admin (line 1) | module Admin class HomeController (line 2) | class HomeController < ::Admin::ApplicationController method index (line 6) | def index method post_search (line 11) | def post_search method user_search (line 23) | def user_search FILE: apps/admin/app/controllers/admin/login_controller.rb type Admin (line 1) | module Admin class LoginController (line 2) | class LoginController < ::Admin::ApplicationController method new (line 7) | def new method create (line 12) | def create method destroy (line 20) | def destroy method try_again (line 26) | def try_again method account_params (line 32) | def account_params FILE: apps/admin/app/controllers/admin/panel_controller.rb type Admin (line 1) | module Admin class PanelController (line 2) | class PanelController < ::Admin::ApplicationController method parent_prefixes (line 4) | def parent_prefixes method parent_panel (line 12) | def parent_panel(parent) method parent_panel (line 20) | def parent_panel method parent_panel_class (line 24) | def parent_panel_class method load_parent_object (line 29) | def load_parent_object FILE: apps/admin/app/controllers/admin/posts_controller.rb type Admin (line 1) | module Admin class PostsController (line 2) | class PostsController < ::Admin::PanelController method show (line 5) | def show method edit (line 9) | def edit method update (line 13) | def update method fetch_object (line 24) | def fetch_object method object_params (line 28) | def object_params FILE: apps/admin/app/controllers/admin/users_controller.rb type Admin (line 1) | module Admin class UsersController (line 2) | class UsersController < ::Admin::PanelController method show (line 5) | def show method posts (line 9) | def posts method edit (line 13) | def edit method update (line 17) | def update method fetch_object (line 28) | def fetch_object method object_params (line 32) | def object_params FILE: apps/admin/app/helpers/admin/application_helper.rb type Admin (line 1) | module Admin type ApplicationHelper (line 2) | module ApplicationHelper function display_time (line 3) | def display_time(time, format=:day_zone) function display_markdown (line 8) | def display_markdown(content) function display_property (line 14) | def display_property(name, value, opts = {}) function display_properties (line 40) | def display_properties(obj, *keys) function display_name (line 60) | def display_name(user, limit = nil) function link_to_name (line 68) | def link_to_name(user, limit = nil) function render_rescue (line 73) | def render_rescue(name, *args) function skip_sidebar? (line 80) | def skip_sidebar? function skip_header? (line 84) | def skip_header? function skip_top_bottom? (line 88) | def skip_top_bottom? function panel_collection? (line 92) | def panel_collection? function skip_panels (line 96) | def skip_panels function panel_collection (line 100) | def panel_collection(options = {}) function alert_bootstrap (line 105) | def alert_bootstrap(rails) FILE: apps/admin/app/models/admin/post.rb type Admin (line 1) | module Admin class Post (line 2) | class Post < ::Content::Post FILE: apps/admin/app/models/admin/user.rb type Admin (line 1) | module Admin class User (line 2) | class User < ::Account::User FILE: apps/admin/app/operations/admin/post_search.rb type Admin (line 1) | module Admin class PostSearch (line 3) | class PostSearch < ::Shared::Operation::Base method page (line 12) | def page method perform (line 16) | def perform method search_type (line 25) | def search_type method search_by_id (line 34) | def search_by_id method search_by_content (line 38) | def search_by_content FILE: apps/admin/app/operations/admin/user_search.rb type Admin (line 1) | module Admin class UserSearch (line 3) | class UserSearch < ::Shared::Operation::Base method page (line 12) | def page method perform (line 16) | def perform method search_type (line 25) | def search_type method search_by_email (line 36) | def search_by_email method search_by_id (line 40) | def search_by_id method search_by_name (line 44) | def search_by_name FILE: apps/admin/lib/admin.rb type Admin (line 6) | module Admin FILE: apps/admin/lib/admin/engine.rb type Admin (line 1) | module Admin class Engine (line 2) | class Engine < ::Rails::Engine FILE: apps/content/app/controllers/content/application_controller.rb type Content (line 1) | module Content class ApplicationController (line 2) | class ApplicationController < ActionController::Base FILE: apps/content/app/controllers/content/posts_controller.rb type Content (line 1) | module Content class PostsController (line 2) | class PostsController < ::Content::ApplicationController method index (line 10) | def index method create (line 15) | def create method show_index (line 28) | def show_index method load_post (line 33) | def load_post method post_params (line 39) | def post_params FILE: apps/content/app/helpers/content/post_helper.rb type Content (line 1) | module Content type PostHelper (line 2) | module PostHelper function display_content (line 3) | def display_content(content) function display_time (line 8) | def display_time(datetime) FILE: apps/content/app/models/content/post.rb type Content (line 1) | module Content class Post (line 2) | class Post < ActiveRecord::Base FILE: apps/content/app/models/content/user.rb type Content (line 1) | module Content class User (line 2) | class User < ActiveRecord::Base FILE: apps/content/db/migrate/20140207011608_create_posts.rb class CreatePosts (line 1) | class CreatePosts < ActiveRecord::Migration method change (line 2) | def change FILE: apps/content/lib/content.rb type Content (line 6) | module Content FILE: apps/content/lib/content/engine.rb type Content (line 1) | module Content class Engine (line 2) | class Engine < ::Rails::Engine FILE: apps/marketing/app/controllers/marketing/application_controller.rb type Marketing (line 1) | module Marketing class ApplicationController (line 2) | class ApplicationController < ActionController::Base FILE: apps/marketing/app/controllers/marketing/home_controller.rb type Marketing (line 1) | module Marketing class HomeController (line 2) | class HomeController < ::Marketing::ApplicationController method index (line 3) | def index FILE: apps/marketing/lib/marketing.rb type Marketing (line 3) | module Marketing FILE: apps/marketing/lib/marketing/engine.rb type Marketing (line 1) | module Marketing class Engine (line 2) | class Engine < ::Rails::Engine FILE: apps/shared/app/controllers/shared/controller/authentication.rb type Shared (line 1) | module Shared type Controller (line 2) | module Controller type Authentication (line 3) | module Authentication function current_user (line 11) | def current_user function require_user (line 25) | def require_user FILE: apps/shared/app/controllers/shared/controller/layout.rb type Shared (line 1) | module Shared type Controller (line 2) | module Controller type Layout (line 3) | module Layout FILE: apps/shared/app/controllers/shared/controller/manifests.rb type Shared (line 1) | module Shared type Controller (line 2) | module Controller type Manifests (line 3) | module Manifests type Helper (line 11) | module Helper function render_manifests (line 12) | def render_manifests(type) function manifests_registered (line 27) | def manifests_registered(type) type ClassMethods (line 31) | module ClassMethods function manifests_registered (line 32) | def manifests_registered(type) function manifests (line 41) | def manifests(*args) FILE: apps/shared/app/helpers/shared/helper/errors.rb type Shared (line 1) | module Shared type Helper (line 2) | module Helper type Errors (line 3) | module Errors function show_object_errors (line 4) | def show_object_errors(object) FILE: apps/shared/app/models/shared/model/read_only.rb type Shared (line 1) | module Shared type Model (line 2) | module Model type ReadOnly (line 3) | module ReadOnly function readonly? (line 5) | def readonly? function delete (line 9) | def delete FILE: apps/shared/app/models/shared/operation/base.rb type Shared (line 42) | module Shared type Operation (line 43) | module Operation class Base (line 44) | class Base method field (line 63) | def field(*fields) method default (line 84) | def default(pairs) method error_map (line 89) | def error_map(hash) method inherited (line 93) | def inherited(base) method find_by_id (line 101) | def find_by_id(user_id) method _field (line 109) | def _field(field_name, options = {}) method initialize (line 124) | def initialize(current_user = nil, options = {}) method delay_id (line 135) | def delay_id method submit! (line 140) | def submit!(params = {}) method submit (line 149) | def submit(params = {}) method perform (line 170) | def perform method transaction (line 176) | def transaction method inherit_errors_from (line 184) | def inherit_errors_from(object, namespace = nil) method inherit_errors (line 191) | def inherit_errors(error_object, namespace = nil) method namespaced_attributes (line 212) | def namespaced_attributes(namespace, options = {}) method filter_params (line 228) | def filter_params(params) method apply_params (line 233) | def apply_params(params, namespace = nil) method bool (line 247) | def bool(input) FILE: apps/shared/app/models/shared/user/display.rb type Shared (line 1) | module Shared type User (line 2) | module User type Display (line 3) | module Display function display_name (line 5) | def display_name function full_name (line 11) | def full_name function half_email (line 21) | def half_email FILE: apps/shared/app/models/shared/user/stub.rb type Shared (line 1) | module Shared type User (line 2) | module User class Stub (line 3) | class Stub < ActiveRecord::Base FILE: apps/shared/lib/shared.rb type Shared (line 6) | module Shared FILE: apps/shared/lib/shared/engine.rb type Shared (line 1) | module Shared class Engine (line 2) | class Engine < ::Rails::Engine FILE: config/application.rb type RailsEnginesExample (line 17) | module RailsEnginesExample class Application (line 18) | class Application < Rails::Application FILE: config/initializers/debugger.rb type Kernel (line 4) | module Kernel FILE: lib/boot_inquirer.rb class BootInquirer (line 16) | class BootInquirer method apps (line 26) | def apps method each_active_app (line 30) | def each_active_app method any? (line 36) | def any?(*keys) method all? (line 40) | def all?(*keys) method using_boot_flags? (line 44) | def using_boot_flags? method method_missing (line 48) | def method_missing(method_name, *args) method boot_flag (line 61) | def boot_flag method negate? (line 65) | def negate? method boot_flag? (line 69) | def boot_flag?(flag) class App (line 78) | class App method initialize (line 80) | def initialize(key, val) method enabled? (line 85) | def enabled? method engine (line 89) | def engine FILE: spec/shared/models/user_display_spec.rb type UserDisplayTest (line 3) | module UserDisplayTest class User (line 4) | class User < ActiveRecord::Base FILE: spec/support/fixture_class_name_helper.rb type FixtureClassNameHelper (line 3) | module FixtureClassNameHelper function fixture (line 14) | def fixture(standard_method, standard_name, override_namespace = nil) FILE: spec/support/test_after_commit.rb type ActiveRecord (line 3) | module ActiveRecord type ConnectionAdapters (line 4) | module ConnectionAdapters class SavepointTransaction (line 5) | class SavepointTransaction < ::ActiveRecord::ConnectionAdapters::Ope... method perform_commit_with_transactional_fixtures (line 7) | def perform_commit_with_transactional_fixtures