Sha256: ad196fa39836a2b839c4aeaafe0e0e269a3a71c6730a4f0eb00160ff929b1d29

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 KB

Contents

require 'erb'
require 'yaml'

require 'rest-graph/core'

module RestGraph::ConfigUtil
  extend self

  def load_config_for_all
    RestGraph::ConfigUtil.load_config_for_rails if
      Object.const_defined?(:Rails)
  end

  def load_config_for_rails app=Rails
    root = app.root
    file = ["#{root}/config/rest-graph.yaml", # YAML should use .yaml
            "#{root}/config/rest-graph.yml"].find{|path| File.exist?(path)}
    return unless file

    RestGraph::ConfigUtil.load_config(file, Rails.env)
  end

  def load_config file, env
    config   = YAML.load(ERB.new(File.read(file)).result(binding))
    defaults = config[env]
    return unless defaults

    mod = Module.new
    mod.module_eval(defaults.inject([]){ |r, (k, v)|
      # quote strings, leave others free (e.g. false, numbers, etc)
      r << <<-RUBY
        def default_#{k}
          #{v.kind_of?(String) ? "'#{v}'" : v}
        end
      RUBY
    }.join, __FILE__, __LINE__)

    RestGraph.send(:extend, mod)
  end
end

RestGraph.send(:extend, RestGraph::ConfigUtil)

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
rest-graph-2.0.3 lib/rest-graph/config_util.rb
rest-graph-2.0.2 lib/rest-graph/config_util.rb
rest-graph-2.0.1 lib/rest-graph/config_util.rb
rest-graph-2.0.0 lib/rest-graph/config_util.rb
rest-core-0.0.1 lib/rest-graph/config_util.rb