omniauth-forge 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -3
- data/lib/omniauth-forge.rb +3 -0
- data/lib/omniauth_forge/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 724417b4ea16c12cafa1485b88d20e29eaaf5bd068470ad29615cf76e6dd0a9b
|
4
|
+
data.tar.gz: a67d986ea08d98637cb93c12856d7c8d315f62fbeedfe110d56cedb3f06a2397
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0962433232949869eccc2abedcbeb7bbc9bc7938e3ad7edbddedf7412f1d96bf0bec02095e13d4aad18b53847ed30b39d54312652999f0948cf91a0f4dcc0901'
|
7
|
+
data.tar.gz: 95af90a57c187c766fd7c27f327ba64cbd926f8090c1eb0793b697f0c7a02d1208aa66734b6da0e9a1d7da3d0ece5e571565f6c1e070d19d630e5ee2fb91c9ef
|
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
|
9
|
+
## [0.1.1] - 2020-12-14
|
10
|
+
### Added
|
11
|
+
- First working version of the gem.
|
12
|
+
- Added proper documentation.
|
13
|
+
|
14
|
+
[Unreleased]: https://github.com/shotgunsoftware/omniauth-forge/compare/v0.1.1...HEAD
|
15
|
+
[0.1.1]: https://github.com/shotgunsoftware/omniauth-forge/releases/tag/v0.1.1
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -22,7 +22,7 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
## CVE
|
24
24
|
|
25
|
-
See [Omniauth Wiki]
|
25
|
+
See [Omniauth Wiki](https://github.com/omniauth/omniauth/wiki/Resolving-CVE-2015-9284).
|
26
26
|
There's an existing unfixed CVE on omniauth. This CVE is mitigated in Rails by using the gem [omniauth-rails_csrf_protection](https://github.com/cookpad/omniauth-rails_csrf_protection).
|
27
27
|
This gem will depend on that gem in order to protect as many people as possible.
|
28
28
|
|
@@ -56,8 +56,6 @@ provider(
|
|
56
56
|
|
57
57
|
- [Basic Sinatra](./examples/sinatra.rb)
|
58
58
|
|
59
|
-
TODO: Write usage instructions here
|
60
|
-
|
61
59
|
## Development
|
62
60
|
|
63
61
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/omniauth-forge.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-forge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Denis <Zaratan> Pasin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-12-
|
11
|
+
date: 2020-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth
|