rack-nullsession 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -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/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 1.9.2
5
+ - jruby-18mode
6
+ - jruby-19mode
7
+ - rbx-18mode
8
+ - rbx-19mode
9
+ - ruby-head
10
+ - 1.8.7
11
+ - ree
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rack-nullsession.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Jon Rowe
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.
data/README.md ADDED
@@ -0,0 +1,44 @@
1
+ [![Build Status](https://secure.travis-ci.org/JonRowe/rack-nullsession.png)](http://travis-ci.org/JonRowe/rack-nullsession)
2
+ # Rack::Nullsession
3
+
4
+ What's that? You're writing an API but some pesky Rack Middleware wants
5
+ a session? (Looking at you Warden...) Very well... NullSession to the
6
+ rescue!
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ gem 'rack-nullsession'
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install rack-nullsession
21
+
22
+ ## Usage
23
+
24
+ Mosey on over to your Rack configuration and...
25
+
26
+ `require 'rack-nullsession'`
27
+
28
+ or
29
+
30
+ `require 'rack/null_session'`
31
+
32
+ The choice... is yours! Then in your framework, app or rackup file....
33
+
34
+ `use Rack::NullSession`
35
+
36
+ Enjoy!
37
+
38
+ ## Contributing
39
+
40
+ 1. Fork it
41
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
42
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
43
+ 4. Push to the branch (`git push origin my-new-feature`)
44
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec'
5
+ require 'rspec/core/rake_task'
6
+
7
+ desc "Run specs"
8
+ RSpec::Core::RakeTask.new :spec do |task|
9
+ task.pattern = 'spec/unit/**/*_spec.rb'
10
+ end
11
+
12
+ task :default => [:spec]
@@ -0,0 +1 @@
1
+ require "rack/null_session"
@@ -0,0 +1,23 @@
1
+ require 'rack/null_session/version'
2
+ module Rack
3
+ class NullSession
4
+
5
+ class DumbHash < Hash
6
+ def []= key,value
7
+ super key.to_s, value
8
+ end
9
+ def [] key
10
+ super key.to_s
11
+ end
12
+ end
13
+
14
+ def initialize app
15
+ @app = app
16
+ end
17
+
18
+ def call env
19
+ @app.call ({ "rack.session" => DumbHash.new }).merge env
20
+ end
21
+
22
+ end
23
+ end
@@ -0,0 +1,5 @@
1
+ module Rack
2
+ class NullSession
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rack/null_session/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "rack-nullsession"
8
+ gem.version = Rack::NullSession::VERSION
9
+ gem.authors = ["Jon Rowe"]
10
+ gem.email = ["hello@jonrowe.co.uk"]
11
+ gem.description = %q{A Rack Middleware that fakes a session}
12
+ gem.summary = %q{A Rack Middleware that fakes a session}
13
+ gem.homepage = "https://github.com/JonRowe/rack-nullsession"
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = []
17
+ gem.test_files = gem.files.grep(%r{^(spec)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.add_runtime_dependency "rack"
21
+
22
+ gem.add_development_dependency "rake"
23
+ gem.add_development_dependency "rspec"
24
+ end
@@ -0,0 +1,36 @@
1
+ require 'rack-nullsession'
2
+
3
+ describe 'inserting a null rack session into the middleware stack' do
4
+
5
+ let(:result) { double "some application response" }
6
+ let(:app) { double "app", :call => result }
7
+ let(:env) { { "some" => "environment params", "other" => "etc" } }
8
+
9
+ let(:middleware) { Rack::NullSession.new app }
10
+
11
+ subject { middleware.call env }
12
+
13
+ it "calls the application with rack.session value of Hash" do
14
+ app.should_receive(:call).with hash_including("rack.session" => {})
15
+ subject
16
+ end
17
+ it "calls the application preserving the original env" do
18
+ app.should_receive(:call).with hash_including(env)
19
+ subject
20
+ end
21
+ it "preserves the application response" do
22
+ subject.should == result
23
+ end
24
+
25
+ context "but rack.session already exists" do
26
+ let(:existing_session) { double }
27
+
28
+ before { env["rack.session"] = existing_session }
29
+
30
+ it 'leaves the existing session alone' do
31
+ app.should_receive(:call).with hash_including("rack.session" => existing_session)
32
+ subject
33
+ end
34
+ end
35
+
36
+ end
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rack-nullsession
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jon Rowe
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-23 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rack
16
+ requirement: !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: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: A Rack Middleware that fakes a session
63
+ email:
64
+ - hello@jonrowe.co.uk
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - .travis.yml
71
+ - Gemfile
72
+ - LICENSE.txt
73
+ - README.md
74
+ - Rakefile
75
+ - lib/rack-nullsession.rb
76
+ - lib/rack/null_session.rb
77
+ - lib/rack/null_session/version.rb
78
+ - rack-nullsession.gemspec
79
+ - spec/unit/rack/null_session_spec.rb
80
+ homepage: https://github.com/JonRowe/rack-nullsession
81
+ licenses: []
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ segments:
93
+ - 0
94
+ hash: 4009310413037506187
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ! '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ segments:
102
+ - 0
103
+ hash: 4009310413037506187
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 1.8.24
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: A Rack Middleware that fakes a session
110
+ test_files:
111
+ - spec/unit/rack/null_session_spec.rb