Skip to content

Commit 00e95f3

Browse files
Remove references to onelogin support.
1 parent 07947f7 commit 00e95f3

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

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: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,15 @@ 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"]
109
s.date = Time.now.strftime("%Y-%m-%d")
1110
s.description = %q{SAML toolkit for Ruby on Rails}
12-
s.email = %q{[email protected]}
1311
s.license = 'MIT'
1412
s.extra_rdoc_files = [
1513
"LICENSE",
1614
"README.md"
1715
]
1816
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}
17+
s.homepage = %q{https://github.com/saml-toolkit/ruby-saml}
2018
s.rdoc_options = ["--charset=UTF-8"]
2119
s.require_paths = ["lib"]
2220
s.rubygems_version = %q{1.3.7}

0 commit comments

Comments
 (0)