Module: Underlay::Actions
- Included in:
- AppBuilder, EnforceSslGenerator
- Defined in:
- lib/underlay/actions.rb
Instance Method Summary collapse
- #action_mailer_asset_host(rails_env, host) ⇒ Object
- #action_mailer_host(rails_env, host) ⇒ Object
- #configure_application_file(config) ⇒ Object
- #configure_environment(rails_env, config) ⇒ Object
- #replace_in_file(relative_path, find, replace) ⇒ Object
Instance Method Details
#action_mailer_asset_host(rails_env, host) ⇒ Object
20 21 22 23 |
# File 'lib/underlay/actions.rb', line 20 def action_mailer_asset_host(rails_env, host) config = "config.action_mailer.asset_host = #{host}" configure_environment(rails_env, config) end |
#action_mailer_host(rails_env, host) ⇒ Object
15 16 17 18 |
# File 'lib/underlay/actions.rb', line 15 def action_mailer_host(rails_env, host) config = "config.action_mailer.default_url_options = { host: #{host} }" configure_environment(rails_env, config) end |
#configure_application_file(config) ⇒ Object
25 26 27 28 29 30 31 |
# File 'lib/underlay/actions.rb', line 25 def configure_application_file(config) inject_into_file( 'config/application.rb', "\n\n #{config}", before: "\n end" ) end |
#configure_environment(rails_env, config) ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/underlay/actions.rb', line 33 def configure_environment(rails_env, config) inject_into_file( "config/environments/#{rails_env}.rb", "\n #{config}", before: "\nend" ) end |
#replace_in_file(relative_path, find, replace) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'lib/underlay/actions.rb', line 5 def replace_in_file(relative_path, find, replace) path = File.join(destination_root, relative_path) contents = IO.read(path) unless contents.gsub!(find, replace) raise "#{find.inspect} not found in #{relative_path}" end File.open(path, 'w') { |file| file.write(contents) } end |