lib/standup/settings.rb in standup-0.6.7 vs lib/standup/settings.rb in standup-0.6.8
- old
+ new
@@ -8,7 +8,9 @@
# keypair_file default to ~/.ssh/keypair_name.pem
aws['keypair_file'] ||= "#{File.expand_path '~'}/.ssh/#{aws.keypair_name}.pem"
end
end
else
- Standup.const_set :Settings, ActiveSupport::HashWithIndifferentAccess.new('nodes' => {})
+ module Standup
+ Settings = ActiveSupport::HashWithIndifferentAccess.new('nodes' => {})
+ end
end