Sha256: 04442eb119c472ae4410236caa71b616261aac7c41dc159f5bc6f41205e3b9af

Contents?: true

Size: 1.07 KB

Versions: 3

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

module Underlay
  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 action_mailer_asset_host(rails_env, host)
      config = "config.action_mailer.asset_host = #{host}"
      configure_environment(rails_env, config)
    end

    def configure_application_file(config)
      inject_into_file(
        'config/application.rb',
        "\n\n    #{config}",
        before: "\n  end"
      )
    end

    def configure_environment(rails_env, config)
      inject_into_file(
        "config/environments/#{rails_env}.rb",
        "\n  #{config}",
        before: "\nend"
      )
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
underlay-2.0 lib/underlay/actions.rb
underlay-1.52.1 lib/underlay/actions.rb
underlay-1.50.1 lib/underlay/actions.rb