Module: BlueberryRails::ActionHelpers

Included in:
AppBuilder
Defined in:
lib/blueberry_rails/action_helpers.rb

Instance Method Summary collapse

Instance Method Details

#action_mailer_host(rails_env, host) ⇒ Object



3
4
5
6
# File 'lib/blueberry_rails/action_helpers.rb', line 3

def action_mailer_host(rails_env, host)
  host = "config.action_mailer.default_url_options = { host: '#{host}' }"
  configure_environment(rails_env, host)
end

#configure_environment(rails_env, config) ⇒ Object



8
9
10
11
# File 'lib/blueberry_rails/action_helpers.rb', line 8

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

#rename_file(path_old, path_new) ⇒ Object



22
23
24
25
# File 'lib/blueberry_rails/action_helpers.rb', line 22

def rename_file(path_old, path_new)
  File.rename File.join(destination_root, path_old),
              File.join(destination_root, path_new)
end

#replace_in_file(relative_path, find, replace) ⇒ Object



13
14
15
16
17
18
19
20
# File 'lib/blueberry_rails/action_helpers.rb', line 13

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