warden-always-authenticate 0.0.1

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.
@@ -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
@@ -0,0 +1,10 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 1.9.2
5
+ - jruby-18mode
6
+ - jruby-19mode
7
+ - rbx-18mode
8
+ - ruby-head
9
+ - 1.8.7
10
+ - ree
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in warden-redirect.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 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.
@@ -0,0 +1,32 @@
1
+ [![Build Status](https://secure.travis-ci.org/JonRowe/warden-always-authenticate.png)](http://travis-ci.org/JonRowe/warden-always-authenticate)
2
+ # Warden::AlwaysAuthenticate
3
+
4
+ Simple gem / Rack middleware for forcing Warden to authenticate calls.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ gem 'warden-always-authenticate'
11
+
12
+ And then execute:
13
+
14
+ $ bundle
15
+
16
+ Or install it yourself as:
17
+
18
+ $ gem install warden-always-authenticate
19
+
20
+ ## Usage
21
+
22
+ In your preferred Rack configuration location:
23
+
24
+ use Warden::AlwaysAuthenticate
25
+
26
+ ## Contributing
27
+
28
+ 1. Fork it
29
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
30
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
31
+ 4. Push to the branch (`git push origin my-new-feature`)
32
+ 5. Create new Pull Request
@@ -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 'warden/always_authenticate'
@@ -0,0 +1,13 @@
1
+ module Warden
2
+ class AlwaysAuthenticate
3
+ def initialize app
4
+ @app = app
5
+ end
6
+
7
+ def call env
8
+ env['warden'].authenticate!
9
+ @app.call env
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,5 @@
1
+ module Warden
2
+ class AlwaysAuthenticate
3
+ VERSION = '0.0.1'
4
+ end
5
+ end
@@ -0,0 +1,44 @@
1
+ require 'warden-always-authenticate'
2
+
3
+ describe 'forcing authentication via warden' do
4
+
5
+ let(:app) { double 'rack stack', call: result }
6
+ let(:env) { { 'warden' => warden } }
7
+ let(:result) { double 'result' }
8
+ let(:warden) { double 'warden', authenticate!: true }
9
+
10
+ subject { Warden::AlwaysAuthenticate.new(app).call env }
11
+
12
+ context 'when succesful' do
13
+
14
+ it 'forces warden to authenticate' do
15
+ warden.should_receive(:authenticate!)
16
+ subject
17
+ end
18
+ it 'calls down the stack' do
19
+ app.should_receive(:call).with(env)
20
+ subject
21
+ end
22
+ it 'returns the result of the stack call' do
23
+ subject.should == result
24
+ end
25
+ end
26
+
27
+ context 'during failure' do
28
+ before do
29
+ warden.stub(:authenticate!).and_throw(:warden)
30
+ end
31
+
32
+ it 'forces warden to authenticate' do
33
+ warden.should_receive(:authenticate!)
34
+ catch(:warden) { subject }
35
+ end
36
+ it 'lets the throw bubble up to warden' do
37
+ catch(:warden) do
38
+ subject
39
+ fail 'no warden thrown'
40
+ end
41
+ end
42
+ end
43
+
44
+ end
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'warden/always_authenticate/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "warden-always-authenticate"
8
+ gem.version = Warden::AlwaysAuthenticate::VERSION
9
+ gem.authors = ["Jon Rowe"]
10
+ gem.email = ["hello@jonrowe.co.uk"]
11
+ gem.description = %q{Simple gem for forcing warden to redirect.}
12
+ gem.summary = %q{Simple gem for forcing warden to redirect.}
13
+ gem.homepage = "https://github.com/JonRowe/warden-always-authenticate.git"
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{^(spec)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.add_runtime_dependency 'warden'
21
+
22
+ gem.add_development_dependency 'rspec'
23
+ gem.add_development_dependency 'rake'
24
+
25
+ end
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: warden-always-authenticate
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-25 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: warden
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: rspec
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: rake
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: Simple gem for forcing warden to redirect.
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/warden-always-authenticate.rb
76
+ - lib/warden/always_authenticate.rb
77
+ - lib/warden/always_authenticate/version.rb
78
+ - spec/unit/warden/always_redirect_spec.rb
79
+ - warden-always-authenticate.gemspec
80
+ homepage: https://github.com/JonRowe/warden-always-authenticate.git
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: -1705047002881129228
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: -1705047002881129228
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 1.8.24
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: Simple gem for forcing warden to redirect.
110
+ test_files:
111
+ - spec/unit/warden/always_redirect_spec.rb