enforce_same_origin 0.0.3 → 0.0.4
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 +4 -4
- data/CHANGELOG.md +46 -0
- data/README.md +1 -1
- data/enforce_same_origin.gemspec +1 -1
- data/lib/enforce_same_origin/version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 295c86c5c2b0ab76c0ead5b70bf5307730c4166e2fef2b1b3bebdd4b756f6915
|
|
4
|
+
data.tar.gz: 866109e3eb12ec334dd8e119e12d618a77f92b6225238123ba0c53429d38fa9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1f93e635a9342c589311d87fa306a2127bc8c187a036739a77fdea4c2fb585cd073831bf42208f27879281ac289f052d09d2d61ee4ab70c9f87f81cb3ea054f
|
|
7
|
+
data.tar.gz: 22a2d5e48eceaaa6b2cd4dee6558f5f8607975606619dbea2c79d99f6f5448b10ab5759ceb1a72229542dcd17fd45fbe780eb4eb9ca9536d0f34a80731793ee0
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.0.4] - 2025-09-30
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Updated repository references from BeenVerifiedInc to PatrickTulskie (canonical fork)
|
|
12
|
+
- Updated homepage URL in gemspec
|
|
13
|
+
- Updated contributing fork URL in README
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- CHANGELOG.md to document release history
|
|
17
|
+
|
|
18
|
+
## [0.0.3] - 2020-05-21
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Updated development dependencies (rake >= 12.3.3, rspec >= 3.0)
|
|
22
|
+
- Removed byebug dependency from spec helper
|
|
23
|
+
- Updated README documentation
|
|
24
|
+
|
|
25
|
+
## [0.0.2] - 2015-05-27
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- Don't set the X-Frame-Options header if it's already set, preventing duplicate headers
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- Improved gemspec configuration
|
|
32
|
+
- Updated README formatting
|
|
33
|
+
|
|
34
|
+
## [0.0.1] - 2015-05-27
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
- Initial release
|
|
38
|
+
- Rack middleware to automatically set X-Frame-Options header to SAMEORIGIN
|
|
39
|
+
- Basic test suite with RSpec
|
|
40
|
+
- MIT License
|
|
41
|
+
- README documentation
|
|
42
|
+
|
|
43
|
+
[0.0.4]: https://github.com/PatrickTulskie/enforce_same_origin/compare/v0.0.3...v0.0.4
|
|
44
|
+
[0.0.3]: https://github.com/PatrickTulskie/enforce_same_origin/compare/v0.0.2...v0.0.3
|
|
45
|
+
[0.0.2]: https://github.com/PatrickTulskie/enforce_same_origin/compare/v0.0.1...v0.0.2
|
|
46
|
+
[0.0.1]: https://github.com/PatrickTulskie/enforce_same_origin/releases/tag/v0.0.1
|
data/README.md
CHANGED
|
@@ -24,7 +24,7 @@ In your `config.ru` add the following:
|
|
|
24
24
|
|
|
25
25
|
## Contributing
|
|
26
26
|
|
|
27
|
-
1. Fork it ( [http://github.com/
|
|
27
|
+
1. Fork it ( [http://github.com/PatrickTulskie/enforce_same_origin/fork](http://github.com/PatrickTulskie/enforce_same_origin/fork) )
|
|
28
28
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
29
29
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
30
30
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/enforce_same_origin.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["patricktulskie@gmail.com"]
|
|
11
11
|
spec.summary = %q{Globally set X-Frame-Options to SAMEORIGIN.}
|
|
12
12
|
spec.description = %q{Rack middleware that globally sets your Rack compatible app to always have X-Frame-Options set to SAMEORIGIN.}
|
|
13
|
-
spec.homepage = "https://github.com/
|
|
13
|
+
spec.homepage = "https://github.com/PatrickTulskie/enforce_same_origin"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: enforce_same_origin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrick Tulskie
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rack
|
|
@@ -61,6 +61,7 @@ extensions: []
|
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
63
|
- ".gitignore"
|
|
64
|
+
- CHANGELOG.md
|
|
64
65
|
- Gemfile
|
|
65
66
|
- LICENSE.txt
|
|
66
67
|
- README.md
|
|
@@ -71,11 +72,11 @@ files:
|
|
|
71
72
|
- lib/enforce_same_origin/version.rb
|
|
72
73
|
- spec/rack/enforce_same_origin_spec.rb
|
|
73
74
|
- spec/spec_helper.rb
|
|
74
|
-
homepage: https://github.com/
|
|
75
|
+
homepage: https://github.com/PatrickTulskie/enforce_same_origin
|
|
75
76
|
licenses:
|
|
76
77
|
- MIT
|
|
77
78
|
metadata: {}
|
|
78
|
-
post_install_message:
|
|
79
|
+
post_install_message:
|
|
79
80
|
rdoc_options: []
|
|
80
81
|
require_paths:
|
|
81
82
|
- lib
|
|
@@ -90,8 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
90
91
|
- !ruby/object:Gem::Version
|
|
91
92
|
version: '0'
|
|
92
93
|
requirements: []
|
|
93
|
-
rubygems_version: 3.
|
|
94
|
-
signing_key:
|
|
94
|
+
rubygems_version: 3.5.11
|
|
95
|
+
signing_key:
|
|
95
96
|
specification_version: 4
|
|
96
97
|
summary: Globally set X-Frame-Options to SAMEORIGIN.
|
|
97
98
|
test_files:
|