lib/bsclient/config.rb in bsclient-0.1.3 vs lib/bsclient/config.rb in bsclient-0.1.4
- old
+ new
@@ -7,9 +7,10 @@
class << self
def create(env, file = nil)
file ||= File.expand_path('~/.bsclient.yml')
yaml = YAML.load(File.read(file)) || {}
conf = yaml[env] || {}
+ require 'pry'; binding.pry;
new(OpenStruct.new(conf))
end
end
end
end