frikandel 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +9 -1
- data/README.md +2 -1
- data/frikandel.gemspec +1 -1
- data/gemfiles/rails-7.0.x.gemfile +7 -0
- data/lib/frikandel/version.rb +1 -1
- metadata +32 -33
- data/spec/dummy/log/test.log +0 -2933
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab53e25dc96af500e8da8b67c3aab3d48d5dbfb7f67c99077274dc04f7462d42
|
4
|
+
data.tar.gz: 5d22c5724967a74ad4e4178e66d9483abd0548e3ee250921aa5f23945ab6d7de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6960701acec493040ece657bce0d8983831c887868535d72685383d58aafdd1142c94156518ba46de42ed2bf46e026dc498523b1202e5d7c6c87944bf69e5974
|
7
|
+
data.tar.gz: aa188025d4e92d0afe563c2cadc2d76da0ce38a831b90bcbd9a8c1c2450aaa9413eeeeb8b454fc84ab0b09a0c739944d214dd47942c07bb7ef12e0e5e387808a
|
data/.github/workflows/ci.yml
CHANGED
@@ -20,13 +20,21 @@ jobs:
|
|
20
20
|
|
21
21
|
runs-on: ubuntu-latest
|
22
22
|
strategy:
|
23
|
+
fail-fast: false
|
23
24
|
matrix:
|
24
25
|
ruby-version: ['2.6', '2.7', '3.0', jruby, truffleruby]
|
25
|
-
gemfile: [rails-5.2.x, rails-6.0.x, rails-6.1.x]
|
26
|
+
gemfile: [rails-5.2.x, rails-6.0.x, rails-6.1.x, rails-7.0.x]
|
26
27
|
exclude:
|
27
28
|
# ruby 3 is not compatible with rails < 6
|
28
29
|
- ruby-version: '3.0'
|
29
30
|
gemfile: rails-5.2.x
|
31
|
+
- ruby-version: 'truffleruby'
|
32
|
+
gemfile: rails-5.2.x
|
33
|
+
# ruby < 2.7 is not compatible with rails 7
|
34
|
+
- ruby-version: '2.6'
|
35
|
+
gemfile: rails-7.0.x
|
36
|
+
- ruby-version: 'jruby'
|
37
|
+
gemfile: rails-7.0.x
|
30
38
|
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
|
31
39
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
32
40
|
|
data/README.md
CHANGED
@@ -18,7 +18,7 @@ By adding a TTL the attack window gets smaller. An stolen has to be used within
|
|
18
18
|
|
19
19
|
## Requirements
|
20
20
|
|
21
|
-
Rails 5.2 and 6.x are currently supported.
|
21
|
+
Rails 5.2 and 6.x and 7.0 are currently supported.
|
22
22
|
|
23
23
|
|
24
24
|
## Installation
|
@@ -93,6 +93,7 @@ end
|
|
93
93
|
|
94
94
|
## Changes
|
95
95
|
|
96
|
+
* v3.0.1 -- Add support for Rails v7.x
|
96
97
|
* v3.0.0 -- Drop support for Rails < v5.2, add support for Rails v6.1 and switch from TravisCI to GithubActions
|
97
98
|
* v2.3.0 -- Add support for Rails v5.1 and Rails v6.0 and fix TravisCI builds
|
98
99
|
* v2.2.0 -- Add support for Rails v5.0 and update to RSpec 3
|
data/frikandel.gemspec
CHANGED
data/lib/frikandel/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: frikandel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taktsoft
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -117,7 +117,7 @@ dependencies:
|
|
117
117
|
version: 5.2.0
|
118
118
|
- - "<"
|
119
119
|
- !ruby/object:Gem::Version
|
120
|
-
version:
|
120
|
+
version: 8.0.0
|
121
121
|
type: :runtime
|
122
122
|
prerelease: false
|
123
123
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -127,7 +127,7 @@ dependencies:
|
|
127
127
|
version: 5.2.0
|
128
128
|
- - "<"
|
129
129
|
- !ruby/object:Gem::Version
|
130
|
-
version:
|
130
|
+
version: 8.0.0
|
131
131
|
description: This gem adds a ttl to the session cookie of your application.
|
132
132
|
email:
|
133
133
|
- developers@taktsoft.com
|
@@ -147,6 +147,7 @@ files:
|
|
147
147
|
- gemfiles/rails-5.2.x.gemfile
|
148
148
|
- gemfiles/rails-6.0.x.gemfile
|
149
149
|
- gemfiles/rails-6.1.x.gemfile
|
150
|
+
- gemfiles/rails-7.0.x.gemfile
|
150
151
|
- gemfiles/rails-head.gemfile
|
151
152
|
- lib/frikandel.rb
|
152
153
|
- lib/frikandel/bind_session_to_ip_address.rb
|
@@ -192,7 +193,6 @@ files:
|
|
192
193
|
- spec/dummy/config/locales/en.yml
|
193
194
|
- spec/dummy/config/routes.rb
|
194
195
|
- spec/dummy/lib/assets/.keep
|
195
|
-
- spec/dummy/log/test.log
|
196
196
|
- spec/dummy/public/404.html
|
197
197
|
- spec/dummy/public/422.html
|
198
198
|
- spec/dummy/public/500.html
|
@@ -220,49 +220,48 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
220
220
|
- !ruby/object:Gem::Version
|
221
221
|
version: 1.3.6
|
222
222
|
requirements: []
|
223
|
-
rubygems_version: 3.
|
223
|
+
rubygems_version: 3.3.7
|
224
224
|
signing_key:
|
225
225
|
specification_version: 4
|
226
226
|
summary: This gem adds a ttl to the session cookie of your application.
|
227
227
|
test_files:
|
228
|
-
- spec/
|
229
|
-
- spec/
|
230
|
-
- spec/
|
231
|
-
- spec/
|
232
|
-
- spec/dummy/
|
228
|
+
- spec/controllers/bind_session_to_ip_address_controller_spec.rb
|
229
|
+
- spec/controllers/combined_controller_spec.rb
|
230
|
+
- spec/controllers/customized_on_invalid_session_controller_spec.rb
|
231
|
+
- spec/controllers/limit_session_lifetime_controller_spec.rb
|
232
|
+
- spec/dummy/README.rdoc
|
233
|
+
- spec/dummy/Rakefile
|
233
234
|
- spec/dummy/app/assets/config/manifest.js
|
235
|
+
- spec/dummy/app/assets/javascripts/application.js
|
234
236
|
- spec/dummy/app/assets/stylesheets/application.css
|
235
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
236
|
-
- spec/dummy/app/helpers/application_helper.rb
|
237
237
|
- spec/dummy/app/controllers/application_controller.rb
|
238
|
-
- spec/dummy/
|
238
|
+
- spec/dummy/app/helpers/application_helper.rb
|
239
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
240
|
+
- spec/dummy/bin/bundle
|
241
|
+
- spec/dummy/bin/rails
|
242
|
+
- spec/dummy/bin/rake
|
243
|
+
- spec/dummy/config/application.rb
|
239
244
|
- spec/dummy/config/boot.rb
|
240
245
|
- spec/dummy/config/database.yml
|
241
|
-
- spec/dummy/config/
|
242
|
-
- spec/dummy/config/
|
243
|
-
- spec/dummy/config/
|
246
|
+
- spec/dummy/config/environment.rb
|
247
|
+
- spec/dummy/config/environments/development.rb
|
248
|
+
- spec/dummy/config/environments/production.rb
|
249
|
+
- spec/dummy/config/environments/test.rb
|
244
250
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
251
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
252
|
+
- spec/dummy/config/initializers/inflections.rb
|
253
|
+
- spec/dummy/config/initializers/mime_types.rb
|
245
254
|
- spec/dummy/config/initializers/secret_token.rb
|
246
255
|
- spec/dummy/config/initializers/session_store.rb
|
247
|
-
- spec/dummy/config/initializers/mime_types.rb
|
248
256
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
249
|
-
- spec/dummy/config/application.rb
|
250
257
|
- spec/dummy/config/locales/en.yml
|
251
|
-
- spec/dummy/config/
|
252
|
-
- spec/dummy/config/environments/development.rb
|
253
|
-
- spec/dummy/config/environments/test.rb
|
254
|
-
- spec/dummy/Rakefile
|
258
|
+
- spec/dummy/config/routes.rb
|
255
259
|
- spec/dummy/config.ru
|
256
|
-
- spec/dummy/public/favicon.ico
|
257
260
|
- spec/dummy/public/404.html
|
258
261
|
- spec/dummy/public/422.html
|
259
262
|
- spec/dummy/public/500.html
|
260
|
-
- spec/dummy/
|
261
|
-
- spec/
|
262
|
-
- spec/
|
263
|
-
- spec/
|
264
|
-
- spec/
|
265
|
-
- spec/controllers/limit_session_lifetime_controller_spec.rb
|
266
|
-
- spec/controllers/customized_on_invalid_session_controller_spec.rb
|
267
|
-
- spec/controllers/bind_session_to_ip_address_controller_spec.rb
|
268
|
-
- spec/controllers/combined_controller_spec.rb
|
263
|
+
- spec/dummy/public/favicon.ico
|
264
|
+
- spec/lib/frikandel/configuration_spec.rb
|
265
|
+
- spec/rails_helper.rb
|
266
|
+
- spec/spec_helper.rb
|
267
|
+
- spec/support/application_controller.rb
|