diff options
| author | mo <mo.khan@gmail.com> | 2018-01-27 11:29:16 -0700 |
|---|---|---|
| committer | mo <mo.khan@gmail.com> | 2018-01-27 11:29:16 -0700 |
| commit | c754815312b27a9d3570e4bd0b82bfd391f724ca (patch) | |
| tree | 9003ee38e761b51b155d3a23ce6097d1e08c7df6 | |
| parent | f62c5a557a86d9c01e52d3e33ccbee757acc8110 (diff) | |
upgrade to saml-kit 1.0.0
| -rw-r--r-- | Gemfile | 2 | ||||
| -rw-r--r-- | Gemfile.lock | 13 | ||||
| -rw-r--r-- | config/initializers/saml_kit.rb | 2 |
3 files changed, 8 insertions, 9 deletions
@@ -61,6 +61,6 @@ end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] gem 'dotenv-rails' -gem "saml-kit", '0.3.2' +gem "saml-kit", '1.0.0' gem "rails-assets-bootstrap", source: "https://rails-assets.org" gem "rails-assets-jquery", source: "https://rails-assets.org" diff --git a/Gemfile.lock b/Gemfile.lock index 0710871..82e0f86 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -172,10 +172,9 @@ GEM ruby_dep (1.5.0) rubyzip (1.2.1) safe_yaml (1.0.4) - saml-kit (0.3.2) + saml-kit (1.0.0) activemodel (>= 4.2.0) - nokogiri (~> 1.8) - xml-kit (>= 0.1.1) + xml-kit (~> 0.1) sass (3.5.2) sass-listen (~> 4.0.0) sass-listen (4.0.0) @@ -225,11 +224,11 @@ GEM websocket-driver (0.6.5) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.2) - xml-kit (0.1.1) + xml-kit (0.1.3) activemodel (>= 4.2.0) builder (~> 3.2) - nokogiri (~> 1.8) - tilt (~> 2.0) + nokogiri (>= 1.8.1) + tilt (>= 1.4.1) xmldsig (~> 0.6) xmldsig (0.6.5) nokogiri (>= 1.6.8, < 2.0.0) @@ -256,7 +255,7 @@ DEPENDENCIES rails-controller-testing rails_12factor rspec-rails (~> 3.6) - saml-kit (= 0.3.2) + saml-kit (= 1.0.0) sass-rails (~> 5.0) selenium-webdriver spring diff --git a/config/initializers/saml_kit.rb b/config/initializers/saml_kit.rb index b9f2fd6..ee155dc 100644 --- a/config/initializers/saml_kit.rb +++ b/config/initializers/saml_kit.rb @@ -1,5 +1,5 @@ Saml::Kit.configure do |configuration| - configuration.issuer = ENV['ISSUER'] + configuration.entity_id = ENV['ISSUER'] configuration.registry = Metadatum configuration.generate_key_pair_for(use: :signing) configuration.generate_key_pair_for(use: :encryption) |
