rails_same_site_cookie 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +8 -0
- data/.idea/rails_same_site_cookie.iml +89 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +727 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +144 -0
- data/LICENSE.txt +21 -0
- data/README.md +57 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/rails_same_site_cookie.rb +20 -0
- data/lib/rails_same_site_cookie/configuration.rb +9 -0
- data/lib/rails_same_site_cookie/middleware.rb +42 -0
- data/lib/rails_same_site_cookie/railtie.rb +9 -0
- data/lib/rails_same_site_cookie/user_agent_checker.rb +83 -0
- data/lib/rails_same_site_cookie/version.rb +3 -0
- data/rails_same_site_cookie.gemspec +33 -0
- metadata +153 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 44f7c4d25ffe790936758b875a612f9825f32f11
|
4
|
+
data.tar.gz: db492eae2ac5ddfb10ec5a3bbc61a89f94da6483
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3f2f6a6ebc2a6a6d90fbeaf4e536237c7fd5343f5c2be8e71cdb4090984d9a10c9cbdd81248d2c6ab1c580336764ddf7ecb19dd92d82872be8c133b52432222a
|
7
|
+
data.tar.gz: 1da59597483dea27e361143d6c0ada254ec6529859c7f249654ec2430a05ffef3c47a2b056db9beca77482abc1822a15539770a2036fcda5f6d02b18626e5be6
|
data/.gitignore
ADDED
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build rails_same_site_cookie-0.1.0.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install rails_same_site_cookie-0.1.0.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install rails_same_site_cookie-0.1.0.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.1.0 and build and push rails_same_site_cookie-0.1.0.gem to TODO: Set to 'http://mygemserver.com'" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
4
|
+
<OptionsSetting value="true" id="Add" />
|
5
|
+
<OptionsSetting value="true" id="Remove" />
|
6
|
+
<OptionsSetting value="true" id="Checkout" />
|
7
|
+
<OptionsSetting value="true" id="Update" />
|
8
|
+
<OptionsSetting value="true" id="Status" />
|
9
|
+
<OptionsSetting value="true" id="Edit" />
|
10
|
+
<ConfirmationsSetting value="0" id="Add" />
|
11
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
12
|
+
</component>
|
13
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="rbenv: 2.3.0" project-jdk-type="RUBY_SDK" />
|
14
|
+
</project>
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/rails_same_site_cookie.iml" filepath="$PROJECT_DIR$/.idea/rails_same_site_cookie.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
@@ -0,0 +1,89 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
4
|
+
<configuration default="false" name="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
5
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
6
|
+
<module name="rails_same_site_cookie" />
|
7
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
8
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
9
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
10
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
11
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
12
|
+
<envs>
|
13
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
14
|
+
</envs>
|
15
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
16
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
17
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
18
|
+
<COVERAGE_PATTERN ENABLED="true">
|
19
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
20
|
+
</COVERAGE_PATTERN>
|
21
|
+
</EXTENSION>
|
22
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
23
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/middleware_spec.rb" />
|
24
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
25
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
26
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex" />
|
27
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
28
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
29
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
30
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
31
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
32
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
33
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
34
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
35
|
+
<method />
|
36
|
+
</configuration>
|
37
|
+
</component>
|
38
|
+
<component name="NewModuleRootManager">
|
39
|
+
<content url="file://$MODULE_DIR$" />
|
40
|
+
<orderEntry type="inheritedJdk" />
|
41
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="actioncable (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="actionmailer (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="actionpack (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="actionview (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="activejob (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="activemodel (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="activerecord (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="activestorage (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="arel (v9.0.0, rbenv: 2.3.0) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.5, rbenv: 2.3.0) [gem]" level="application" />
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="crass (v1.0.5, rbenv: 2.3.0) [gem]" level="application" />
|
55
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, rbenv: 2.3.0) [gem]" level="application" />
|
56
|
+
<orderEntry type="library" scope="PROVIDED" name="erubi (v1.9.0, rbenv: 2.3.0) [gem]" level="application" />
|
57
|
+
<orderEntry type="library" scope="PROVIDED" name="globalid (v0.4.2, rbenv: 2.3.0) [gem]" level="application" />
|
58
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v1.7.0, rbenv: 2.3.0) [gem]" level="application" />
|
59
|
+
<orderEntry type="library" scope="PROVIDED" name="loofah (v2.3.1, rbenv: 2.3.0) [gem]" level="application" />
|
60
|
+
<orderEntry type="library" scope="PROVIDED" name="mail (v2.7.1, rbenv: 2.3.0) [gem]" level="application" />
|
61
|
+
<orderEntry type="library" scope="PROVIDED" name="marcel (v0.3.3, rbenv: 2.3.0) [gem]" level="application" />
|
62
|
+
<orderEntry type="library" scope="PROVIDED" name="method_source (v0.9.2, rbenv: 2.3.0) [gem]" level="application" />
|
63
|
+
<orderEntry type="library" scope="PROVIDED" name="mimemagic (v0.3.3, rbenv: 2.3.0) [gem]" level="application" />
|
64
|
+
<orderEntry type="library" scope="PROVIDED" name="mini_mime (v1.0.2, rbenv: 2.3.0) [gem]" level="application" />
|
65
|
+
<orderEntry type="library" scope="PROVIDED" name="mini_portile2 (v2.4.0, rbenv: 2.3.0) [gem]" level="application" />
|
66
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.13.0, rbenv: 2.3.0) [gem]" level="application" />
|
67
|
+
<orderEntry type="library" scope="PROVIDED" name="nio4r (v2.5.2, rbenv: 2.3.0) [gem]" level="application" />
|
68
|
+
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.10.5, rbenv: 2.3.0) [gem]" level="application" />
|
69
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v2.0.7, rbenv: 2.3.0) [gem]" level="application" />
|
70
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-test (v1.1.0, rbenv: 2.3.0) [gem]" level="application" />
|
71
|
+
<orderEntry type="library" scope="PROVIDED" name="rails-dom-testing (v2.0.3, rbenv: 2.3.0) [gem]" level="application" />
|
72
|
+
<orderEntry type="library" scope="PROVIDED" name="rails-html-sanitizer (v1.3.0, rbenv: 2.3.0) [gem]" level="application" />
|
73
|
+
<orderEntry type="library" scope="PROVIDED" name="railties (v5.2.3, rbenv: 2.3.0) [gem]" level="application" />
|
74
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, rbenv: 2.3.0) [gem]" level="application" />
|
75
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.9.0, rbenv: 2.3.0) [gem]" level="application" />
|
76
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.9.0, rbenv: 2.3.0) [gem]" level="application" />
|
77
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.9.0, rbenv: 2.3.0) [gem]" level="application" />
|
78
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.9.0, rbenv: 2.3.0) [gem]" level="application" />
|
79
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.9.0, rbenv: 2.3.0) [gem]" level="application" />
|
80
|
+
<orderEntry type="library" scope="PROVIDED" name="sprockets (v3.7.2, rbenv: 2.3.0) [gem]" level="application" />
|
81
|
+
<orderEntry type="library" scope="PROVIDED" name="sprockets-rails (v3.2.1, rbenv: 2.3.0) [gem]" level="application" />
|
82
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v0.20.3, rbenv: 2.3.0) [gem]" level="application" />
|
83
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, rbenv: 2.3.0) [gem]" level="application" />
|
84
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.5, rbenv: 2.3.0) [gem]" level="application" />
|
85
|
+
<orderEntry type="library" scope="PROVIDED" name="user_agent_parser (v2.5.1, rbenv: 2.3.0) [gem]" level="application" />
|
86
|
+
<orderEntry type="library" scope="PROVIDED" name="websocket-driver (v0.7.1, rbenv: 2.3.0) [gem]" level="application" />
|
87
|
+
<orderEntry type="library" scope="PROVIDED" name="websocket-extensions (v0.1.4, rbenv: 2.3.0) [gem]" level="application" />
|
88
|
+
</component>
|
89
|
+
</module>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,727 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="1e0e9314-6ae0-4b09-b5fc-2409f43cc399" name="Default" comment="">
|
5
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/rails_same_site_cookie-0.1.0.gem" afterPath="" />
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/rails_same_site_cookie.gemspec" afterPath="$PROJECT_DIR$/rails_same_site_cookie.gemspec" />
|
7
|
+
</list>
|
8
|
+
<ignored path="rails_same_site_cookie.iws" />
|
9
|
+
<ignored path=".idea/workspace.xml" />
|
10
|
+
<ignored path=".idea/dataSources.local.xml" />
|
11
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
12
|
+
<option name="TRACKING_ENABLED" value="true" />
|
13
|
+
<option name="SHOW_DIALOG" value="false" />
|
14
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
15
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
16
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
17
|
+
</component>
|
18
|
+
<component name="CoverageDataManager">
|
19
|
+
<SUITE FILE_PATH="coverage/rails_same_site_cookie@RailsSameSiteCookie__Middleware_when_configured_with_a_regex_adds_SameSite_None_to_cookies_for_requests_whose_UA_matches_regex__rails_same_site_cookie.coverage" NAME="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie Coverage Results" MODIFIED="1572917506590" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="rails_same_site_cookie" />
|
20
|
+
</component>
|
21
|
+
<component name="CreatePatchCommitExecutor">
|
22
|
+
<option name="PATCH_PATH" value="" />
|
23
|
+
</component>
|
24
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
25
|
+
<component name="FavoritesManager">
|
26
|
+
<favorites_list name="rails_same_site_cookie" />
|
27
|
+
</component>
|
28
|
+
<component name="FileEditorManager">
|
29
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="600">
|
30
|
+
<file leaf-file-name="rails_same_site_cookie.gemspec" pinned="false" current-in-tab="true">
|
31
|
+
<entry file="file://$PROJECT_DIR$/rails_same_site_cookie.gemspec">
|
32
|
+
<provider selected="true" editor-type-id="text-editor">
|
33
|
+
<state relative-caret-position="348">
|
34
|
+
<caret line="12" column="28" selection-start-line="12" selection-start-column="28" selection-end-line="12" selection-end-column="28" />
|
35
|
+
<folding />
|
36
|
+
</state>
|
37
|
+
</provider>
|
38
|
+
</entry>
|
39
|
+
</file>
|
40
|
+
<file leaf-file-name="rails_same_site_cookie.rb" pinned="false" current-in-tab="false">
|
41
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie.rb">
|
42
|
+
<provider selected="true" editor-type-id="text-editor">
|
43
|
+
<state relative-caret-position="319">
|
44
|
+
<caret line="11" column="11" selection-start-line="11" selection-start-column="11" selection-end-line="11" selection-end-column="11" />
|
45
|
+
<folding />
|
46
|
+
</state>
|
47
|
+
</provider>
|
48
|
+
</entry>
|
49
|
+
</file>
|
50
|
+
<file leaf-file-name="Gemfile.lock" pinned="false" current-in-tab="false">
|
51
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
52
|
+
<provider selected="true" editor-type-id="text-editor">
|
53
|
+
<state relative-caret-position="3712">
|
54
|
+
<caret line="128" column="8" selection-start-line="128" selection-start-column="4" selection-end-line="128" selection-end-column="8" />
|
55
|
+
<folding />
|
56
|
+
</state>
|
57
|
+
</provider>
|
58
|
+
</entry>
|
59
|
+
</file>
|
60
|
+
<file leaf-file-name="railtie.rb" pinned="false" current-in-tab="false">
|
61
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/railtie.rb">
|
62
|
+
<provider selected="true" editor-type-id="text-editor">
|
63
|
+
<state relative-caret-position="145">
|
64
|
+
<caret line="5" column="82" selection-start-line="5" selection-start-column="82" selection-end-line="5" selection-end-column="82" />
|
65
|
+
<folding />
|
66
|
+
</state>
|
67
|
+
</provider>
|
68
|
+
</entry>
|
69
|
+
</file>
|
70
|
+
<file leaf-file-name="middleware.rb" pinned="false" current-in-tab="false">
|
71
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/middleware.rb">
|
72
|
+
<provider selected="true" editor-type-id="text-editor">
|
73
|
+
<state relative-caret-position="406">
|
74
|
+
<caret line="14" column="41" selection-start-line="14" selection-start-column="41" selection-end-line="14" selection-end-column="41" />
|
75
|
+
<folding />
|
76
|
+
</state>
|
77
|
+
</provider>
|
78
|
+
</entry>
|
79
|
+
</file>
|
80
|
+
<file leaf-file-name="user_agent_checker_spec.rb" pinned="false" current-in-tab="false">
|
81
|
+
<entry file="file://$PROJECT_DIR$/spec/user_agent_checker_spec.rb">
|
82
|
+
<provider selected="true" editor-type-id="text-editor">
|
83
|
+
<state relative-caret-position="1914">
|
84
|
+
<caret line="66" column="94" selection-start-line="66" selection-start-column="94" selection-end-line="66" selection-end-column="94" />
|
85
|
+
<folding />
|
86
|
+
</state>
|
87
|
+
</provider>
|
88
|
+
</entry>
|
89
|
+
</file>
|
90
|
+
<file leaf-file-name="user_agent_checker.rb" pinned="false" current-in-tab="false">
|
91
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/user_agent_checker.rb">
|
92
|
+
<provider selected="true" editor-type-id="text-editor">
|
93
|
+
<state relative-caret-position="1334">
|
94
|
+
<caret line="46" column="24" selection-start-line="46" selection-start-column="24" selection-end-line="46" selection-end-column="24" />
|
95
|
+
<folding />
|
96
|
+
</state>
|
97
|
+
</provider>
|
98
|
+
</entry>
|
99
|
+
</file>
|
100
|
+
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
|
101
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
102
|
+
<provider selected="true" editor-type-id="text-editor">
|
103
|
+
<state relative-caret-position="116">
|
104
|
+
<caret line="4" column="0" selection-start-line="4" selection-start-column="0" selection-end-line="4" selection-end-column="0" />
|
105
|
+
<folding />
|
106
|
+
</state>
|
107
|
+
</provider>
|
108
|
+
</entry>
|
109
|
+
</file>
|
110
|
+
<file leaf-file-name="rails_same_site_cookie_spec.rb" pinned="false" current-in-tab="false">
|
111
|
+
<entry file="file://$PROJECT_DIR$/spec/rails_same_site_cookie_spec.rb">
|
112
|
+
<provider selected="true" editor-type-id="text-editor">
|
113
|
+
<state relative-caret-position="290">
|
114
|
+
<caret line="10" column="7" selection-start-line="0" selection-start-column="0" selection-end-line="13" selection-end-column="0" />
|
115
|
+
<folding />
|
116
|
+
</state>
|
117
|
+
</provider>
|
118
|
+
</entry>
|
119
|
+
</file>
|
120
|
+
<file leaf-file-name="middleware_spec.rb" pinned="false" current-in-tab="false">
|
121
|
+
<entry file="file://$PROJECT_DIR$/spec/middleware_spec.rb">
|
122
|
+
<provider selected="true" editor-type-id="text-editor">
|
123
|
+
<state relative-caret-position="957">
|
124
|
+
<caret line="33" column="33" selection-start-line="33" selection-start-column="33" selection-end-line="33" selection-end-column="33" />
|
125
|
+
<folding />
|
126
|
+
</state>
|
127
|
+
</provider>
|
128
|
+
</entry>
|
129
|
+
</file>
|
130
|
+
</leaf>
|
131
|
+
</component>
|
132
|
+
<component name="Git.Settings">
|
133
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
134
|
+
</component>
|
135
|
+
<component name="IdeDocumentHistory">
|
136
|
+
<option name="CHANGED_PATHS">
|
137
|
+
<list>
|
138
|
+
<option value="$PROJECT_DIR$/../strongr-fastr-test/lib/middleware/secure_cookies.rb" />
|
139
|
+
<option value="$PROJECT_DIR$/lib/rails_same_site_cookie.rb" />
|
140
|
+
<option value="$PROJECT_DIR$/spec/spec_helper.rb" />
|
141
|
+
<option value="$PROJECT_DIR$/spec/mock_rack_app.rb" />
|
142
|
+
<option value="$PROJECT_DIR$/spec/middleware_spec.rb" />
|
143
|
+
<option value="$PROJECT_DIR$/spec/rails_same_site_cookie_spec.rb" />
|
144
|
+
<option value="$PROJECT_DIR$/lib/rails_same_site_cookie/configuration.rb" />
|
145
|
+
<option value="$PROJECT_DIR$/spec/configuration_spec.rb" />
|
146
|
+
<option value="$PROJECT_DIR$/lib/rails_same_site_cookie/middleware.rb" />
|
147
|
+
<option value="$PROJECT_DIR$/spec/user_agent_checker_spec.rb" />
|
148
|
+
<option value="$PROJECT_DIR$/lib/rails_same_site_cookie/railtie.rb" />
|
149
|
+
<option value="$PROJECT_DIR$/lib/rails_same_site_cookie/user_agent_checker.rb" />
|
150
|
+
<option value="$PROJECT_DIR$/rails_same_site_cookie.gemspec" />
|
151
|
+
</list>
|
152
|
+
</option>
|
153
|
+
</component>
|
154
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
155
|
+
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
156
|
+
<component name="JsGulpfileManager">
|
157
|
+
<detection-done>true</detection-done>
|
158
|
+
<sorting>DEFINITION_ORDER</sorting>
|
159
|
+
</component>
|
160
|
+
<component name="ProjectFrameBounds">
|
161
|
+
<option name="x" value="134" />
|
162
|
+
<option name="y" value="35" />
|
163
|
+
<option name="width" value="3706" />
|
164
|
+
<option name="height" value="2125" />
|
165
|
+
</component>
|
166
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
167
|
+
<OptionsSetting value="true" id="Add" />
|
168
|
+
<OptionsSetting value="true" id="Remove" />
|
169
|
+
<OptionsSetting value="true" id="Checkout" />
|
170
|
+
<OptionsSetting value="true" id="Update" />
|
171
|
+
<OptionsSetting value="true" id="Status" />
|
172
|
+
<OptionsSetting value="true" id="Edit" />
|
173
|
+
<ConfirmationsSetting value="0" id="Add" />
|
174
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
175
|
+
</component>
|
176
|
+
<component name="ProjectView">
|
177
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
178
|
+
<flattenPackages />
|
179
|
+
<showMembers />
|
180
|
+
<showModules />
|
181
|
+
<showLibraryContents />
|
182
|
+
<hideEmptyPackages />
|
183
|
+
<abbreviatePackageNames />
|
184
|
+
<autoscrollToSource />
|
185
|
+
<autoscrollFromSource />
|
186
|
+
<sortByType />
|
187
|
+
<manualOrder />
|
188
|
+
<foldersAlwaysOnTop value="true" />
|
189
|
+
</navigator>
|
190
|
+
<panes>
|
191
|
+
<pane id="ProjectPane">
|
192
|
+
<subPane>
|
193
|
+
<PATH>
|
194
|
+
<PATH_ELEMENT>
|
195
|
+
<option name="myItemId" value="rails_same_site_cookie" />
|
196
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
197
|
+
</PATH_ELEMENT>
|
198
|
+
</PATH>
|
199
|
+
<PATH>
|
200
|
+
<PATH_ELEMENT>
|
201
|
+
<option name="myItemId" value="rails_same_site_cookie" />
|
202
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
203
|
+
</PATH_ELEMENT>
|
204
|
+
<PATH_ELEMENT>
|
205
|
+
<option name="myItemId" value="rails_same_site_cookie" />
|
206
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
207
|
+
</PATH_ELEMENT>
|
208
|
+
</PATH>
|
209
|
+
</subPane>
|
210
|
+
</pane>
|
211
|
+
<pane id="Scope" />
|
212
|
+
<pane id="Scratches" />
|
213
|
+
</panes>
|
214
|
+
</component>
|
215
|
+
<component name="PropertiesComponent">
|
216
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
217
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
218
|
+
<property name="js-jscs-nodeInterpreter" value="/usr/bin/node" />
|
219
|
+
</component>
|
220
|
+
<component name="RunManager" selected="RSpec.RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie">
|
221
|
+
<configuration default="false" name="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
222
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
223
|
+
<module name="rails_same_site_cookie" />
|
224
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
225
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
226
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
227
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
228
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
229
|
+
<envs>
|
230
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
231
|
+
</envs>
|
232
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
233
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
234
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
235
|
+
<COVERAGE_PATTERN ENABLED="true">
|
236
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
237
|
+
</COVERAGE_PATTERN>
|
238
|
+
</EXTENSION>
|
239
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
240
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/middleware_spec.rb" />
|
241
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
242
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
243
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex" />
|
244
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
245
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
246
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
247
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
248
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
249
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
250
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
251
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
252
|
+
<method />
|
253
|
+
</configuration>
|
254
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
255
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
256
|
+
<module name="" />
|
257
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
258
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
259
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
260
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
261
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
262
|
+
<envs />
|
263
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
264
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
265
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
266
|
+
<COVERAGE_PATTERN ENABLED="true">
|
267
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
268
|
+
</COVERAGE_PATTERN>
|
269
|
+
</EXTENSION>
|
270
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
271
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
272
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
273
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
274
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
275
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
276
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
277
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
278
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
279
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
280
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
281
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
282
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
283
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
284
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
285
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
286
|
+
<method />
|
287
|
+
</configuration>
|
288
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
289
|
+
<method />
|
290
|
+
</configuration>
|
291
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
292
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
293
|
+
<module name="" />
|
294
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
295
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
296
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
297
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
298
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
299
|
+
<envs />
|
300
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
301
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
302
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
303
|
+
<COVERAGE_PATTERN ENABLED="true">
|
304
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
305
|
+
</COVERAGE_PATTERN>
|
306
|
+
</EXTENSION>
|
307
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
308
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
309
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
310
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
311
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
312
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
313
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
314
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
315
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
316
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
317
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
318
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
319
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
320
|
+
<method />
|
321
|
+
</configuration>
|
322
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
323
|
+
<module name="" />
|
324
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
325
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
326
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
327
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
328
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
329
|
+
<envs />
|
330
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
331
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
332
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
333
|
+
<COVERAGE_PATTERN ENABLED="true">
|
334
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
335
|
+
</COVERAGE_PATTERN>
|
336
|
+
</EXTENSION>
|
337
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
338
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
339
|
+
<method />
|
340
|
+
</configuration>
|
341
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
342
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
343
|
+
<module name="" />
|
344
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
345
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
346
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
347
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
348
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
349
|
+
<envs />
|
350
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
351
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
352
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
353
|
+
<COVERAGE_PATTERN ENABLED="true">
|
354
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
355
|
+
</COVERAGE_PATTERN>
|
356
|
+
</EXTENSION>
|
357
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
358
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
359
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
360
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
361
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
362
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
363
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
364
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
365
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
366
|
+
<method />
|
367
|
+
</configuration>
|
368
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
369
|
+
<node-interpreter>project</node-interpreter>
|
370
|
+
<node-options />
|
371
|
+
<gulpfile />
|
372
|
+
<tasks />
|
373
|
+
<arguments />
|
374
|
+
<envs />
|
375
|
+
<method />
|
376
|
+
</configuration>
|
377
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
378
|
+
<command value="run-script" />
|
379
|
+
<scripts />
|
380
|
+
<node-interpreter value="project" />
|
381
|
+
<envs />
|
382
|
+
<method />
|
383
|
+
</configuration>
|
384
|
+
<list size="1">
|
385
|
+
<item index="0" class="java.lang.String" itemvalue="RSpec.RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" />
|
386
|
+
</list>
|
387
|
+
<recent_temporary>
|
388
|
+
<list size="1">
|
389
|
+
<item index="0" class="java.lang.String" itemvalue="RSpec.RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" />
|
390
|
+
</list>
|
391
|
+
</recent_temporary>
|
392
|
+
</component>
|
393
|
+
<component name="ShelveChangesManager" show_recycled="false">
|
394
|
+
<option name="remove_strategy" value="false" />
|
395
|
+
</component>
|
396
|
+
<component name="TaskManager">
|
397
|
+
<task active="true" id="Default" summary="Default task">
|
398
|
+
<changelist id="1e0e9314-6ae0-4b09-b5fc-2409f43cc399" name="Default" comment="" />
|
399
|
+
<created>1572897528455</created>
|
400
|
+
<option name="number" value="Default" />
|
401
|
+
<option name="presentableId" value="Default" />
|
402
|
+
<updated>1572897528455</updated>
|
403
|
+
<workItem from="1572897529632" duration="1115000" />
|
404
|
+
<workItem from="1572907546555" duration="19742000" />
|
405
|
+
<workItem from="1572988497557" duration="26000" />
|
406
|
+
</task>
|
407
|
+
<servers />
|
408
|
+
</component>
|
409
|
+
<component name="TestHistory">
|
410
|
+
<history-entry file="RailsSameSiteCookie__Middleware_when_configured_with_a_regex_adds_SameSite=None_to_cookies_for_requests_whose_UA_matches_regex__rails_same_site_cookie - 2019.11.04 at 20h 19m 02s.xml">
|
411
|
+
<configuration name="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" configurationId="RSpecRunConfigurationType" />
|
412
|
+
</history-entry>
|
413
|
+
<history-entry file="RailsSameSiteCookie__Middleware_when_configured_with_a_regex_adds_SameSite=None_to_cookies_for_requests_whose_UA_matches_regex__rails_same_site_cookie - 2019.11.04 at 20h 21m 01s.xml">
|
414
|
+
<configuration name="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" configurationId="RSpecRunConfigurationType" />
|
415
|
+
</history-entry>
|
416
|
+
<history-entry file="RailsSameSiteCookie__Middleware_when_configured_with_a_regex_adds_SameSite=None_to_cookies_for_requests_whose_UA_matches_regex__rails_same_site_cookie - 2019.11.04 at 20h 21m 50s.xml">
|
417
|
+
<configuration name="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" configurationId="RSpecRunConfigurationType" />
|
418
|
+
</history-entry>
|
419
|
+
<history-entry file="RailsSameSiteCookie__Middleware_when_configured_with_a_regex_adds_SameSite=None_to_cookies_for_requests_whose_UA_matches_regex__rails_same_site_cookie - 2019.11.04 at 20h 29m 26s.xml">
|
420
|
+
<configuration name="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" configurationId="RSpecRunConfigurationType" />
|
421
|
+
</history-entry>
|
422
|
+
<history-entry file="RailsSameSiteCookie__Middleware_when_configured_with_a_regex_adds_SameSite=None_to_cookies_for_requests_whose_UA_matches_regex__rails_same_site_cookie - 2019.11.04 at 20h 44m 26s.xml">
|
423
|
+
<configuration name="RailsSameSiteCookie::Middleware when configured with a regex adds SameSite=None to cookies for requests whose UA matches regex: rails_same_site_cookie" configurationId="RSpecRunConfigurationType" />
|
424
|
+
</history-entry>
|
425
|
+
</component>
|
426
|
+
<component name="TimeTrackingManager">
|
427
|
+
<option name="totallyTimeSpent" value="20883000" />
|
428
|
+
</component>
|
429
|
+
<component name="ToolWindowManager">
|
430
|
+
<frame x="134" y="35" width="3706" height="2125" extended-state="6" />
|
431
|
+
<editor active="true" />
|
432
|
+
<layout>
|
433
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.2556661" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
434
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
435
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
436
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
437
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
438
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
439
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
440
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
441
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
442
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
443
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
444
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
445
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
446
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
447
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
448
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
449
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.39979067" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
450
|
+
</layout>
|
451
|
+
</component>
|
452
|
+
<component name="Vcs.Log.UiProperties">
|
453
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
454
|
+
<collection />
|
455
|
+
</option>
|
456
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
457
|
+
<collection />
|
458
|
+
</option>
|
459
|
+
</component>
|
460
|
+
<component name="VcsContentAnnotationSettings">
|
461
|
+
<option name="myLimit" value="2678400000" />
|
462
|
+
</component>
|
463
|
+
<component name="XDebuggerManager">
|
464
|
+
<breakpoint-manager>
|
465
|
+
<breakpoints>
|
466
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
467
|
+
<url>file://$PROJECT_DIR$/spec/mock_rack_app.rb</url>
|
468
|
+
<line>15</line>
|
469
|
+
<option name="timeStamp" value="2" />
|
470
|
+
</line-breakpoint>
|
471
|
+
</breakpoints>
|
472
|
+
<option name="time" value="3" />
|
473
|
+
</breakpoint-manager>
|
474
|
+
<watches-manager />
|
475
|
+
</component>
|
476
|
+
<component name="editorHistoryManager">
|
477
|
+
<entry file="file://$PROJECT_DIR$/rails_same_site_cookie.gemspec">
|
478
|
+
<provider selected="true" editor-type-id="text-editor">
|
479
|
+
<state relative-caret-position="0">
|
480
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
481
|
+
<folding />
|
482
|
+
</state>
|
483
|
+
</provider>
|
484
|
+
</entry>
|
485
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie.rb">
|
486
|
+
<provider selected="true" editor-type-id="text-editor">
|
487
|
+
<state relative-caret-position="319">
|
488
|
+
<caret line="11" column="11" selection-start-line="11" selection-start-column="11" selection-end-line="11" selection-end-column="11" />
|
489
|
+
<folding />
|
490
|
+
</state>
|
491
|
+
</provider>
|
492
|
+
</entry>
|
493
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
494
|
+
<provider selected="true" editor-type-id="text-editor">
|
495
|
+
<state relative-caret-position="3712">
|
496
|
+
<caret line="128" column="8" selection-start-line="128" selection-start-column="4" selection-end-line="128" selection-end-column="8" />
|
497
|
+
<folding />
|
498
|
+
</state>
|
499
|
+
</provider>
|
500
|
+
</entry>
|
501
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/railtie.rb">
|
502
|
+
<provider selected="true" editor-type-id="text-editor">
|
503
|
+
<state relative-caret-position="145">
|
504
|
+
<caret line="5" column="82" selection-start-line="5" selection-start-column="82" selection-end-line="5" selection-end-column="82" />
|
505
|
+
<folding />
|
506
|
+
</state>
|
507
|
+
</provider>
|
508
|
+
</entry>
|
509
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/middleware.rb">
|
510
|
+
<provider selected="true" editor-type-id="text-editor">
|
511
|
+
<state relative-caret-position="406">
|
512
|
+
<caret line="14" column="41" selection-start-line="14" selection-start-column="41" selection-end-line="14" selection-end-column="41" />
|
513
|
+
<folding />
|
514
|
+
</state>
|
515
|
+
</provider>
|
516
|
+
</entry>
|
517
|
+
<entry file="file://$PROJECT_DIR$/spec/user_agent_checker_spec.rb">
|
518
|
+
<provider selected="true" editor-type-id="text-editor">
|
519
|
+
<state relative-caret-position="1914">
|
520
|
+
<caret line="66" column="94" selection-start-line="66" selection-start-column="94" selection-end-line="66" selection-end-column="94" />
|
521
|
+
<folding />
|
522
|
+
</state>
|
523
|
+
</provider>
|
524
|
+
</entry>
|
525
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/user_agent_checker.rb">
|
526
|
+
<provider selected="true" editor-type-id="text-editor">
|
527
|
+
<state relative-caret-position="1334">
|
528
|
+
<caret line="46" column="24" selection-start-line="46" selection-start-column="24" selection-end-line="46" selection-end-column="24" />
|
529
|
+
<folding />
|
530
|
+
</state>
|
531
|
+
</provider>
|
532
|
+
</entry>
|
533
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
534
|
+
<provider selected="true" editor-type-id="text-editor">
|
535
|
+
<state relative-caret-position="116">
|
536
|
+
<caret line="4" column="0" selection-start-line="4" selection-start-column="0" selection-end-line="4" selection-end-column="0" />
|
537
|
+
<folding />
|
538
|
+
</state>
|
539
|
+
</provider>
|
540
|
+
</entry>
|
541
|
+
<entry file="file://$PROJECT_DIR$/spec/rails_same_site_cookie_spec.rb">
|
542
|
+
<provider selected="true" editor-type-id="text-editor">
|
543
|
+
<state relative-caret-position="290">
|
544
|
+
<caret line="10" column="7" selection-start-line="0" selection-start-column="0" selection-end-line="13" selection-end-column="0" />
|
545
|
+
<folding />
|
546
|
+
</state>
|
547
|
+
</provider>
|
548
|
+
</entry>
|
549
|
+
<entry file="file://$PROJECT_DIR$/spec/middleware_spec.rb">
|
550
|
+
<provider selected="true" editor-type-id="text-editor">
|
551
|
+
<state relative-caret-position="957">
|
552
|
+
<caret line="33" column="33" selection-start-line="33" selection-start-column="33" selection-end-line="33" selection-end-column="33" />
|
553
|
+
<folding />
|
554
|
+
</state>
|
555
|
+
</provider>
|
556
|
+
</entry>
|
557
|
+
<entry file="file://$PROJECT_DIR$/rails_same_site_cookie.gemspec">
|
558
|
+
<provider selected="true" editor-type-id="text-editor">
|
559
|
+
<state relative-caret-position="0">
|
560
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
561
|
+
<folding />
|
562
|
+
</state>
|
563
|
+
</provider>
|
564
|
+
</entry>
|
565
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie.rb">
|
566
|
+
<provider selected="true" editor-type-id="text-editor">
|
567
|
+
<state relative-caret-position="116">
|
568
|
+
<caret line="4" column="26" selection-start-line="4" selection-start-column="26" selection-end-line="4" selection-end-column="26" />
|
569
|
+
<folding />
|
570
|
+
</state>
|
571
|
+
</provider>
|
572
|
+
</entry>
|
573
|
+
<entry file="file://$PROJECT_DIR$/spec/rails_same_site_cookie_spec.rb">
|
574
|
+
<provider selected="true" editor-type-id="text-editor">
|
575
|
+
<state relative-caret-position="0">
|
576
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
577
|
+
<folding />
|
578
|
+
</state>
|
579
|
+
</provider>
|
580
|
+
</entry>
|
581
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/version.rb">
|
582
|
+
<provider selected="true" editor-type-id="text-editor">
|
583
|
+
<state relative-caret-position="0">
|
584
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
585
|
+
</state>
|
586
|
+
</provider>
|
587
|
+
</entry>
|
588
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/version.rb">
|
589
|
+
<provider selected="true" editor-type-id="text-editor">
|
590
|
+
<state relative-caret-position="0">
|
591
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
592
|
+
</state>
|
593
|
+
</provider>
|
594
|
+
</entry>
|
595
|
+
<entry file="file://$PROJECT_DIR$/../strongr-fastr-test/lib/middleware/secure_cookies.rb" />
|
596
|
+
<entry file="file://$PROJECT_DIR$/bin/setup">
|
597
|
+
<provider selected="true" editor-type-id="text-editor">
|
598
|
+
<state relative-caret-position="0">
|
599
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
600
|
+
</state>
|
601
|
+
</provider>
|
602
|
+
</entry>
|
603
|
+
<entry file="file://$PROJECT_DIR$/.rspec">
|
604
|
+
<provider selected="true" editor-type-id="text-editor">
|
605
|
+
<state relative-caret-position="0">
|
606
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
607
|
+
</state>
|
608
|
+
</provider>
|
609
|
+
</entry>
|
610
|
+
<entry file="file://$USER_HOME$/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/rack-2.0.7/lib/rack/request.rb">
|
611
|
+
<provider selected="true" editor-type-id="text-editor">
|
612
|
+
<state relative-caret-position="348">
|
613
|
+
<caret line="12" column="8" selection-start-line="12" selection-start-column="8" selection-end-line="12" selection-end-column="8" />
|
614
|
+
</state>
|
615
|
+
</provider>
|
616
|
+
</entry>
|
617
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
618
|
+
<provider selected="true" editor-type-id="text-editor">
|
619
|
+
<state relative-caret-position="58">
|
620
|
+
<caret line="2" column="23" selection-start-line="2" selection-start-column="23" selection-end-line="2" selection-end-column="23" />
|
621
|
+
</state>
|
622
|
+
</provider>
|
623
|
+
</entry>
|
624
|
+
<entry file="file://$PROJECT_DIR$/spec/mock_rack_app.rb">
|
625
|
+
<provider selected="true" editor-type-id="text-editor">
|
626
|
+
<state relative-caret-position="435">
|
627
|
+
<caret line="15" column="0" selection-start-line="15" selection-start-column="0" selection-end-line="15" selection-end-column="0" />
|
628
|
+
<folding />
|
629
|
+
</state>
|
630
|
+
</provider>
|
631
|
+
</entry>
|
632
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/configuration.rb">
|
633
|
+
<provider selected="true" editor-type-id="text-editor">
|
634
|
+
<state relative-caret-position="145">
|
635
|
+
<caret line="5" column="29" selection-start-line="5" selection-start-column="29" selection-end-line="5" selection-end-column="29" />
|
636
|
+
</state>
|
637
|
+
</provider>
|
638
|
+
</entry>
|
639
|
+
<entry file="file://$PROJECT_DIR$/spec/configuration_spec.rb">
|
640
|
+
<provider selected="true" editor-type-id="text-editor">
|
641
|
+
<state relative-caret-position="116">
|
642
|
+
<caret line="4" column="51" selection-start-line="4" selection-start-column="51" selection-end-line="4" selection-end-column="51" />
|
643
|
+
</state>
|
644
|
+
</provider>
|
645
|
+
</entry>
|
646
|
+
<entry file="file://$PROJECT_DIR$/spec/rails_same_site_cookie_spec.rb">
|
647
|
+
<provider selected="true" editor-type-id="text-editor">
|
648
|
+
<state relative-caret-position="290">
|
649
|
+
<caret line="10" column="7" selection-start-line="0" selection-start-column="0" selection-end-line="13" selection-end-column="0" />
|
650
|
+
<folding />
|
651
|
+
</state>
|
652
|
+
</provider>
|
653
|
+
</entry>
|
654
|
+
<entry file="file://$PROJECT_DIR$/spec/user_agent_checker_spec.rb">
|
655
|
+
<provider selected="true" editor-type-id="text-editor">
|
656
|
+
<state relative-caret-position="1914">
|
657
|
+
<caret line="66" column="94" selection-start-line="66" selection-start-column="94" selection-end-line="66" selection-end-column="94" />
|
658
|
+
<folding />
|
659
|
+
</state>
|
660
|
+
</provider>
|
661
|
+
</entry>
|
662
|
+
<entry file="file://$PROJECT_DIR$/spec/middleware_spec.rb">
|
663
|
+
<provider selected="true" editor-type-id="text-editor">
|
664
|
+
<state relative-caret-position="957">
|
665
|
+
<caret line="33" column="33" selection-start-line="33" selection-start-column="33" selection-end-line="33" selection-end-column="33" />
|
666
|
+
<folding />
|
667
|
+
</state>
|
668
|
+
</provider>
|
669
|
+
</entry>
|
670
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
671
|
+
<provider selected="true" editor-type-id="text-editor">
|
672
|
+
<state relative-caret-position="116">
|
673
|
+
<caret line="4" column="0" selection-start-line="4" selection-start-column="0" selection-end-line="4" selection-end-column="0" />
|
674
|
+
<folding />
|
675
|
+
</state>
|
676
|
+
</provider>
|
677
|
+
</entry>
|
678
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
679
|
+
<provider selected="true" editor-type-id="text-editor">
|
680
|
+
<state relative-caret-position="3712">
|
681
|
+
<caret line="128" column="8" selection-start-line="128" selection-start-column="4" selection-end-line="128" selection-end-column="8" />
|
682
|
+
<folding />
|
683
|
+
</state>
|
684
|
+
</provider>
|
685
|
+
</entry>
|
686
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/railtie.rb">
|
687
|
+
<provider selected="true" editor-type-id="text-editor">
|
688
|
+
<state relative-caret-position="145">
|
689
|
+
<caret line="5" column="82" selection-start-line="5" selection-start-column="82" selection-end-line="5" selection-end-column="82" />
|
690
|
+
<folding />
|
691
|
+
</state>
|
692
|
+
</provider>
|
693
|
+
</entry>
|
694
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/user_agent_checker.rb">
|
695
|
+
<provider selected="true" editor-type-id="text-editor">
|
696
|
+
<state relative-caret-position="1334">
|
697
|
+
<caret line="46" column="24" selection-start-line="46" selection-start-column="24" selection-end-line="46" selection-end-column="24" />
|
698
|
+
<folding />
|
699
|
+
</state>
|
700
|
+
</provider>
|
701
|
+
</entry>
|
702
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie/middleware.rb">
|
703
|
+
<provider selected="true" editor-type-id="text-editor">
|
704
|
+
<state relative-caret-position="406">
|
705
|
+
<caret line="14" column="41" selection-start-line="14" selection-start-column="41" selection-end-line="14" selection-end-column="41" />
|
706
|
+
<folding />
|
707
|
+
</state>
|
708
|
+
</provider>
|
709
|
+
</entry>
|
710
|
+
<entry file="file://$PROJECT_DIR$/lib/rails_same_site_cookie.rb">
|
711
|
+
<provider selected="true" editor-type-id="text-editor">
|
712
|
+
<state relative-caret-position="319">
|
713
|
+
<caret line="11" column="11" selection-start-line="11" selection-start-column="11" selection-end-line="11" selection-end-column="11" />
|
714
|
+
<folding />
|
715
|
+
</state>
|
716
|
+
</provider>
|
717
|
+
</entry>
|
718
|
+
<entry file="file://$PROJECT_DIR$/rails_same_site_cookie.gemspec">
|
719
|
+
<provider selected="true" editor-type-id="text-editor">
|
720
|
+
<state relative-caret-position="348">
|
721
|
+
<caret line="12" column="28" selection-start-line="12" selection-start-column="28" selection-end-line="12" selection-end-column="28" />
|
722
|
+
<folding />
|
723
|
+
</state>
|
724
|
+
</provider>
|
725
|
+
</entry>
|
726
|
+
</component>
|
727
|
+
</project>
|