delete

delete(*args, &block) Instance Public methods

new

new() Class Public methods

new

new() Class Public methods

find_executable

find_executable() Class Public methods

exec_app_rails

exec_app_rails() Class Public methods

secrets

secrets() Instance Public methods Returns secrets added to config/secrets.yml. Example: development: secret_key_base: 836fa3665997a860728bcb9e9a1e704d427cfc920e79d847d79c8a9a907b9e965defa4154b2b86bdec6930adbe33f21364523a6f6ce363865724549fdfc08553 test: secret_key_base: 5a37811464e7d378488b0f073e2193b093682e4e21f5d6f3ae0a4e1781e61a351fdc878a843424e81c73fb484a40d23f92c8dafac4870e74ede6e5e174423010 production: secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> namespace: my_

runner

runner(&blk) Instance Public methods Sends any runner called in the instance of a new application up to the runner method defined in Rails::Railtie.

reload_routes!

reload_routes!() Instance Public methods Reload application routes regardless if they changed or not.

rake_tasks

rake_tasks(&block) Instance Public methods If you try to define a set of rake tasks on the instance, these will get passed up to the rake tasks defined on the application's class.

message_verifier

message_verifier(verifier_name) Instance Public methods Returns a message verifier object. This verifier can be used to generate and verify signed messages in the application. It is recommended not to use the same verifier for different things, so you can get different verifiers passing the verifier_name argument. Parameters verifier_name - the name of the message verifier. Examples message = Rails.application.message_verifier('sensitive_data').generate('my sensible data') Rails