Skip to content

Commit 9efe57a

Browse files
Merge pull request #646 from SAML-Toolkits/saml-migration
Remove references to onelogin support.
2 parents 07947f7 + c39dfe2 commit 9efe57a

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
os: [ubuntu-latest, macos-latest]
11+
os: [ubuntu-20.04, macos-latest]
1212
ruby-version: [2.1.9, 2.2.10, 2.3.8, 2.4.6, 2.5.8, 2.6.6, 2.7.2, 3.0.1, '3.1', jruby-9.1.17.0, jruby-9.2.17.0, truffleruby]
1313
runs-on: ${{ matrix.os }}
1414
steps:

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
[![Build Status](https://github.com/onelogin/ruby-saml/actions/workflows/test.yml/badge.svg?query=branch%3Amaster)](https://github.com/onelogin/ruby-saml/actions/workflows/test.yml?query=branch%3Amaster)
33
[![Coverage Status](https://coveralls.io/repos/onelogin/ruby-saml/badge.svg?branch=master)](https://coveralls.io/r/onelogin/ruby-saml?branch=master)
44

5-
## **Notice:** This project is currently not under active development, please see [#640](https://github.com/onelogin/ruby-saml/issues/640) for more information.
6-
75
Ruby SAML minor and tiny versions may introduce breaking changes. Please read
86
[UPGRADING.md](UPGRADING.md) for guidance on upgrading to new Ruby SAML versions.
97

@@ -16,7 +14,7 @@ requests from identity providers.
1614
SAML authorization is a two step process and you are expected to implement support for both.
1715

1816
We created a demo project for Rails 4 that uses the latest version of this library:
19-
[ruby-saml-example](https://github.com/onelogin/ruby-saml-example)
17+
[ruby-saml-example](https://github.com/saml-toolkit/ruby-saml-example)
2018

2119
### Supported Ruby Versions
2220

@@ -54,8 +52,7 @@ In addition, the following may work but are untested:
5452
## Security Guidelines
5553

5654
If you believe you have discovered a security vulnerability in this gem, please report it
57-
at https://www.onelogin.com/security with a description. We follow responsible disclosure
58-
guidelines, and will work with you to quickly find a resolution.
55+
as an issue
5956

6057
### Security Warning
6158

@@ -89,7 +86,7 @@ Using `Gemfile`
8986
gem 'ruby-saml', '~> 1.11.0'
9087

9188
# or track master for bleeding-edge
92-
gem 'ruby-saml', :github => 'onelogin/ruby-saml'
89+
gem 'ruby-saml', :github => 'saml-toolkit/ruby-saml'
9390
```
9491

9592
Using RubyGems
@@ -101,13 +98,13 @@ gem install ruby-saml
10198
You may require the entire Ruby SAML gem:
10299

103100
```ruby
104-
require 'onelogin/ruby-saml'
101+
require 'saml-toolkit/ruby-saml'
105102
```
106103

107104
or just the required components individually:
108105

109106
```ruby
110-
require 'onelogin/ruby-saml/authrequest'
107+
require 'saml-toolkit/ruby-saml/authrequest'
111108
```
112109

113110
### Installation on Ruby 1.8.7

ruby-saml.gemspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@ Gem::Specification.new do |s|
66
s.version = OneLogin::RubySaml::VERSION
77

88
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9-
s.authors = ["OneLogin LLC"]
9+
s.authors = ["SAML Toolkit"]
1010
s.date = Time.now.strftime("%Y-%m-%d")
1111
s.description = %q{SAML toolkit for Ruby on Rails}
12-
s.email = %q{[email protected]}
1312
s.license = 'MIT'
1413
s.extra_rdoc_files = [
1514
"LICENSE",
1615
"README.md"
1716
]
1817
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19-
s.homepage = %q{https://github.com/onelogin/ruby-saml}
18+
s.homepage = %q{https://github.com/saml-toolkit/ruby-saml}
2019
s.rdoc_options = ["--charset=UTF-8"]
2120
s.require_paths = ["lib"]
2221
s.rubygems_version = %q{1.3.7}

0 commit comments

Comments
 (0)