module Underwear::Actions

Public Instance Methods

action_mailer_host(rails_env, host) click to toggle source
# File lib/underwear/actions.rb, line 12
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) click to toggle source
# File lib/underwear/actions.rb, line 17
def configure_application_file(config)
  inject_into_file(
    "config/application.rb",
    "\n\n    #{config}",
    before: "\n  end"
  )
end
configure_environment(rails_env, config) click to toggle source
# File lib/underwear/actions.rb, line 25
def configure_environment(rails_env, config)
  inject_into_file(
    "config/environments/#{rails_env}.rb",
    "\n\n  #{config}",
    before: "\nend"
  )
end
replace_in_file(relative_path, find, replace) click to toggle source
# File lib/underwear/actions.rb, line 3
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