Skip to content

Instantly share code, notes, and snippets.

@bogdanRada
Forked from justinweiss/settings.rb
Created December 17, 2015 14:21
Show Gist options
  • Save bogdanRada/1bcc32b175c620bded86 to your computer and use it in GitHub Desktop.
Save bogdanRada/1bcc32b175c620bded86 to your computer and use it in GitHub Desktop.
Simple settings for Rails
require 'yaml'
require 'erb'
require 'ostruct'
class Settings < OpenStruct
# Settings.new(:google_analytics)
def initialize(config_file_base_name)
super(YAML.load(ERB.new(File.read(Rails.root.join("config", "#{config_file_base_name}.yml"))).result)[Rails.env])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment