Bump epp-xml

This commit is contained in:
Martin Lensment 2015-01-19 10:48:34 +02:00
parent 545e828fdf
commit 3aa1992080
3 changed files with 10 additions and 8 deletions

View file

@ -87,7 +87,7 @@ group :development, :test do
# EPP # EPP
gem 'epp', '~> 1.4.0' # EPP client gem 'epp', '~> 1.4.0' # EPP client
gem 'epp-xml', '~> 0.10.3' # EPP XMLs gem 'epp-xml', '~> 0.10.4' # EPP XMLs
gem 'uuidtools', '~> 2.1.4' # For unique IDs (used by the epp gem) gem 'uuidtools', '~> 2.1.4' # For unique IDs (used by the epp gem)
# debug # debug

View file

@ -128,7 +128,7 @@ GEM
epp (1.4.0) epp (1.4.0)
hpricot hpricot
libxml-ruby libxml-ruby
epp-xml (0.10.3) epp-xml (0.10.4)
activesupport (~> 4.1) activesupport (~> 4.1)
builder (~> 3.2) builder (~> 3.2)
equalizer (0.0.9) equalizer (0.0.9)
@ -197,7 +197,7 @@ GEM
rails-dom-testing (~> 1.0) rails-dom-testing (~> 1.0)
railties (>= 4.2.0) railties (>= 4.2.0)
thor (>= 0.14, < 2.0) thor (>= 0.14, < 2.0)
json (1.8.1) json (1.8.2)
kaminari (0.16.1) kaminari (0.16.1)
actionpack (>= 3.0.0) actionpack (>= 3.0.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
@ -221,7 +221,7 @@ GEM
open4 (~> 1.3.4) open4 (~> 1.3.4)
rake rake
mini_portile (0.6.0) mini_portile (0.6.0)
minitest (5.5.0) minitest (5.5.1)
multi_json (1.10.1) multi_json (1.10.1)
multi_xml (0.5.5) multi_xml (0.5.5)
newrelic_rpm (3.9.9.275) newrelic_rpm (3.9.9.275)
@ -444,7 +444,7 @@ DEPENDENCIES
delayed_job_active_record (~> 4.0.3) delayed_job_active_record (~> 4.0.3)
devise (~> 3.4.1) devise (~> 3.4.1)
epp (~> 1.4.0) epp (~> 1.4.0)
epp-xml (~> 0.10.3) epp-xml (~> 0.10.4)
fabrication (~> 2.11.3) fabrication (~> 2.11.3)
faker (~> 1.3.0) faker (~> 1.3.0)
grape (~> 0.10.1) grape (~> 0.10.1)

View file

@ -1,6 +1,8 @@
module ApiLog module ApiLog
class Db < ActiveRecord::Base class Db < ActiveRecord::Base
self.abstract_class = true self.abstract_class = true
establish_connection "api_log_#{Rails.env}" # to_sym is needed because passing a string to ActiveRecord::Base.establish_connection
# for a configuration lookup is deprecated
establish_connection "api_log_#{Rails.env}".to_sym
end end
end end