mirror of
https://github.com/internetee/registry.git
synced 2025-07-01 08:43:37 +02:00
Bump epp-xml
This commit is contained in:
parent
545e828fdf
commit
3aa1992080
3 changed files with 10 additions and 8 deletions
2
Gemfile
2
Gemfile
|
@ -87,7 +87,7 @@ group :development, :test do
|
|||
|
||||
# EPP
|
||||
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)
|
||||
|
||||
# debug
|
||||
|
|
|
@ -128,7 +128,7 @@ GEM
|
|||
epp (1.4.0)
|
||||
hpricot
|
||||
libxml-ruby
|
||||
epp-xml (0.10.3)
|
||||
epp-xml (0.10.4)
|
||||
activesupport (~> 4.1)
|
||||
builder (~> 3.2)
|
||||
equalizer (0.0.9)
|
||||
|
@ -197,7 +197,7 @@ GEM
|
|||
rails-dom-testing (~> 1.0)
|
||||
railties (>= 4.2.0)
|
||||
thor (>= 0.14, < 2.0)
|
||||
json (1.8.1)
|
||||
json (1.8.2)
|
||||
kaminari (0.16.1)
|
||||
actionpack (>= 3.0.0)
|
||||
activesupport (>= 3.0.0)
|
||||
|
@ -221,7 +221,7 @@ GEM
|
|||
open4 (~> 1.3.4)
|
||||
rake
|
||||
mini_portile (0.6.0)
|
||||
minitest (5.5.0)
|
||||
minitest (5.5.1)
|
||||
multi_json (1.10.1)
|
||||
multi_xml (0.5.5)
|
||||
newrelic_rpm (3.9.9.275)
|
||||
|
@ -444,7 +444,7 @@ DEPENDENCIES
|
|||
delayed_job_active_record (~> 4.0.3)
|
||||
devise (~> 3.4.1)
|
||||
epp (~> 1.4.0)
|
||||
epp-xml (~> 0.10.3)
|
||||
epp-xml (~> 0.10.4)
|
||||
fabrication (~> 2.11.3)
|
||||
faker (~> 1.3.0)
|
||||
grape (~> 0.10.1)
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
module ApiLog
|
||||
class Db < ActiveRecord::Base
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue