From b5eea2d47dae7d807a0bdafe21fa12919f920924 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2020 08:17:07 +0000 Subject: [PATCH] Bump ruby-openid from 2.1.8 to 2.8.0 Bumps [ruby-openid](https://github.com/openid/ruby-openid) from 2.1.8 to 2.8.0. - [Release notes](https://github.com/openid/ruby-openid/releases) - [Changelog](https://github.com/openid/ruby-openid/blob/master/CHANGELOG.md) - [Commits](https://github.com/openid/ruby-openid/commits/v2.8.0) Signed-off-by: dependabot[bot] --- Gemfile | 192 ++++++++++++++++++------------------ Gemfile.lock | 269 ++++++++++++++++++++++++++------------------------- 2 files changed, 233 insertions(+), 228 deletions(-) diff --git a/Gemfile b/Gemfile index c93f272..61a844f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,96 +1,96 @@ -source 'http://rubygems.org' - -gem 'rails', '3.2.11' -gem "jquery-rails", "~> 2.0.2" -gem "i18n", "~> 0.6.0" -gem "coderay", "~> 1.0.6" -gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby] -gem "builder", "3.0.0" -gem 'rack' , '1.4.1' - -# Optional gem for LDAP authentication -group :ldap do - gem "net-ldap", "~> 0.3.1" -end - -# Optional gem for OpenID authentication -group :openid do - gem "ruby-openid", "~> 2.1.4", :require => "openid" - gem "rack-openid" -end - -# Optional gem for exporting the gantt to a PNG file, not supported with jruby -platforms :mri, :mingw do - group :rmagick do - # RMagick 2 supports ruby 1.9 - # RMagick 1 would be fine for ruby 1.8 but Bundler does not support - # different requirements for the same gem on different platforms - gem "rmagick", ">= 2.0.0" - end -end - -# Database gems -platforms :mri, :mingw do - group :postgresql do - gem "pg", ">= 0.11.0" - end - - group :sqlite do - gem "sqlite3" - end -end - -platforms :mri_18, :mingw_18 do - group :mysql do - gem "mysql", "~> 2.8.1" - end -end - -platforms :mri_19, :mingw_19 do - group :mysql do - gem "mysql2", "~> 0.3.11" - end -end - -platforms :jruby do - gem "jruby-openssl" - - group :mysql do - gem "activerecord-jdbcmysql-adapter" - end - - group :postgresql do - gem "activerecord-jdbcpostgresql-adapter" - end - - group :sqlite do - gem "activerecord-jdbcsqlite3-adapter" - end -end - -group :development do - gem "rdoc", ">= 2.4.2" - gem "yard" -end - -group :test do - gem "shoulda", "~> 2.11" - # Shoulda does not work nice on Ruby 1.9.3 and JRuby 1.7. - # It seems to need test-unit explicitely. - platforms = [:mri_19] - platforms << :jruby if defined?(JRUBY_VERSION) && JRUBY_VERSION >= "1.7" - gem "test-unit", :platforms => platforms - gem "mocha", "0.12.3" -end - -local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") -if File.exists?(local_gemfile) - puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v` - instance_eval File.read(local_gemfile) -end - -# Load plugins' Gemfiles -Dir.glob File.expand_path("../plugins/*/Gemfile", __FILE__) do |file| - puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` - instance_eval File.read(file) -end +source 'http://rubygems.org' + +gem 'rails', '3.2.11' +gem "jquery-rails", "~> 2.0.2" +gem "i18n", "~> 0.6.0" +gem "coderay", "~> 1.0.6" +gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby] +gem "builder", "3.0.0" +gem 'rack' , '1.4.1' + +# Optional gem for LDAP authentication +group :ldap do + gem "net-ldap", "~> 0.3.1" +end + +# Optional gem for OpenID authentication +group :openid do + gem "ruby-openid", "~> 2.8.0", :require => "openid" + gem "rack-openid" +end + +# Optional gem for exporting the gantt to a PNG file, not supported with jruby +platforms :mri, :mingw do + group :rmagick do + # RMagick 2 supports ruby 1.9 + # RMagick 1 would be fine for ruby 1.8 but Bundler does not support + # different requirements for the same gem on different platforms + gem "rmagick", ">= 2.0.0" + end +end + +# Database gems +platforms :mri, :mingw do + group :postgresql do + gem "pg", ">= 0.11.0" + end + + group :sqlite do + gem "sqlite3" + end +end + +platforms :mri_18, :mingw_18 do + group :mysql do + gem "mysql", "~> 2.8.1" + end +end + +platforms :mri_19, :mingw_19 do + group :mysql do + gem "mysql2", "~> 0.3.11" + end +end + +platforms :jruby do + gem "jruby-openssl" + + group :mysql do + gem "activerecord-jdbcmysql-adapter" + end + + group :postgresql do + gem "activerecord-jdbcpostgresql-adapter" + end + + group :sqlite do + gem "activerecord-jdbcsqlite3-adapter" + end +end + +group :development do + gem "rdoc", ">= 2.4.2" + gem "yard" +end + +group :test do + gem "shoulda", "~> 2.11" + # Shoulda does not work nice on Ruby 1.9.3 and JRuby 1.7. + # It seems to need test-unit explicitely. + platforms = [:mri_19] + platforms << :jruby if defined?(JRUBY_VERSION) && JRUBY_VERSION >= "1.7" + gem "test-unit", :platforms => platforms + gem "mocha", "0.12.3" +end + +local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") +if File.exists?(local_gemfile) + puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v` + instance_eval File.read(local_gemfile) +end + +# Load plugins' Gemfiles +Dir.glob File.expand_path("../plugins/*/Gemfile", __FILE__) do |file| + puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` + instance_eval File.read(file) +end diff --git a/Gemfile.lock b/Gemfile.lock index 793993c..6b47441 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,132 +1,137 @@ -GEM - remote: http://rubygems.org/ - specs: - actionmailer (3.2.11) - actionpack (= 3.2.11) - mail (~> 2.4.4) - actionpack (3.2.11) - activemodel (= 3.2.11) - activesupport (= 3.2.11) - builder (~> 3.0.0) - erubis (~> 2.7.0) - journey (~> 1.0.4) - rack (~> 1.4.0) - rack-cache (~> 1.2) - rack-test (~> 0.6.1) - sprockets (~> 2.2.1) - activemodel (3.2.11) - activesupport (= 3.2.11) - builder (~> 3.0.0) - activerecord (3.2.11) - activemodel (= 3.2.11) - activesupport (= 3.2.11) - arel (~> 3.0.2) - tzinfo (~> 0.3.29) - activeresource (3.2.11) - activemodel (= 3.2.11) - activesupport (= 3.2.11) - activesupport (3.2.11) - i18n (~> 0.6) - multi_json (~> 1.0) - arel (3.0.2) - builder (3.0.0) - coderay (1.0.8) - erubis (2.7.0) - fastercsv (1.5.5) - hike (1.2.1) - i18n (0.6.1) - journey (1.0.4) - jquery-rails (2.0.3) - railties (>= 3.1.0, < 5.0) - thor (~> 0.14) - json (1.7.6) - mail (2.4.4) - i18n (>= 0.4.0) - mime-types (~> 1.16) - treetop (~> 1.4.8) - metaclass (0.0.1) - mime-types (1.19) - mocha (0.12.3) - metaclass (~> 0.0.1) - multi_json (1.5.0) - mysql (2.8.1-x86-mingw32) - mysql2 (0.3.11) - mysql2 (0.3.11-x86-mingw32) - net-ldap (0.3.1) - pg (0.14.1) - pg (0.14.1-x86-mingw32) - polyglot (0.3.3) - rack (1.4.1) - rack-cache (1.2) - rack (>= 0.4) - rack-openid (1.3.1) - rack (>= 1.1.0) - ruby-openid (>= 2.1.8) - rack-ssl (1.3.3) - rack - rack-test (0.6.2) - rack (>= 1.0) - rails (3.2.11) - actionmailer (= 3.2.11) - actionpack (= 3.2.11) - activerecord (= 3.2.11) - activeresource (= 3.2.11) - activesupport (= 3.2.11) - bundler (~> 1.0) - railties (= 3.2.11) - railties (3.2.11) - actionpack (= 3.2.11) - activesupport (= 3.2.11) - rack-ssl (~> 1.3.2) - rake (>= 0.8.7) - rdoc (~> 3.4) - thor (>= 0.14.6, < 2.0) - rake (10.0.3) - rdoc (3.12) - json (~> 1.4) - rmagick (2.13.1) - ruby-openid (2.1.8) - shoulda (2.11.3) - sprockets (2.2.2) - hike (~> 1.2) - multi_json (~> 1.0) - rack (~> 1.0) - tilt (~> 1.1, != 1.3.0) - sqlite3 (1.3.7) - sqlite3 (1.3.7-x86-mingw32) - thor (0.17.0) - tilt (1.3.3) - treetop (1.4.12) - polyglot - polyglot (>= 0.3.1) - tzinfo (0.3.35) - yard (0.8.3) - -PLATFORMS - x86-mingw32 - -DEPENDENCIES - activerecord-jdbcmysql-adapter - activerecord-jdbcpostgresql-adapter - activerecord-jdbcsqlite3-adapter - builder (= 3.0.0) - coderay (~> 1.0.6) - fastercsv (~> 1.5.0) - i18n (~> 0.6.0) - jquery-rails (~> 2.0.2) - jruby-openssl - mocha (= 0.12.3) - mysql (~> 2.8.1) - mysql2 (~> 0.3.11) - net-ldap (~> 0.3.1) - pg (>= 0.11.0) - rack (= 1.4.1) - rack-openid - rails (= 3.2.11) - rdoc (>= 2.4.2) - rmagick (>= 2.0.0) - ruby-openid (~> 2.1.4) - shoulda (~> 2.11) - sqlite3 - test-unit - yard +GEM + remote: http://rubygems.org/ + specs: + actionmailer (3.2.11) + actionpack (= 3.2.11) + mail (~> 2.4.4) + actionpack (3.2.11) + activemodel (= 3.2.11) + activesupport (= 3.2.11) + builder (~> 3.0.0) + erubis (~> 2.7.0) + journey (~> 1.0.4) + rack (~> 1.4.0) + rack-cache (~> 1.2) + rack-test (~> 0.6.1) + sprockets (~> 2.2.1) + activemodel (3.2.11) + activesupport (= 3.2.11) + builder (~> 3.0.0) + activerecord (3.2.11) + activemodel (= 3.2.11) + activesupport (= 3.2.11) + arel (~> 3.0.2) + tzinfo (~> 0.3.29) + activeresource (3.2.11) + activemodel (= 3.2.11) + activesupport (= 3.2.11) + activesupport (3.2.11) + i18n (~> 0.6) + multi_json (~> 1.0) + arel (3.0.2) + builder (3.0.0) + coderay (1.0.8) + erubis (2.7.0) + fastercsv (1.5.5) + hike (1.2.1) + i18n (0.6.1) + journey (1.0.4) + jquery-rails (2.0.3) + railties (>= 3.1.0, < 5.0) + thor (~> 0.14) + json (1.7.6) + mail (2.4.4) + i18n (>= 0.4.0) + mime-types (~> 1.16) + treetop (~> 1.4.8) + metaclass (0.0.1) + mime-types (1.19) + mocha (0.12.3) + metaclass (~> 0.0.1) + multi_json (1.5.0) + mysql (2.8.1) + mysql (2.8.1-x86-mingw32) + mysql2 (0.3.11) + mysql2 (0.3.11-x86-mingw32) + net-ldap (0.3.1) + pg (0.14.1) + pg (0.14.1-x86-mingw32) + polyglot (0.3.3) + power_assert (1.1.5) + rack (1.4.1) + rack-cache (1.2) + rack (>= 0.4) + rack-openid (1.3.1) + rack (>= 1.1.0) + ruby-openid (>= 2.1.8) + rack-ssl (1.3.3) + rack + rack-test (0.6.2) + rack (>= 1.0) + rails (3.2.11) + actionmailer (= 3.2.11) + actionpack (= 3.2.11) + activerecord (= 3.2.11) + activeresource (= 3.2.11) + activesupport (= 3.2.11) + bundler (~> 1.0) + railties (= 3.2.11) + railties (3.2.11) + actionpack (= 3.2.11) + activesupport (= 3.2.11) + rack-ssl (~> 1.3.2) + rake (>= 0.8.7) + rdoc (~> 3.4) + thor (>= 0.14.6, < 2.0) + rake (10.0.3) + rdoc (3.12) + json (~> 1.4) + rmagick (2.13.1) + ruby-openid (2.8.0) + shoulda (2.11.3) + sprockets (2.2.2) + hike (~> 1.2) + multi_json (~> 1.0) + rack (~> 1.0) + tilt (~> 1.1, != 1.3.0) + sqlite3 (1.3.7) + sqlite3 (1.3.7-x86-mingw32) + test-unit (3.3.5) + power_assert + thor (0.17.0) + tilt (1.3.3) + treetop (1.4.12) + polyglot + polyglot (>= 0.3.1) + tzinfo (0.3.35) + yard (0.8.3) + +PLATFORMS + ruby + x86-mingw32 + +DEPENDENCIES + activerecord-jdbcmysql-adapter + activerecord-jdbcpostgresql-adapter + activerecord-jdbcsqlite3-adapter + builder (= 3.0.0) + coderay (~> 1.0.6) + fastercsv (~> 1.5.0) + i18n (~> 0.6.0) + jquery-rails (~> 2.0.2) + jruby-openssl + mocha (= 0.12.3) + mysql (~> 2.8.1) + mysql2 (~> 0.3.11) + net-ldap (~> 0.3.1) + pg (>= 0.11.0) + rack (= 1.4.1) + rack-openid + rails (= 3.2.11) + rdoc (>= 2.4.2) + rmagick (>= 2.0.0) + ruby-openid (~> 2.8.0) + shoulda (~> 2.11) + sqlite3 + test-unit + yard