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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83e2b4da785ada392060ed20b19d28c81a445b72
4
- data.tar.gz: 59ee199ddca5970075b9c2cfa72923cd2102d34c
3
+ metadata.gz: aca5a7029f4c45c75deaff1e4aa666311a143423
4
+ data.tar.gz: a3ceef7e49e2d5e2c01ac69811880422314a6e25
5
5
  SHA512:
6
- metadata.gz: 7adc35cd1d8a2b9aab9f2d6df94906eb9ccc911b30aa58b1e569c90a62b019f34f44f00fa46bdddc9af4b6ee1ad35c93d3b23297726a7c865dd93f757be5567b
7
- data.tar.gz: 0d62f991332b5e448c13c5844f46476607e014d864de260fd37a8eef9e5ca9ef8444947f5322bf8a2e3feaff8009a540eace24adc1cf1f71906fca40afb871df
6
+ metadata.gz: cba0680079c6d903dda052f4dd40215ee863cc135f6341eb91a82bb1e6dfd1ca5917bbcbbf153463fe71a17e2c9d73a48d38bb8b9bf526ca62280ed546bfa637
7
+ data.tar.gz: 2d8f800cff683b1840262b20c1b1d13651cbc3119c028aabd8564918459b33a33a8dd9045546638bdaf3309fe3fd384b1088c08c981c1fda3395a266d8656a67
data/.gitignore CHANGED
@@ -4,3 +4,4 @@ Gemfile.lock
4
4
  .bundle
5
5
  spec/scenario/db/*.sqlite3
6
6
  spec/scenario/tmp/*
7
+ vendor/bundle
data/.travis.yml CHANGED
@@ -1,9 +1,18 @@
1
- rvm:
2
- - 1.9.3
3
- - 2.0.0
4
- gemfile:
5
- - Gemfile.devise30
6
- - Gemfile.devise21
7
- - Gemfile.devise15
8
- - Gemfile.devise13
9
- - Gemfile.devise14
1
+ matrix:
2
+ include:
3
+ - rvm: 2.3.1
4
+ gemfile: Gemfile.devise42
5
+ - rvm: 2.3.1
6
+ gemfile: Gemfile.devise35
7
+ - rvm: 2.3.1
8
+ gemfile: Gemfile.devise33
9
+ - rvm: 2.3.1
10
+ gemfile: Gemfile.devise30
11
+ - rvm: 2.1.10
12
+ gemfile: Gemfile.devise21
13
+ - rvm: 2.1.10
14
+ gemfile: Gemfile.devise15
15
+ - rvm: 2.1.10
16
+ gemfile: Gemfile.devise14
17
+ - rvm: 2.1.10
18
+ gemfile: Gemfile.devise13
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.3.0
2
+ * Code cleanups and additional debug logging (thanks Erik Ecoologic!)
3
+ * Support Rails 5 and Devise 3.4, 3.5 and 4.x (thanks again Erik Ecoologic!)
4
+ * Drop support for Ruby 1.9; Ruby 2.0 or greater is now required
5
+
1
6
  == 1.2.1
2
7
  * Avoid an unnecessary method call (thanks Sander Nieuwenhuizen!)
3
8
 
data/Gemfile CHANGED
@@ -1,8 +1,13 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ ruby '2.3.1'
4
+
3
5
  # Specify your gem's dependencies in devise_openid_authenticatable.gemspec
4
6
  gemspec
5
7
 
6
8
  group :test do
7
- gem "rots", :git => "http://github.com/roman/rots.git"
9
+ gem 'rails', '~> 5.0.0'
10
+ gem 'devise', '~> 4.2.0'
11
+ gem 'test-unit' # Ruby > 2.1, see github.com/rspec/rspec-rails/issues/1273
12
+ gem 'rails-controller-testing'
8
13
  end
data/Gemfile.devise13 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 "rails", "~> 3.0.0"
7
- gem "devise", "~> 1.3.0"
8
-
9
8
  group :test do
10
- gem "rots", :git => "http://github.com/roman/rots.git"
9
+ gem "rails", "~> 3.0.0"
10
+ gem "devise", "~> 1.3.0"
11
11
  end
@@ -0,0 +1,148 @@
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
+ abstract (1.0.0)
12
+ actionmailer (3.0.20)
13
+ actionpack (= 3.0.20)
14
+ mail (~> 2.2.19)
15
+ actionpack (3.0.20)
16
+ activemodel (= 3.0.20)
17
+ activesupport (= 3.0.20)
18
+ builder (~> 2.1.2)
19
+ erubis (~> 2.6.6)
20
+ i18n (~> 0.5.0)
21
+ rack (~> 1.2.5)
22
+ rack-mount (~> 0.6.14)
23
+ rack-test (~> 0.5.7)
24
+ tzinfo (~> 0.3.23)
25
+ activemodel (3.0.20)
26
+ activesupport (= 3.0.20)
27
+ builder (~> 2.1.2)
28
+ i18n (~> 0.5.0)
29
+ activerecord (3.0.20)
30
+ activemodel (= 3.0.20)
31
+ activesupport (= 3.0.20)
32
+ arel (~> 2.0.10)
33
+ tzinfo (~> 0.3.23)
34
+ activeresource (3.0.20)
35
+ activemodel (= 3.0.20)
36
+ activesupport (= 3.0.20)
37
+ activesupport (3.0.20)
38
+ arel (2.0.10)
39
+ bcrypt-ruby (2.1.4)
40
+ builder (2.1.2)
41
+ devise (1.3.4)
42
+ bcrypt-ruby (~> 2.1.2)
43
+ orm_adapter (~> 0.0.3)
44
+ warden (~> 1.0.3)
45
+ diff-lcs (1.2.5)
46
+ erubis (2.6.6)
47
+ abstract (>= 1.0.0)
48
+ i18n (0.5.4)
49
+ json (1.8.3)
50
+ mail (2.2.20)
51
+ activesupport (>= 2.3.6)
52
+ i18n (>= 0.4.0)
53
+ mime-types (~> 1.16)
54
+ treetop (~> 1.4.8)
55
+ metaclass (0.0.4)
56
+ mime-types (1.25.1)
57
+ mini_portile2 (2.1.0)
58
+ mocha (1.1.0)
59
+ metaclass (~> 0.0.1)
60
+ nokogiri (1.6.8)
61
+ mini_portile2 (~> 2.1.0)
62
+ pkg-config (~> 1.1.7)
63
+ orm_adapter (0.0.7)
64
+ pkg-config (1.1.7)
65
+ polyglot (0.3.5)
66
+ rack (1.2.8)
67
+ rack-mount (0.6.14)
68
+ rack (>= 1.0.0)
69
+ rack-openid (1.4.2)
70
+ rack (>= 1.1.0)
71
+ ruby-openid (>= 2.1.8)
72
+ rack-test (0.5.7)
73
+ rack (>= 1.0)
74
+ rails (3.0.20)
75
+ actionmailer (= 3.0.20)
76
+ actionpack (= 3.0.20)
77
+ activerecord (= 3.0.20)
78
+ activeresource (= 3.0.20)
79
+ activesupport (= 3.0.20)
80
+ bundler (~> 1.0)
81
+ railties (= 3.0.20)
82
+ railties (3.0.20)
83
+ actionpack (= 3.0.20)
84
+ activesupport (= 3.0.20)
85
+ rake (>= 0.8.7)
86
+ rdoc (~> 3.4)
87
+ thor (~> 0.14.4)
88
+ rake (11.2.2)
89
+ rdoc (3.12.2)
90
+ json (~> 1.4)
91
+ roman-rots (0.2.1)
92
+ rspec (2.99.0)
93
+ rspec-core (~> 2.99.0)
94
+ rspec-expectations (~> 2.99.0)
95
+ rspec-mocks (~> 2.99.0)
96
+ rspec-collection_matchers (1.1.2)
97
+ rspec-expectations (>= 2.99.0.beta1)
98
+ rspec-core (2.99.2)
99
+ rspec-expectations (2.99.2)
100
+ diff-lcs (>= 1.1.3, < 2.0)
101
+ rspec-mocks (2.99.4)
102
+ rspec-rails (2.99.0)
103
+ actionpack (>= 3.0)
104
+ activemodel (>= 3.0)
105
+ activesupport (>= 3.0)
106
+ railties (>= 3.0)
107
+ rspec-collection_matchers
108
+ rspec-core (~> 2.99.0)
109
+ rspec-expectations (~> 2.99.0)
110
+ rspec-mocks (~> 2.99.0)
111
+ ruby-openid (2.7.0)
112
+ sham_rack (1.3.6)
113
+ rack
114
+ sqlite3 (1.3.11)
115
+ sqlite3-ruby (1.3.3)
116
+ sqlite3 (>= 1.3.3)
117
+ thor (0.14.6)
118
+ treetop (1.4.15)
119
+ polyglot
120
+ polyglot (>= 0.3.1)
121
+ tzinfo (0.3.51)
122
+ warden (1.0.6)
123
+ rack (>= 1.0)
124
+ webrat (0.7.3)
125
+ nokogiri (>= 1.2.0)
126
+ rack (>= 1.0)
127
+ rack-test (>= 0.5.3)
128
+
129
+ PLATFORMS
130
+ ruby
131
+
132
+ DEPENDENCIES
133
+ devise (~> 1.3.0)
134
+ devise_openid_authenticatable!
135
+ mocha
136
+ rails (~> 3.0.0)
137
+ roman-rots
138
+ rspec (~> 2.3)
139
+ rspec-rails (~> 2.3)
140
+ sham_rack
141
+ sqlite3-ruby
142
+ webrat
143
+
144
+ RUBY VERSION
145
+ ruby 2.1.10p492
146
+
147
+ BUNDLED WITH
148
+ 1.12.5
data/Gemfile.devise14 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 "rails", "~> 3.0.0"
7
- gem "devise", "~> 1.4.0"
8
-
9
8
  group :test do
10
- gem "rots", :git => "http://github.com/roman/rots.git"
9
+ gem "rails", "~> 3.0.0"
10
+ gem "devise", "~> 1.4.0"
11
11
  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
+ abstract (1.0.0)
12
+ actionmailer (3.0.20)
13
+ actionpack (= 3.0.20)
14
+ mail (~> 2.2.19)
15
+ actionpack (3.0.20)
16
+ activemodel (= 3.0.20)
17
+ activesupport (= 3.0.20)
18
+ builder (~> 2.1.2)
19
+ erubis (~> 2.6.6)
20
+ i18n (~> 0.5.0)
21
+ rack (~> 1.2.5)
22
+ rack-mount (~> 0.6.14)
23
+ rack-test (~> 0.5.7)
24
+ tzinfo (~> 0.3.23)
25
+ activemodel (3.0.20)
26
+ activesupport (= 3.0.20)
27
+ builder (~> 2.1.2)
28
+ i18n (~> 0.5.0)
29
+ activerecord (3.0.20)
30
+ activemodel (= 3.0.20)
31
+ activesupport (= 3.0.20)
32
+ arel (~> 2.0.10)
33
+ tzinfo (~> 0.3.23)
34
+ activeresource (3.0.20)
35
+ activemodel (= 3.0.20)
36
+ activesupport (= 3.0.20)
37
+ activesupport (3.0.20)
38
+ arel (2.0.10)
39
+ bcrypt (3.1.11)
40
+ bcrypt-ruby (3.1.5)
41
+ bcrypt (>= 3.1.3)
42
+ builder (2.1.2)
43
+ devise (1.4.9)
44
+ bcrypt-ruby (~> 3.0)
45
+ orm_adapter (~> 0.0.3)
46
+ warden (~> 1.0.3)
47
+ diff-lcs (1.2.5)
48
+ erubis (2.6.6)
49
+ abstract (>= 1.0.0)
50
+ i18n (0.5.4)
51
+ json (1.8.3)
52
+ mail (2.2.20)
53
+ activesupport (>= 2.3.6)
54
+ i18n (>= 0.4.0)
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
+ nokogiri (1.6.8)
63
+ mini_portile2 (~> 2.1.0)
64
+ pkg-config (~> 1.1.7)
65
+ orm_adapter (0.0.7)
66
+ pkg-config (1.1.7)
67
+ polyglot (0.3.5)
68
+ rack (1.2.8)
69
+ rack-mount (0.6.14)
70
+ rack (>= 1.0.0)
71
+ rack-openid (1.4.2)
72
+ rack (>= 1.1.0)
73
+ ruby-openid (>= 2.1.8)
74
+ rack-test (0.5.7)
75
+ rack (>= 1.0)
76
+ rails (3.0.20)
77
+ actionmailer (= 3.0.20)
78
+ actionpack (= 3.0.20)
79
+ activerecord (= 3.0.20)
80
+ activeresource (= 3.0.20)
81
+ activesupport (= 3.0.20)
82
+ bundler (~> 1.0)
83
+ railties (= 3.0.20)
84
+ railties (3.0.20)
85
+ actionpack (= 3.0.20)
86
+ activesupport (= 3.0.20)
87
+ rake (>= 0.8.7)
88
+ rdoc (~> 3.4)
89
+ thor (~> 0.14.4)
90
+ rake (11.2.2)
91
+ rdoc (3.12.2)
92
+ json (~> 1.4)
93
+ roman-rots (0.2.1)
94
+ rspec (2.99.0)
95
+ rspec-core (~> 2.99.0)
96
+ rspec-expectations (~> 2.99.0)
97
+ rspec-mocks (~> 2.99.0)
98
+ rspec-collection_matchers (1.1.2)
99
+ rspec-expectations (>= 2.99.0.beta1)
100
+ rspec-core (2.99.2)
101
+ rspec-expectations (2.99.2)
102
+ diff-lcs (>= 1.1.3, < 2.0)
103
+ rspec-mocks (2.99.4)
104
+ rspec-rails (2.99.0)
105
+ actionpack (>= 3.0)
106
+ activemodel (>= 3.0)
107
+ activesupport (>= 3.0)
108
+ railties (>= 3.0)
109
+ rspec-collection_matchers
110
+ rspec-core (~> 2.99.0)
111
+ rspec-expectations (~> 2.99.0)
112
+ rspec-mocks (~> 2.99.0)
113
+ ruby-openid (2.7.0)
114
+ sham_rack (1.3.6)
115
+ rack
116
+ sqlite3 (1.3.11)
117
+ sqlite3-ruby (1.3.3)
118
+ sqlite3 (>= 1.3.3)
119
+ thor (0.14.6)
120
+ treetop (1.4.15)
121
+ polyglot
122
+ polyglot (>= 0.3.1)
123
+ tzinfo (0.3.51)
124
+ warden (1.0.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 (~> 1.4.0)
136
+ devise_openid_authenticatable!
137
+ mocha
138
+ rails (~> 3.0.0)
139
+ roman-rots
140
+ rspec (~> 2.3)
141
+ rspec-rails (~> 2.3)
142
+ sham_rack
143
+ sqlite3-ruby
144
+ webrat
145
+
146
+ RUBY VERSION
147
+ ruby 2.1.10p492
148
+
149
+ BUNDLED WITH
150
+ 1.12.5
data/Gemfile.devise15 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 "rails", "~> 3.1.0"
7
- gem "devise", "~> 1.5.0"
8
-
9
8
  group :test do
10
- gem "rots", :git => "http://github.com/roman/rots.git"
9
+ gem "rails", "~> 3.1.0"
10
+ gem "devise", "~> 1.5.0"
11
11
  end
@@ -0,0 +1,161 @@
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.1.12)
12
+ actionpack (= 3.1.12)
13
+ mail (~> 2.4.4)
14
+ actionpack (3.1.12)
15
+ activemodel (= 3.1.12)
16
+ activesupport (= 3.1.12)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ i18n (~> 0.6)
20
+ rack (~> 1.3.6)
21
+ rack-cache (~> 1.2)
22
+ rack-mount (~> 0.8.2)
23
+ rack-test (~> 0.6.1)
24
+ sprockets (~> 2.0.4)
25
+ activemodel (3.1.12)
26
+ activesupport (= 3.1.12)
27
+ builder (~> 3.0.0)
28
+ i18n (~> 0.6)
29
+ activerecord (3.1.12)
30
+ activemodel (= 3.1.12)
31
+ activesupport (= 3.1.12)
32
+ arel (~> 2.2.3)
33
+ tzinfo (~> 0.3.29)
34
+ activeresource (3.1.12)
35
+ activemodel (= 3.1.12)
36
+ activesupport (= 3.1.12)
37
+ activesupport (3.1.12)
38
+ multi_json (~> 1.0)
39
+ arel (2.2.3)
40
+ bcrypt (3.1.11)
41
+ bcrypt-ruby (3.1.5)
42
+ bcrypt (>= 3.1.3)
43
+ builder (3.0.4)
44
+ devise (1.5.4)
45
+ bcrypt-ruby (~> 3.0)
46
+ orm_adapter (~> 0.0.3)
47
+ warden (~> 1.1)
48
+ diff-lcs (1.2.5)
49
+ erubis (2.7.0)
50
+ hike (1.2.3)
51
+ i18n (0.7.0)
52
+ json (1.8.3)
53
+ mail (2.4.4)
54
+ i18n (>= 0.4.0)
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.0.7)
67
+ pkg-config (1.1.7)
68
+ polyglot (0.3.5)
69
+ rack (1.3.10)
70
+ rack-cache (1.6.1)
71
+ rack (>= 0.4)
72
+ rack-mount (0.8.3)
73
+ rack (>= 1.0.0)
74
+ rack-openid (1.4.2)
75
+ rack (>= 1.1.0)
76
+ ruby-openid (>= 2.1.8)
77
+ rack-ssl (1.3.4)
78
+ rack
79
+ rack-test (0.6.3)
80
+ rack (>= 1.0)
81
+ rails (3.1.12)
82
+ actionmailer (= 3.1.12)
83
+ actionpack (= 3.1.12)
84
+ activerecord (= 3.1.12)
85
+ activeresource (= 3.1.12)
86
+ activesupport (= 3.1.12)
87
+ bundler (~> 1.0)
88
+ railties (= 3.1.12)
89
+ railties (3.1.12)
90
+ actionpack (= 3.1.12)
91
+ activesupport (= 3.1.12)
92
+ rack-ssl (~> 1.3.2)
93
+ rake (>= 0.8.7)
94
+ rdoc (~> 3.4)
95
+ thor (~> 0.14.6)
96
+ rake (11.2.2)
97
+ rdoc (3.12.2)
98
+ json (~> 1.4)
99
+ roman-rots (0.2.1)
100
+ rspec (2.99.0)
101
+ rspec-core (~> 2.99.0)
102
+ rspec-expectations (~> 2.99.0)
103
+ rspec-mocks (~> 2.99.0)
104
+ rspec-collection_matchers (1.1.2)
105
+ rspec-expectations (>= 2.99.0.beta1)
106
+ rspec-core (2.99.2)
107
+ rspec-expectations (2.99.2)
108
+ diff-lcs (>= 1.1.3, < 2.0)
109
+ rspec-mocks (2.99.4)
110
+ rspec-rails (2.99.0)
111
+ actionpack (>= 3.0)
112
+ activemodel (>= 3.0)
113
+ activesupport (>= 3.0)
114
+ railties (>= 3.0)
115
+ rspec-collection_matchers
116
+ rspec-core (~> 2.99.0)
117
+ rspec-expectations (~> 2.99.0)
118
+ rspec-mocks (~> 2.99.0)
119
+ ruby-openid (2.7.0)
120
+ sham_rack (1.3.6)
121
+ rack
122
+ sprockets (2.0.5)
123
+ hike (~> 1.2)
124
+ rack (~> 1.0)
125
+ tilt (~> 1.1, != 1.3.0)
126
+ sqlite3 (1.3.11)
127
+ sqlite3-ruby (1.3.3)
128
+ sqlite3 (>= 1.3.3)
129
+ thor (0.14.6)
130
+ tilt (1.4.1)
131
+ treetop (1.4.15)
132
+ polyglot
133
+ polyglot (>= 0.3.1)
134
+ tzinfo (0.3.51)
135
+ warden (1.2.6)
136
+ rack (>= 1.0)
137
+ webrat (0.7.3)
138
+ nokogiri (>= 1.2.0)
139
+ rack (>= 1.0)
140
+ rack-test (>= 0.5.3)
141
+
142
+ PLATFORMS
143
+ ruby
144
+
145
+ DEPENDENCIES
146
+ devise (~> 1.5.0)
147
+ devise_openid_authenticatable!
148
+ mocha
149
+ rails (~> 3.1.0)
150
+ roman-rots
151
+ rspec (~> 2.3)
152
+ rspec-rails (~> 2.3)
153
+ sham_rack
154
+ sqlite3-ruby
155
+ webrat
156
+
157
+ RUBY VERSION
158
+ ruby 2.1.10p492
159
+
160
+ BUNDLED WITH
161
+ 1.12.5