Module: Shoelaces::Actions
- Included in:
- AppBuilder
- Defined in:
- lib/shoelaces/actions.rb
Instance Method Summary collapse
- #action_mailer_host(rails_env, host) ⇒ Object
- #configure_environment(rails_env, config) ⇒ Object
- #replace_in_file(relative_path, find, replace) ⇒ Object
- #uncomment_in_file(path, uncommented) ⇒ Object
Instance Method Details
#action_mailer_host(rails_env, host) ⇒ Object
16 17 18 19 |
# File 'lib/shoelaces/actions.rb', line 16 def action_mailer_host(rails_env, host) host_config = "config.action_mailer.default_url_options = { host: '#{host}' }" configure_environment(rails_env, host_config) end |
#configure_environment(rails_env, config) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/shoelaces/actions.rb', line 21 def configure_environment(rails_env, config) inject_into_file( "config/environments/#{rails_env}.rb", "\n\n #{config}", before: "\nend" ) end |
#replace_in_file(relative_path, find, replace) ⇒ Object
3 4 5 6 7 8 9 10 |
# File 'lib/shoelaces/actions.rb', line 3 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 |
#uncomment_in_file(path, uncommented) ⇒ Object
12 13 14 |
# File 'lib/shoelaces/actions.rb', line 12 def uncomment_in_file(path, uncommented) replace_in_file(path, "# #{uncommented}", uncommented) end |