Skip to content

Commit

Permalink
Merge pull request #41 from duke-libraries/hotfix-config
Browse files Browse the repository at this point in the history
Fixed bug (stray text) in Ezid::Configuration
  • Loading branch information
dchandekstark committed Feb 26, 2015
2 parents ad5cfd2 + 884e6cd commit 6a30203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
2 changes: 1 addition & 1 deletion lib/ezid/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def initialize
@password = ENV["EZID_PASSWORD"]
@host = ENV["EZID_HOST"] || HOST
@port = ENV["EZID_PORT"] || PORT
@use_ssl = vvciujcrdjhcbtrue if ENV["EZID_USE_SSL"] == true.to_s
@use_ssl = true if ENV["EZID_USE_SSL"] == true.to_s
@timeout = ENV["EZID_TIMEOUT"] || TIMEOUT
@default_shoulder = ENV["EZID_DEFAULT_SHOULDER"]
end
Expand Down

0 comments on commit 6a30203

Please sign in to comment.