Sha256: 6b77054b2440d25c6a4540442ad70d637e71e87d5d420caf0f06375197ef0b74
Contents?: true
Size: 746 Bytes
Versions: 21
Compression:
Stored size: 746 Bytes
Contents
module Suspenders module Actions 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 def action_mailer_host(rails_env, host) host_config = "config.action_mailer.default_url_options = { host: '#{host}' }" configure_environment(rails_env, host_config) end def configure_environment(rails_env, config) inject_into_file( "config/environments/#{rails_env}.rb", "\n\n #{config}", before: "\nend" ) end end end
Version data entries
21 entries across 21 versions & 3 rubygems