Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/configatron/integrations/rails.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def self.init(root = nil, env = nil)
config_files.collect! {|config| File.expand_path(config)}.uniq!

config_files.each do |config|
if File.exists?(config)
if File.exist?(config)
# puts "Configuration: #{config}"
require config
end
Expand Down
1 change: 1 addition & 0 deletions lib/configatron/root_store.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'singleton'
require 'forwardable'

# This is the root configatron object, and contains methods which
# operate on the entire configatron hierarchy.
Expand Down
2 changes: 1 addition & 1 deletion lib/configatron/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Configatron
VERSION = "4.1.0"
VERSION = "4.1.2"
end