Sha256: a2bd6cfc37a498013decbd623c9b3ba2e1a9e9e3de0a79ff9afd1fd3cca35bc7

Contents?: true

Size: 744 Bytes

Versions: 8

Compression:

Stored size: 744 Bytes

Contents

module Roboparts
  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

8 entries across 8 versions & 1 rubygems

Version Path
roboparts-0.6.4 lib/roboparts/actions.rb
roboparts-0.6.3 lib/roboparts/actions.rb
roboparts-0.6.2 lib/roboparts/actions.rb
roboparts-0.6.1 lib/roboparts/actions.rb
roboparts-0.6.0 lib/roboparts/actions.rb
roboparts-0.5.4 lib/roboparts/actions.rb
roboparts-0.5.3 lib/roboparts/actions.rb
roboparts-0.5.2 lib/roboparts/actions.rb