omniauth-rails_csrf_protection 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +45 -0
- data/README.md +2 -0
- data/lib/omniauth/rails_csrf_protection/version.rb +1 -1
- data/omniauth-rails_csrf_protection.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8df3f086d2041b087768ece37dd651998df2a302a85f3b3978cb0f03cd6864e5
|
4
|
+
data.tar.gz: 012754e4a99a72cf407d3592fb53699346e52bd0baeaf319146a096da8c980fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d758b6900666a5e4a4b3fee3401148591158e3e9df0881f27013bdbe2f615b0cbae5adb00daa477ea17264be90e638f008cea76aae63a68af2c281c67ab65bc
|
7
|
+
data.tar.gz: 9a6fbd1be985e5ce835ce0c15c8e002d339c9661a72b48692561e4e1ab0e9754fdbb1e65f9fbc29c86fd84f619216d82a5468e4d2b58c060069374696f57d43f
|
data/.circleci/config.yml
CHANGED
@@ -15,6 +15,10 @@ build_steps: &build_steps
|
|
15
15
|
name: Run tests
|
16
16
|
command: rake
|
17
17
|
|
18
|
+
ruby-2-4: &ruby-2-4
|
19
|
+
docker:
|
20
|
+
- image: circleci/ruby:2.4
|
21
|
+
|
18
22
|
ruby-2-5: &ruby-2-5
|
19
23
|
docker:
|
20
24
|
- image: circleci/ruby:2.5
|
@@ -23,6 +27,14 @@ ruby-2-6: &ruby-2-6
|
|
23
27
|
docker:
|
24
28
|
- image: circleci/ruby:2.6
|
25
29
|
|
30
|
+
rails-4-2: &rails-4-2
|
31
|
+
environment:
|
32
|
+
RAILS_VERSION: "~> 4.2.0"
|
33
|
+
|
34
|
+
rails-5-0: &rails-5-0
|
35
|
+
environment:
|
36
|
+
RAILS_VERSION: "~> 5.0.0"
|
37
|
+
|
26
38
|
rails-5-1: &rails-5-1
|
27
39
|
environment:
|
28
40
|
RAILS_VERSION: "~> 5.1.0"
|
@@ -40,6 +52,27 @@ rails-edge: &rails-edge
|
|
40
52
|
RAILS_BRANCH: "master"
|
41
53
|
|
42
54
|
jobs:
|
55
|
+
"ruby-2-4-rails-4-2":
|
56
|
+
<<: *ruby-2-4
|
57
|
+
<<: *rails-4-2
|
58
|
+
<<: *build_steps
|
59
|
+
"ruby-2-4-rails-5-0":
|
60
|
+
<<: *ruby-2-4
|
61
|
+
<<: *rails-5-0
|
62
|
+
<<: *build_steps
|
63
|
+
"ruby-2-4-rails-5-1":
|
64
|
+
<<: *ruby-2-4
|
65
|
+
<<: *rails-5-1
|
66
|
+
<<: *build_steps
|
67
|
+
"ruby-2-4-rails-5-2":
|
68
|
+
<<: *ruby-2-4
|
69
|
+
<<: *rails-5-2
|
70
|
+
<<: *build_steps
|
71
|
+
|
72
|
+
"ruby-2-5-rails-5-0":
|
73
|
+
<<: *ruby-2-5
|
74
|
+
<<: *rails-5-0
|
75
|
+
<<: *build_steps
|
43
76
|
"ruby-2-5-rails-5-1":
|
44
77
|
<<: *ruby-2-5
|
45
78
|
<<: *rails-5-1
|
@@ -56,6 +89,11 @@ jobs:
|
|
56
89
|
<<: *ruby-2-5
|
57
90
|
<<: *rails-edge
|
58
91
|
<<: *build_steps
|
92
|
+
|
93
|
+
"ruby-2-6-rails-5-0":
|
94
|
+
<<: *ruby-2-6
|
95
|
+
<<: *rails-5-0
|
96
|
+
<<: *build_steps
|
59
97
|
"ruby-2-6-rails-5-1":
|
60
98
|
<<: *ruby-2-6
|
61
99
|
<<: *rails-5-1
|
@@ -77,10 +115,17 @@ workflows:
|
|
77
115
|
version: 2
|
78
116
|
build:
|
79
117
|
jobs:
|
118
|
+
- "ruby-2-4-rails-4-2"
|
119
|
+
- "ruby-2-4-rails-5-1"
|
120
|
+
- "ruby-2-4-rails-5-2"
|
121
|
+
|
122
|
+
- "ruby-2-5-rails-5-0"
|
80
123
|
- "ruby-2-5-rails-5-1"
|
81
124
|
- "ruby-2-5-rails-5-2"
|
82
125
|
- "ruby-2-5-rails-6-0"
|
83
126
|
- "ruby-2-5-rails-edge"
|
127
|
+
|
128
|
+
- "ruby-2-6-rails-5-0"
|
84
129
|
- "ruby-2-6-rails-5-1"
|
85
130
|
- "ruby-2-6-rails-5-2"
|
86
131
|
- "ruby-2-6-rails-6-0"
|
data/README.md
CHANGED
@@ -5,6 +5,8 @@ Forgery on the request phrase when using OmniAuth gem with a Ruby on Rails
|
|
5
5
|
application) by implementing a CSRF token verifier that directly utilize
|
6
6
|
`ActionController::RequestForgeryProtection` code from Rails.
|
7
7
|
|
8
|
+
[![CircleCI](https://circleci.com/gh/cookpad/omniauth-rails_csrf_protection/tree/master.svg?style=svg)](https://circleci.com/gh/cookpad/omniauth-rails_csrf_protection/tree/master)
|
9
|
+
|
8
10
|
## Usage
|
9
11
|
|
10
12
|
Add this line to your application's Gemfile:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-rails_csrf_protection
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cookpad Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '4.2'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '4.2'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: omniauth
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|