devise_openid_authenticatable 1.2.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +18 -9
  4. data/CHANGELOG.rdoc +5 -0
  5. data/Gemfile +6 -1
  6. data/Gemfile.devise13 +4 -4
  7. data/Gemfile.devise13.lock +148 -0
  8. data/Gemfile.devise14 +4 -4
  9. data/Gemfile.devise14.lock +150 -0
  10. data/Gemfile.devise15 +4 -4
  11. data/Gemfile.devise15.lock +161 -0
  12. data/Gemfile.devise21 +4 -4
  13. data/Gemfile.devise21.lock +160 -0
  14. data/Gemfile.devise30 +5 -4
  15. data/Gemfile.devise30.lock +151 -0
  16. data/Gemfile.devise33 +12 -0
  17. data/Gemfile.devise33.lock +150 -0
  18. data/Gemfile.devise35 +13 -0
  19. data/Gemfile.devise35.lock +153 -0
  20. data/Gemfile.devise42 +14 -0
  21. data/Gemfile.devise42.lock +189 -0
  22. data/devise_openid_authenticatable.gemspec +4 -1
  23. data/lib/devise_openid_authenticatable/controller.rb +4 -4
  24. data/lib/devise_openid_authenticatable/strategy.rb +20 -8
  25. data/lib/devise_openid_authenticatable/version.rb +1 -1
  26. data/rails/Rakefile +6 -0
  27. data/rails/app/active_record/admin.rb +6 -0
  28. data/rails/app/active_record/shim.rb +2 -0
  29. data/rails/app/active_record/user.rb +7 -0
  30. data/rails/app/active_record/user_on_engine.rb +7 -0
  31. data/rails/app/active_record/user_on_main_app.rb +7 -0
  32. data/rails/app/active_record/user_without_email.rb +8 -0
  33. data/rails/app/controllers/admins/sessions_controller.rb +6 -0
  34. data/rails/app/controllers/admins_controller.rb +6 -0
  35. data/rails/app/controllers/application_controller.rb +11 -0
  36. data/rails/app/controllers/application_with_fake_engine.rb +30 -0
  37. data/rails/app/controllers/custom/registrations_controller.rb +31 -0
  38. data/rails/app/controllers/home_controller.rb +29 -0
  39. data/rails/app/controllers/publisher/registrations_controller.rb +2 -0
  40. data/rails/app/controllers/publisher/sessions_controller.rb +2 -0
  41. data/rails/app/controllers/users/omniauth_callbacks_controller.rb +14 -0
  42. data/rails/app/controllers/users_controller.rb +31 -0
  43. data/rails/app/helpers/application_helper.rb +3 -0
  44. data/rails/app/mailers/users/from_proc_mailer.rb +3 -0
  45. data/rails/app/mailers/users/mailer.rb +3 -0
  46. data/rails/app/mailers/users/reply_to_mailer.rb +4 -0
  47. data/rails/app/mongoid/admin.rb +29 -0
  48. data/rails/app/mongoid/shim.rb +23 -0
  49. data/rails/app/mongoid/user.rb +39 -0
  50. data/rails/app/mongoid/user_on_engine.rb +39 -0
  51. data/rails/app/mongoid/user_on_main_app.rb +39 -0
  52. data/rails/app/mongoid/user_without_email.rb +33 -0
  53. data/rails/app/views/admins/index.html.erb +1 -0
  54. data/rails/app/views/admins/sessions/new.html.erb +2 -0
  55. data/rails/app/views/home/admin_dashboard.html.erb +1 -0
  56. data/rails/app/views/home/index.html.erb +1 -0
  57. data/rails/app/views/home/join.html.erb +1 -0
  58. data/rails/app/views/home/private.html.erb +1 -0
  59. data/rails/app/views/home/user_dashboard.html.erb +1 -0
  60. data/rails/app/views/layouts/application.html.erb +24 -0
  61. data/rails/app/views/users/edit_form.html.erb +1 -0
  62. data/rails/app/views/users/index.html.erb +1 -0
  63. data/rails/app/views/users/mailer/confirmation_instructions.erb +1 -0
  64. data/rails/app/views/users/sessions/new.html.erb +1 -0
  65. data/rails/bin/bundle +3 -0
  66. data/rails/bin/rails +4 -0
  67. data/rails/bin/rake +4 -0
  68. data/rails/config.ru +4 -0
  69. data/rails/config/application.rb +44 -0
  70. data/rails/config/boot.rb +14 -0
  71. data/rails/config/database.yml +18 -0
  72. data/rails/config/environment.rb +5 -0
  73. data/rails/config/environments/development.rb +30 -0
  74. data/rails/config/environments/production.rb +86 -0
  75. data/rails/config/environments/test.rb +45 -0
  76. data/rails/config/initializers/backtrace_silencers.rb +7 -0
  77. data/rails/config/initializers/devise.rb +180 -0
  78. data/rails/config/initializers/inflections.rb +2 -0
  79. data/rails/config/initializers/secret_token.rb +3 -0
  80. data/rails/config/initializers/session_store.rb +1 -0
  81. data/rails/config/routes.rb +126 -0
  82. data/rails/db/migrate/20100401102949_create_tables.rb +75 -0
  83. data/rails/db/schema.rb +55 -0
  84. data/rails/lib/shared_admin.rb +17 -0
  85. data/rails/lib/shared_user.rb +30 -0
  86. data/rails/lib/shared_user_without_email.rb +26 -0
  87. data/rails/lib/shared_user_without_omniauth.rb +13 -0
  88. data/rails/public/404.html +26 -0
  89. data/rails/public/422.html +26 -0
  90. data/rails/public/500.html +26 -0
  91. data/rails/public/favicon.ico +0 -0
  92. data/spec/scenario/config/environments/test.rb +3 -2
  93. data/spec/scenario/config/initializers/devise.rb +3 -0
  94. data/spec/scenario/config/initializers/secret_token.rb +4 -1
  95. data/spec/spec_helper.rb +10 -4
  96. data/spec/strategy_spec.rb +38 -25
  97. metadata +96 -4
  98. data/rails/init.rb +0 -1
data/Gemfile.devise21 CHANGED
@@ -1,11 +1,11 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ ruby '2.1.10'
4
+
3
5
  # Specify your gem's dependencies in devise_openid_authenticatable.gemspec
4
6
  gemspec
5
7
 
6
- gem "devise", "~> 2.1.0"
7
- gem "rails", "~> 3.2.0"
8
-
9
8
  group :test do
10
- gem "rots", :git => "http://github.com/roman/rots.git"
9
+ gem "devise", "~> 2.1.0"
10
+ gem "rails", "~> 3.2.0"
11
11
  end
@@ -0,0 +1,160 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ devise_openid_authenticatable (1.2.1)
5
+ devise (>= 1.3)
6
+ rack-openid (>= 1.2.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (3.2.22.4)
12
+ actionpack (= 3.2.22.4)
13
+ mail (~> 2.5.4)
14
+ actionpack (3.2.22.4)
15
+ activemodel (= 3.2.22.4)
16
+ activesupport (= 3.2.22.4)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.4)
20
+ rack (~> 1.4.5)
21
+ rack-cache (~> 1.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.2.1)
24
+ activemodel (3.2.22.4)
25
+ activesupport (= 3.2.22.4)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.22.4)
28
+ activemodel (= 3.2.22.4)
29
+ activesupport (= 3.2.22.4)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.22.4)
33
+ activemodel (= 3.2.22.4)
34
+ activesupport (= 3.2.22.4)
35
+ activesupport (3.2.22.4)
36
+ i18n (~> 0.6, >= 0.6.4)
37
+ multi_json (~> 1.0)
38
+ arel (3.0.3)
39
+ bcrypt (3.1.11)
40
+ bcrypt-ruby (3.1.5)
41
+ bcrypt (>= 3.1.3)
42
+ builder (3.0.4)
43
+ devise (2.1.4)
44
+ bcrypt-ruby (~> 3.0)
45
+ orm_adapter (~> 0.1)
46
+ railties (~> 3.1)
47
+ warden (~> 1.2.1)
48
+ diff-lcs (1.2.5)
49
+ erubis (2.7.0)
50
+ hike (1.2.3)
51
+ i18n (0.7.0)
52
+ journey (1.0.4)
53
+ json (1.8.3)
54
+ mail (2.5.4)
55
+ mime-types (~> 1.16)
56
+ treetop (~> 1.4.8)
57
+ metaclass (0.0.4)
58
+ mime-types (1.25.1)
59
+ mini_portile2 (2.1.0)
60
+ mocha (1.1.0)
61
+ metaclass (~> 0.0.1)
62
+ multi_json (1.12.1)
63
+ nokogiri (1.6.8)
64
+ mini_portile2 (~> 2.1.0)
65
+ pkg-config (~> 1.1.7)
66
+ orm_adapter (0.5.0)
67
+ pkg-config (1.1.7)
68
+ polyglot (0.3.5)
69
+ rack (1.4.7)
70
+ rack-cache (1.6.1)
71
+ rack (>= 0.4)
72
+ rack-openid (1.4.2)
73
+ rack (>= 1.1.0)
74
+ ruby-openid (>= 2.1.8)
75
+ rack-ssl (1.3.4)
76
+ rack
77
+ rack-test (0.6.3)
78
+ rack (>= 1.0)
79
+ rails (3.2.22.4)
80
+ actionmailer (= 3.2.22.4)
81
+ actionpack (= 3.2.22.4)
82
+ activerecord (= 3.2.22.4)
83
+ activeresource (= 3.2.22.4)
84
+ activesupport (= 3.2.22.4)
85
+ bundler (~> 1.0)
86
+ railties (= 3.2.22.4)
87
+ railties (3.2.22.4)
88
+ actionpack (= 3.2.22.4)
89
+ activesupport (= 3.2.22.4)
90
+ rack-ssl (~> 1.3.2)
91
+ rake (>= 0.8.7)
92
+ rdoc (~> 3.4)
93
+ thor (>= 0.14.6, < 2.0)
94
+ rake (11.2.2)
95
+ rdoc (3.12.2)
96
+ json (~> 1.4)
97
+ roman-rots (0.2.1)
98
+ rspec (2.99.0)
99
+ rspec-core (~> 2.99.0)
100
+ rspec-expectations (~> 2.99.0)
101
+ rspec-mocks (~> 2.99.0)
102
+ rspec-collection_matchers (1.1.2)
103
+ rspec-expectations (>= 2.99.0.beta1)
104
+ rspec-core (2.99.2)
105
+ rspec-expectations (2.99.2)
106
+ diff-lcs (>= 1.1.3, < 2.0)
107
+ rspec-mocks (2.99.4)
108
+ rspec-rails (2.99.0)
109
+ actionpack (>= 3.0)
110
+ activemodel (>= 3.0)
111
+ activesupport (>= 3.0)
112
+ railties (>= 3.0)
113
+ rspec-collection_matchers
114
+ rspec-core (~> 2.99.0)
115
+ rspec-expectations (~> 2.99.0)
116
+ rspec-mocks (~> 2.99.0)
117
+ ruby-openid (2.7.0)
118
+ sham_rack (1.3.6)
119
+ rack
120
+ sprockets (2.2.3)
121
+ hike (~> 1.2)
122
+ multi_json (~> 1.0)
123
+ rack (~> 1.0)
124
+ tilt (~> 1.1, != 1.3.0)
125
+ sqlite3 (1.3.11)
126
+ sqlite3-ruby (1.3.3)
127
+ sqlite3 (>= 1.3.3)
128
+ thor (0.19.1)
129
+ tilt (1.4.1)
130
+ treetop (1.4.15)
131
+ polyglot
132
+ polyglot (>= 0.3.1)
133
+ tzinfo (0.3.51)
134
+ warden (1.2.6)
135
+ rack (>= 1.0)
136
+ webrat (0.7.3)
137
+ nokogiri (>= 1.2.0)
138
+ rack (>= 1.0)
139
+ rack-test (>= 0.5.3)
140
+
141
+ PLATFORMS
142
+ ruby
143
+
144
+ DEPENDENCIES
145
+ devise (~> 2.1.0)
146
+ devise_openid_authenticatable!
147
+ mocha
148
+ rails (~> 3.2.0)
149
+ roman-rots
150
+ rspec (~> 2.3)
151
+ rspec-rails (~> 2.3)
152
+ sham_rack
153
+ sqlite3-ruby
154
+ webrat
155
+
156
+ RUBY VERSION
157
+ ruby 2.1.10p492
158
+
159
+ BUNDLED WITH
160
+ 1.12.5
data/Gemfile.devise30 CHANGED
@@ -1,11 +1,12 @@
1
1
  source "http://rubygems.org"
2
2
 
3
+ ruby '2.3.1'
4
+
3
5
  # Specify your gem's dependencies in devise_cas_authenticatable.gemspec
4
6
  gemspec
5
7
 
6
- gem 'rails', '~> 4.0.0'
7
- gem 'devise', '~> 3.0.0'
8
-
9
8
  group :test do
10
- gem "rots", :git => "http://github.com/roman/rots.git"
9
+ gem 'rails', '~> 4.0.13'
10
+ gem 'devise', '~> 3.0.2'
11
+ gem 'test-unit' # Ruby > 2.1, see github.com/rspec/rspec-rails/issues/1273
11
12
  end
@@ -0,0 +1,151 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ devise_openid_authenticatable (1.2.1)
5
+ devise (>= 1.3)
6
+ rack-openid (>= 1.2.0)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionmailer (4.0.13)
12
+ actionpack (= 4.0.13)
13
+ mail (~> 2.5, >= 2.5.4)
14
+ actionpack (4.0.13)
15
+ activesupport (= 4.0.13)
16
+ builder (~> 3.1.0)
17
+ erubis (~> 2.7.0)
18
+ rack (~> 1.5.2)
19
+ rack-test (~> 0.6.2)
20
+ activemodel (4.0.13)
21
+ activesupport (= 4.0.13)
22
+ builder (~> 3.1.0)
23
+ activerecord (4.0.13)
24
+ activemodel (= 4.0.13)
25
+ activerecord-deprecated_finders (~> 1.0.2)
26
+ activesupport (= 4.0.13)
27
+ arel (~> 4.0.0)
28
+ activerecord-deprecated_finders (1.0.4)
29
+ activesupport (4.0.13)
30
+ i18n (~> 0.6, >= 0.6.9)
31
+ minitest (~> 4.2)
32
+ multi_json (~> 1.3)
33
+ thread_safe (~> 0.1)
34
+ tzinfo (~> 0.3.37)
35
+ arel (4.0.2)
36
+ bcrypt (3.1.11)
37
+ bcrypt-ruby (3.1.5)
38
+ bcrypt (>= 3.1.3)
39
+ builder (3.1.4)
40
+ concurrent-ruby (1.0.2)
41
+ devise (3.0.4)
42
+ bcrypt-ruby (~> 3.0)
43
+ orm_adapter (~> 0.1)
44
+ railties (>= 3.2.6, < 5)
45
+ warden (~> 1.2.3)
46
+ diff-lcs (1.2.5)
47
+ erubis (2.7.0)
48
+ i18n (0.7.0)
49
+ mail (2.6.4)
50
+ mime-types (>= 1.16, < 4)
51
+ metaclass (0.0.4)
52
+ mime-types (3.1)
53
+ mime-types-data (~> 3.2015)
54
+ mime-types-data (3.2016.0521)
55
+ mini_portile2 (2.1.0)
56
+ minitest (4.7.5)
57
+ mocha (1.1.0)
58
+ metaclass (~> 0.0.1)
59
+ multi_json (1.12.1)
60
+ nokogiri (1.6.8)
61
+ mini_portile2 (~> 2.1.0)
62
+ pkg-config (~> 1.1.7)
63
+ orm_adapter (0.5.0)
64
+ pkg-config (1.1.7)
65
+ power_assert (0.3.0)
66
+ rack (1.5.5)
67
+ rack-openid (1.4.2)
68
+ rack (>= 1.1.0)
69
+ ruby-openid (>= 2.1.8)
70
+ rack-test (0.6.3)
71
+ rack (>= 1.0)
72
+ rails (4.0.13)
73
+ actionmailer (= 4.0.13)
74
+ actionpack (= 4.0.13)
75
+ activerecord (= 4.0.13)
76
+ activesupport (= 4.0.13)
77
+ bundler (>= 1.3.0, < 2.0)
78
+ railties (= 4.0.13)
79
+ sprockets-rails (~> 2.0)
80
+ railties (4.0.13)
81
+ actionpack (= 4.0.13)
82
+ activesupport (= 4.0.13)
83
+ rake (>= 0.8.7)
84
+ thor (>= 0.18.1, < 2.0)
85
+ rake (11.2.2)
86
+ roman-rots (0.2.1)
87
+ rspec (2.99.0)
88
+ rspec-core (~> 2.99.0)
89
+ rspec-expectations (~> 2.99.0)
90
+ rspec-mocks (~> 2.99.0)
91
+ rspec-collection_matchers (1.1.2)
92
+ rspec-expectations (>= 2.99.0.beta1)
93
+ rspec-core (2.99.2)
94
+ rspec-expectations (2.99.2)
95
+ diff-lcs (>= 1.1.3, < 2.0)
96
+ rspec-mocks (2.99.4)
97
+ rspec-rails (2.99.0)
98
+ actionpack (>= 3.0)
99
+ activemodel (>= 3.0)
100
+ activesupport (>= 3.0)
101
+ railties (>= 3.0)
102
+ rspec-collection_matchers
103
+ rspec-core (~> 2.99.0)
104
+ rspec-expectations (~> 2.99.0)
105
+ rspec-mocks (~> 2.99.0)
106
+ ruby-openid (2.7.0)
107
+ sham_rack (1.3.6)
108
+ rack
109
+ sprockets (3.7.0)
110
+ concurrent-ruby (~> 1.0)
111
+ rack (> 1, < 3)
112
+ sprockets-rails (2.3.3)
113
+ actionpack (>= 3.0)
114
+ activesupport (>= 3.0)
115
+ sprockets (>= 2.8, < 4.0)
116
+ sqlite3 (1.3.11)
117
+ sqlite3-ruby (1.3.3)
118
+ sqlite3 (>= 1.3.3)
119
+ test-unit (3.2.1)
120
+ power_assert
121
+ thor (0.19.1)
122
+ thread_safe (0.3.5)
123
+ tzinfo (0.3.51)
124
+ warden (1.2.6)
125
+ rack (>= 1.0)
126
+ webrat (0.7.3)
127
+ nokogiri (>= 1.2.0)
128
+ rack (>= 1.0)
129
+ rack-test (>= 0.5.3)
130
+
131
+ PLATFORMS
132
+ ruby
133
+
134
+ DEPENDENCIES
135
+ devise (~> 3.0.2)
136
+ devise_openid_authenticatable!
137
+ mocha
138
+ rails (~> 4.0.13)
139
+ roman-rots
140
+ rspec (~> 2.3)
141
+ rspec-rails (~> 2.3)
142
+ sham_rack
143
+ sqlite3-ruby
144
+ test-unit
145
+ webrat
146
+
147
+ RUBY VERSION
148
+ ruby 2.3.1p112
149
+
150
+ BUNDLED WITH
151
+ 1.12.5
data/Gemfile.devise33 ADDED
@@ -0,0 +1,12 @@
1
+ source 'https://rubygems.org'
2
+
3
+ ruby '2.3.1'
4
+
5
+ # Specify your gem's dependencies in devise_openid_authenticatable.gemspec
6
+ gemspec
7
+
8
+ group :test do
9
+ gem 'rails', '~> 4.0.13'
10
+ gem 'devise', '~> 3.3.0'
11
+ gem 'test-unit' # Ruby > 2.1, see github.com/rspec/rspec-rails/issues/1273
12
+ end
@@ -0,0 +1,150 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ devise_openid_authenticatable (1.2.1)
5
+ devise (>= 1.3)
6
+ rack-openid (>= 1.2.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.0.13)
12
+ actionpack (= 4.0.13)
13
+ mail (~> 2.5, >= 2.5.4)
14
+ actionpack (4.0.13)
15
+ activesupport (= 4.0.13)
16
+ builder (~> 3.1.0)
17
+ erubis (~> 2.7.0)
18
+ rack (~> 1.5.2)
19
+ rack-test (~> 0.6.2)
20
+ activemodel (4.0.13)
21
+ activesupport (= 4.0.13)
22
+ builder (~> 3.1.0)
23
+ activerecord (4.0.13)
24
+ activemodel (= 4.0.13)
25
+ activerecord-deprecated_finders (~> 1.0.2)
26
+ activesupport (= 4.0.13)
27
+ arel (~> 4.0.0)
28
+ activerecord-deprecated_finders (1.0.4)
29
+ activesupport (4.0.13)
30
+ i18n (~> 0.6, >= 0.6.9)
31
+ minitest (~> 4.2)
32
+ multi_json (~> 1.3)
33
+ thread_safe (~> 0.1)
34
+ tzinfo (~> 0.3.37)
35
+ arel (4.0.2)
36
+ bcrypt (3.1.11)
37
+ builder (3.1.4)
38
+ concurrent-ruby (1.0.2)
39
+ devise (3.3.0)
40
+ bcrypt (~> 3.0)
41
+ orm_adapter (~> 0.1)
42
+ railties (>= 3.2.6, < 5)
43
+ thread_safe (~> 0.1)
44
+ warden (~> 1.2.3)
45
+ diff-lcs (1.2.5)
46
+ erubis (2.7.0)
47
+ i18n (0.7.0)
48
+ mail (2.6.4)
49
+ mime-types (>= 1.16, < 4)
50
+ metaclass (0.0.4)
51
+ mime-types (3.1)
52
+ mime-types-data (~> 3.2015)
53
+ mime-types-data (3.2016.0521)
54
+ mini_portile2 (2.1.0)
55
+ minitest (4.7.5)
56
+ mocha (1.1.0)
57
+ metaclass (~> 0.0.1)
58
+ multi_json (1.12.1)
59
+ nokogiri (1.6.8)
60
+ mini_portile2 (~> 2.1.0)
61
+ pkg-config (~> 1.1.7)
62
+ orm_adapter (0.5.0)
63
+ pkg-config (1.1.7)
64
+ power_assert (0.3.0)
65
+ rack (1.5.5)
66
+ rack-openid (1.4.2)
67
+ rack (>= 1.1.0)
68
+ ruby-openid (>= 2.1.8)
69
+ rack-test (0.6.3)
70
+ rack (>= 1.0)
71
+ rails (4.0.13)
72
+ actionmailer (= 4.0.13)
73
+ actionpack (= 4.0.13)
74
+ activerecord (= 4.0.13)
75
+ activesupport (= 4.0.13)
76
+ bundler (>= 1.3.0, < 2.0)
77
+ railties (= 4.0.13)
78
+ sprockets-rails (~> 2.0)
79
+ railties (4.0.13)
80
+ actionpack (= 4.0.13)
81
+ activesupport (= 4.0.13)
82
+ rake (>= 0.8.7)
83
+ thor (>= 0.18.1, < 2.0)
84
+ rake (11.2.2)
85
+ roman-rots (0.2.1)
86
+ rspec (2.99.0)
87
+ rspec-core (~> 2.99.0)
88
+ rspec-expectations (~> 2.99.0)
89
+ rspec-mocks (~> 2.99.0)
90
+ rspec-collection_matchers (1.1.2)
91
+ rspec-expectations (>= 2.99.0.beta1)
92
+ rspec-core (2.99.2)
93
+ rspec-expectations (2.99.2)
94
+ diff-lcs (>= 1.1.3, < 2.0)
95
+ rspec-mocks (2.99.4)
96
+ rspec-rails (2.99.0)
97
+ actionpack (>= 3.0)
98
+ activemodel (>= 3.0)
99
+ activesupport (>= 3.0)
100
+ railties (>= 3.0)
101
+ rspec-collection_matchers
102
+ rspec-core (~> 2.99.0)
103
+ rspec-expectations (~> 2.99.0)
104
+ rspec-mocks (~> 2.99.0)
105
+ ruby-openid (2.7.0)
106
+ sham_rack (1.3.6)
107
+ rack
108
+ sprockets (3.7.0)
109
+ concurrent-ruby (~> 1.0)
110
+ rack (> 1, < 3)
111
+ sprockets-rails (2.3.3)
112
+ actionpack (>= 3.0)
113
+ activesupport (>= 3.0)
114
+ sprockets (>= 2.8, < 4.0)
115
+ sqlite3 (1.3.11)
116
+ sqlite3-ruby (1.3.3)
117
+ sqlite3 (>= 1.3.3)
118
+ test-unit (3.2.1)
119
+ power_assert
120
+ thor (0.19.1)
121
+ thread_safe (0.3.5)
122
+ tzinfo (0.3.51)
123
+ warden (1.2.6)
124
+ rack (>= 1.0)
125
+ webrat (0.7.3)
126
+ nokogiri (>= 1.2.0)
127
+ rack (>= 1.0)
128
+ rack-test (>= 0.5.3)
129
+
130
+ PLATFORMS
131
+ ruby
132
+
133
+ DEPENDENCIES
134
+ devise (~> 3.3.0)
135
+ devise_openid_authenticatable!
136
+ mocha
137
+ rails (~> 4.0.13)
138
+ roman-rots
139
+ rspec (~> 2.3)
140
+ rspec-rails (~> 2.3)
141
+ sham_rack
142
+ sqlite3-ruby
143
+ test-unit
144
+ webrat
145
+
146
+ RUBY VERSION
147
+ ruby 2.3.1p112
148
+
149
+ BUNDLED WITH
150
+ 1.12.5