sinatra_warden 0.2.0.1 → 0.2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/sinatra_warden/sinatra.rb +1 -1
- data/sinatra_warden.gemspec +2 -3
- metadata +30 -29
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.0.
|
1
|
+
0.2.0.2
|
@@ -43,7 +43,7 @@ module Sinatra
|
|
43
43
|
app.set :sessions, true
|
44
44
|
|
45
45
|
app.set :auth_failure_path, '/'
|
46
|
-
app.set :auth_success_path,
|
46
|
+
app.set :auth_success_path, '/'
|
47
47
|
|
48
48
|
app.set :auth_error_message, "Could not log you in."
|
49
49
|
app.set :auth_success_message, "You have logged in successfully."
|
data/sinatra_warden.gemspec
CHANGED
@@ -5,14 +5,13 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{sinatra_warden}
|
8
|
-
s.version = "0.2.0.
|
8
|
+
s.version = "0.2.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Justin Smestad", "Daniel Neighman"]
|
12
12
|
s.date = %q{2010-03-02}
|
13
13
|
s.description = %q{basic helpers and authentication methods for using warden with sinatra also providing some hooks into Rack::Flash}
|
14
14
|
s.email = %q{justin.smestad@gmail.com}
|
15
|
-
s.executables = ["autospec", "css2sass", "edit_json.rb", "haml", "html2haml", "jeweler", "prettify_json.rb", "rackup", "rake", "rcov", "rubyforge", "sass", "spec", "yard-graph", "yardoc", "yri"]
|
16
15
|
s.extra_rdoc_files = [
|
17
16
|
"LICENSE",
|
18
17
|
"README.rdoc"
|
@@ -39,7 +38,7 @@ Gem::Specification.new do |s|
|
|
39
38
|
s.homepage = %q{http://github.com/jsmestad/sinatra_warden}
|
40
39
|
s.rdoc_options = ["--charset=UTF-8"]
|
41
40
|
s.require_paths = ["lib"]
|
42
|
-
s.rubygems_version = %q{1.3.
|
41
|
+
s.rubygems_version = %q{1.3.6}
|
43
42
|
s.summary = %q{authentication system for using warden with sinatra}
|
44
43
|
s.test_files = [
|
45
44
|
"spec/fixtures/basic_strategy.rb",
|
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra_warden
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 2
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 0.2.0.2
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Justin Smestad
|
@@ -15,43 +21,36 @@ default_executable:
|
|
15
21
|
dependencies:
|
16
22
|
- !ruby/object:Gem::Dependency
|
17
23
|
name: sinatra
|
18
|
-
|
19
|
-
|
20
|
-
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
21
26
|
requirements:
|
22
27
|
- - ">="
|
23
28
|
- !ruby/object:Gem::Version
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
- 9
|
32
|
+
- 4
|
24
33
|
version: 0.9.4
|
25
|
-
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
26
36
|
- !ruby/object:Gem::Dependency
|
27
37
|
name: warden
|
28
|
-
|
29
|
-
|
30
|
-
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
31
40
|
requirements:
|
32
41
|
- - ">="
|
33
42
|
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 0
|
45
|
+
- 5
|
46
|
+
- 0
|
34
47
|
version: 0.5.0
|
35
|
-
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id002
|
36
50
|
description: basic helpers and authentication methods for using warden with sinatra also providing some hooks into Rack::Flash
|
37
51
|
email: justin.smestad@gmail.com
|
38
|
-
executables:
|
39
|
-
|
40
|
-
- css2sass
|
41
|
-
- edit_json.rb
|
42
|
-
- haml
|
43
|
-
- html2haml
|
44
|
-
- jeweler
|
45
|
-
- prettify_json.rb
|
46
|
-
- rackup
|
47
|
-
- rake
|
48
|
-
- rcov
|
49
|
-
- rubyforge
|
50
|
-
- sass
|
51
|
-
- spec
|
52
|
-
- yard-graph
|
53
|
-
- yardoc
|
54
|
-
- yri
|
52
|
+
executables: []
|
53
|
+
|
55
54
|
extensions: []
|
56
55
|
|
57
56
|
extra_rdoc_files:
|
@@ -88,18 +87,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
88
87
|
requirements:
|
89
88
|
- - ">="
|
90
89
|
- !ruby/object:Gem::Version
|
90
|
+
segments:
|
91
|
+
- 0
|
91
92
|
version: "0"
|
92
|
-
version:
|
93
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
95
|
- - ">="
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
+
segments:
|
98
|
+
- 0
|
97
99
|
version: "0"
|
98
|
-
version:
|
99
100
|
requirements: []
|
100
101
|
|
101
102
|
rubyforge_project:
|
102
|
-
rubygems_version: 1.3.
|
103
|
+
rubygems_version: 1.3.6
|
103
104
|
signing_key:
|
104
105
|
specification_version: 3
|
105
106
|
summary: authentication system for using warden with sinatra
|