Sha256: 18f3f5671fe50587c503cbdf34f361cd471e218124fe1141d0697e7e851b80ef

Contents?: true

Size: 734 Bytes

Versions: 6

Compression:

Stored size: 734 Bytes

Contents

module Startblock
  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)
      config = "config.action_mailer.default_url_options = { host: #{host} }"
      configure_environment(rails_env, 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

6 entries across 6 versions & 1 rubygems

Version Path
startblock-1.5 lib/startblock/actions.rb
startblock-1.4 lib/startblock/actions.rb
startblock-1.3 lib/startblock/actions.rb
startblock-1.2 lib/startblock/actions.rb
startblock-1.1 lib/startblock/actions.rb
startblock-1.0 lib/startblock/actions.rb