inheritable_copy

inheritable_copy() Instance Public methods

find

find(path) Class Public methods Finds engine with given path

find_zone!

find_zone!(time_zone) Class Public methods Returns a TimeZone instance or nil, or raises an ArgumentError for invalid timezones.

remove_index

remove_index(table_name, options = {}) Instance Public methods Removes the given index from the table. Removes the index_accounts_on_column in the accounts table. remove_index :accounts, :column Removes the index named index_accounts_on_branch_id in the accounts table. remove_index :accounts, column: :branch_id Removes the index named index_accounts_on_branch_id_and_party_id in the accounts table. remove_index :accounts, column: [:branch_id, :party_id] Removes the index named by

generate_front_matter

generate_front_matter(html_pages) Instance Public methods

respond_to_missing?

respond_to_missing?(*args) Class Public methods

remove_index

remove_index(options = {}) Instance Public methods Removes the given index from the table. Remove the index_table_name_on_column in the table_name table t.remove_index :column Remove the index named index_table_name_on_branch_id in the table_name table t.remove_index column: :branch_id Remove the index named index_table_name_on_branch_id_and_party_id in the table_name table t.remove_index column: [:branch_id, :party_id] Remove the index named by_branch_party in the table_name ta

revert

revert() Instance Public methods While executing the given block, the recorded will be in reverting mode. All commands recorded will end up being recorded reverted and in reverse order. For example: recorder.revert{ recorder.record(:rename_table, [:old, :new]) } # same effect as recorder.record(:rename_table, [:new, :old])

deep_munge

deep_munge(event) Instance Public methods

render_to_body

render_to_body(options = {}) Instance Public methods