Skip to content

Commit d00751b

Browse files
authored
Merge pull request #2 from oauth-xx/rename
🚚 Rename to masq2
2 parents 06e7e26 + 356d384 commit d00751b

File tree

5 files changed

+24
-17
lines changed

5 files changed

+24
-17
lines changed

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
# Masq OpenID Server
1+
# Masq2 OpenID Server
22

33
[![Build Status](https://travis-ci.org/bardbess/masq.svg?branch=master)](http://travis-ci.org/bardbess/masq)
44

5-
Masq is a mountable Rails engine that provides OpenID server/identity provider functionality.
6-
It is the successor of the stand-alone Rails application [masquerade](http://github.com/dennisreimann/masquerade/).
5+
Masq2 is a mountable Rails engine that provides OpenID server/identity provider functionality.
6+
It is the successor to the [masq gem](https://github.com/dennisreimann/masq), which in turn
7+
was the successor of the stand-alone Rails application of the same purpose, [masquerade](http://github.com/dennisreimann/masquerade/).
78

8-
The project is released under the MIT-License and its source code is available at [GitHub](http://github.com/dennisreimann/masquerade/).
9+
Because of this history, and the desire to be drop-in compatible with `masq`,
10+
the namespace remains `Masq`, not `Masq2`.
11+
12+
The project is released under the MIT-License and its source code is available at [GitHub](http://github.com/oauth-xx/masq2/).
913
Feel free to fork and submit patches :)
1014

1115
## Installation
1216

13-
0. In case you want to run masq as a standalone application (not integrated into an existing app), you will have to generate a barebone Rails app first:
17+
0. In case you want to run Masq2 as a standalone application (not integrated into an existing app), you will have to generate a bare-bone Rails app first:
1418
* `rails new my_openid_provider`
1519

16-
1. Add masq to your Gemfile and install it:
17-
* `gem 'masq'`
20+
1. Add `masq2` to your Gemfile and install it:
21+
* `gem 'masq2'`
1822
* `bundle install`
1923

2024
2. Copy the configuration and edit it:
@@ -56,7 +60,9 @@ client-server communication (like requesting simple registration data).
5660

5761
### Introduction
5862

59-
This fork adds ORACLE database support to the existing dennisreimann/masq gem.
63+
`masq2` adds ORACLE database support, as well as support for
64+
Rails 5.1, 5.2, 6.0, 6.1, 7.0, 7.1, 7.2, 8.0,
65+
which `masq` never had.
6066

6167
The main functionality is in the server controller, which is the endpoint for incoming
6268
OpenID requests. The server controller is supposed to only interact with relying parties

app/views/layouts/masq/base.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
<div id="foot">
6161
<div class="wrap">
6262
<span class="note">
63-
powered by <%= link_to 'masq', 'https://github.com/dennisreimann/masq' %>
64-
and <%= link_to image_tag('masq/openid_symbol.png') + " OpenID", 'http://openid.net/' %> |
63+
powered by <%= link_to 'masq', 'https://github.com/oauth-xx/masq2' %>
64+
and <%= link_to image_tag('masq/openid_symbol.png') + " OpenID", 'https://openid.net/' %> |
6565
<%= link_to t(:get_help), help_path %>
6666
</span>
6767
</div>

app/views/layouts/masq/consumer.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
<div id="foot">
2222
<div class="wrap">
2323
<span class="note">
24-
powered by <%= link_to "masq", 'https://github.com/dennisreimann/masq' %>
25-
and <%= link_to image_tag('masq/openid_symbol.png') + " OpenID", 'http://openid.net/' %>
24+
powered by <%= link_to "masq", 'https://github.com/oauth-xx/masq2' %>
25+
and <%= link_to image_tag('masq/openid_symbol.png') + " OpenID", 'https://openid.net/' %>
2626
</span>
2727
</div>
2828
</div>

lib/masq2.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require_relative "masq"

masq.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ require "masq/version"
55

66
# Describe your gem and declare its dependencies:
77
Gem::Specification.new do |s|
8-
s.name = "masq"
8+
s.name = "masq2"
99
s.version = Masq::VERSION
10-
s.authors = ["Dennis Reimann", "Bardoe Besselaar","Nikita Vasiliev"]
11-
s.email = ["[email protected]"]
12-
s.homepage = "https://github.com/bardbess/masq"
10+
s.authors = ["Peter Boling", "Dennis Reimann", "Bardoe Besselaar","Nikita Vasiliev"]
11+
s.email = ["[email protected]"]
12+
s.homepage = "https://github.com/oauth-xx/masq2"
1313
s.summary = "Mountable Rails engine that provides OpenID server/identity provider functionality"
14-
s.description = "Masq supports the current OpenID specifications (OpenID 2.0) and supports SReg, AX (fetch and store requests) and PAPE as well as some custom additions like multifactor authentication using a yubikey"
14+
s.description = "Masq2 supports the current OpenID specifications (OpenID 2.0) and supports SReg, AX (fetch and store requests) and PAPE as well as some custom additions like multi-factor authentication using a yubikey"
1515

1616
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
1717
s.test_files = Dir["test/**/*"]

0 commit comments

Comments
 (0)