p3p 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in p3p.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Tom Milewski
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # P3p
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'p3p'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install p3p
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ require "p3p/middleware"
2
+ require "p3p/version"
3
+ require "p3p/railtie" if defined?(Rails)
@@ -0,0 +1,13 @@
1
+ module P3P
2
+ class Middleware
3
+ def initialize app
4
+ @app = app
5
+ end
6
+
7
+ def call env
8
+ res = @app.call(env)
9
+ res[1]["P3P"] = 'CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"'
10
+ res
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,7 @@
1
+ module P3P
2
+ class Railtie < Rails::Railtie
3
+ initializer "p3p.middleware" do |app|
4
+ app.middleware.use Middleware
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module P3P
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'p3p/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "p3p"
8
+ gem.version = P3P::VERSION
9
+ gem.authors = ["Tom Milewski"]
10
+ gem.email = ["tmilewski@gmail.com"]
11
+ gem.description = %q{Inserts P3P header}
12
+ gem.summary = %q{Inserts P3P headers to allow cookies to be utilized in iframe scenarios with IE.}
13
+ gem.homepage = "https://github.com/tmilewski/p3p"
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.add_dependency "rack"
21
+ gem.add_development_dependency "rspec"
22
+ end
@@ -0,0 +1,23 @@
1
+ require "spec_helper"
2
+
3
+ shared_examples "it returns P3P headers" do |http_verb|
4
+ it "should return P3P headers in a the case of a #{http_verb} request" do
5
+ headers = { 'Content-Type' => 'text/html' }
6
+ app = lambda { |env| [200, headers, []] }
7
+ request = Rack::MockRequest.env_for('/', lint: true, fatal: true, method: http_verb)
8
+ response = P3P::Middleware.new(app).call(request)
9
+
10
+ expect(response[1]).to include("P3P"=> 'CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"')
11
+ end
12
+ end
13
+
14
+ describe P3P::Middleware do
15
+ it_should_behave_like "it returns P3P headers", "GET"
16
+ it_should_behave_like "it returns P3P headers", "POST"
17
+ it_should_behave_like "it returns P3P headers", "PUT"
18
+ it_should_behave_like "it returns P3P headers", "DELETE"
19
+ it_should_behave_like "it returns P3P headers", "HEAD"
20
+ it_should_behave_like "it returns P3P headers", "OPTIONS"
21
+ it_should_behave_like "it returns P3P headers", "TRACE"
22
+ it_should_behave_like "it returns P3P headers", "CONNECT"
23
+ end
@@ -0,0 +1,7 @@
1
+ require "rack"
2
+ require "p3p"
3
+
4
+ RSpec.configure do |config|
5
+ config.color_enabled = true
6
+ config.formatter = :documentation
7
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: p3p
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Tom Milewski
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-21 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rack
16
+ requirement: &70157398294920 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70157398294920
25
+ - !ruby/object:Gem::Dependency
26
+ name: rspec
27
+ requirement: &70157398294200 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *70157398294200
36
+ description: Inserts P3P header
37
+ email:
38
+ - tmilewski@gmail.com
39
+ executables: []
40
+ extensions: []
41
+ extra_rdoc_files: []
42
+ files:
43
+ - .gitignore
44
+ - Gemfile
45
+ - LICENSE.txt
46
+ - README.md
47
+ - Rakefile
48
+ - lib/p3p.rb
49
+ - lib/p3p/middleware.rb
50
+ - lib/p3p/railtie.rb
51
+ - lib/p3p/version.rb
52
+ - p3p.gemspec
53
+ - spec/middleware_spec.rb
54
+ - spec/spec_helper.rb
55
+ homepage: https://github.com/tmilewski/p3p
56
+ licenses: []
57
+ post_install_message:
58
+ rdoc_options: []
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ! '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubyforge_project:
75
+ rubygems_version: 1.8.17
76
+ signing_key:
77
+ specification_version: 3
78
+ summary: Inserts P3P headers to allow cookies to be utilized in iframe scenarios with
79
+ IE.
80
+ test_files:
81
+ - spec/middleware_spec.rb
82
+ - spec/spec_helper.rb