diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dbfc76d52806783a9a510324cec70240c21416a7..16297cd654f4092fd7bada6e55eddcd8c91fc77b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,16 +28,6 @@ before_script: paths: - .gems -rails_42_ruby_23: - <<: *ruby_23 - script: - - bundle exec appraisal rails42 bundle exec rspec - -rails_50_ruby_23: - <<: *ruby_23 - script: - - bundle exec appraisal rails50 bundle exec rspec - rails_50_ruby_24: <<: *ruby_24 script: @@ -48,11 +38,6 @@ rails_50_ruby_25: script: - bundle exec appraisal rails50 bundle exec rspec -rails_51_ruby_23: - <<: *ruby_23 - script: - - bundle exec appraisal rails51 bundle exec rspec - rails_51_ruby_24: <<: *ruby_24 script: @@ -63,11 +48,6 @@ rails_51_ruby_25: script: - bundle exec appraisal rails51 bundle exec rspec -rails_52_ruby_23: - <<: *ruby_23 - script: - - bundle exec appraisal rails52 bundle exec rspec - rails_52_ruby_24: <<: *ruby_24 script: diff --git a/Gemfile.lock b/Gemfile.lock index ae1cd0b5f21e1e4c52f157046ddb5ae5b2c4b3ae..6c4bba194e21612645d5e22422143a29675a8161 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -182,7 +182,7 @@ DEPENDENCIES active_interaction (~> 3.0) appraisal appsignal (~> 2.9.8) - bundler (~> 1.0) + bundler (~> 2.0) climate_control combustion (~> 1.1.1) delayed_job_active_record @@ -199,4 +199,4 @@ DEPENDENCIES timecop BUNDLED WITH - 1.17.3 + 2.1.4 diff --git a/lib/roqua/support/errors.rb b/lib/roqua/support/errors.rb index d90b18f8023d507aba2b2e93c3977ef12500fdce..341dcc22e4ee8d689b72eea092cd6de5c32829fe 100644 --- a/lib/roqua/support/errors.rb +++ b/lib/roqua/support/errors.rb @@ -33,6 +33,7 @@ module Roqua case category when :background then Appsignal::Transaction::BACKGROUND_JOB when :web then Appsignal::Transaction::HTTP_REQUEST + when :hl7 then 'hl7' else Appsignal::Transaction::BLANK end end diff --git a/roqua-support.gemspec b/roqua-support.gemspec index 7490bf22fbca63c702f9ae82f1f990884967b075..3fb9aa69a5acd8bcf0e10047c8998ae831936616 100644 --- a/roqua-support.gemspec +++ b/roqua-support.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |gem| gem.add_dependency 'with_advisory_lock', '~> 3.2' gem.add_dependency 'appsignal', '~> 2.9.8' - gem.add_development_dependency 'bundler', '~> 1.0' + gem.add_development_dependency 'bundler', '~> 2.0' gem.add_development_dependency 'delayed_job_active_record' gem.add_development_dependency 'rake' gem.add_development_dependency 'rspec', '>= 2.12.0', '< 4.0'