simple_user 0.1.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (205) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +35 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/javascripts/simple_user/application.js +15 -0
  6. data/app/assets/javascripts/simple_user/facebook_connect.js.erb +33 -0
  7. data/app/assets/stylesheets/simple_user/application.css +13 -0
  8. data/app/controllers/simple_user/admin_users/registrations_controller.rb +7 -0
  9. data/app/controllers/simple_user/admin_users/sessions_controller.rb +20 -0
  10. data/app/controllers/simple_user/admin_users_controller.rb +134 -0
  11. data/app/controllers/simple_user/application_controller.rb +7 -0
  12. data/app/controllers/simple_user/auth_controller.rb +26 -0
  13. data/app/controllers/simple_user/users/registrations_controller.rb +5 -0
  14. data/app/controllers/simple_user/users/sessions_controller.rb +41 -0
  15. data/app/controllers/simple_user/users_controller.rb +88 -0
  16. data/app/helpers/simple_user/application_helper.rb +13 -0
  17. data/app/helpers/simple_user/links_helper.rb +9 -0
  18. data/app/models/ability.rb +25 -0
  19. data/app/models/role.rb +18 -0
  20. data/app/models/simple_user/admin_user.rb +48 -0
  21. data/app/models/simple_user/authentication.rb +9 -0
  22. data/app/models/simple_user/user.rb +92 -0
  23. data/app/views/layouts/simple_user/application.html.erb +28 -0
  24. data/app/views/simple_user/admin_users/_form.html.erb +15 -0
  25. data/app/views/simple_user/admin_users/confirmations/new.html.erb +16 -0
  26. data/app/views/simple_user/admin_users/edit.html.erb +6 -0
  27. data/app/views/simple_user/admin_users/index.html.erb +27 -0
  28. data/app/views/simple_user/admin_users/mailer/confirmation_instructions.html.erb +5 -0
  29. data/app/views/simple_user/admin_users/mailer/reset_password_instructions.html.erb +8 -0
  30. data/app/views/simple_user/admin_users/mailer/unlock_instructions.html.erb +7 -0
  31. data/app/views/simple_user/admin_users/new.html.erb +5 -0
  32. data/app/views/simple_user/admin_users/passwords/edit.html.erb +19 -0
  33. data/app/views/simple_user/admin_users/passwords/new.html.erb +15 -0
  34. data/app/views/simple_user/admin_users/registrations/edit.html.erb +28 -0
  35. data/app/views/simple_user/admin_users/registrations/new.html.erb +18 -0
  36. data/app/views/simple_user/admin_users/sessions/new.html.erb +15 -0
  37. data/app/views/simple_user/admin_users/shared/_links.erb +25 -0
  38. data/app/views/simple_user/admin_users/show.html.erb +15 -0
  39. data/app/views/simple_user/admin_users/unlocks/new.html.erb +16 -0
  40. data/app/views/simple_user/application/_menu_admin_users.html.erb +15 -0
  41. data/app/views/simple_user/application/_menu_users.html.erb +9 -0
  42. data/app/views/simple_user/users/_form.html.erb +14 -0
  43. data/app/views/simple_user/users/confirmations/new.html.erb +16 -0
  44. data/app/views/simple_user/users/edit.html.erb +6 -0
  45. data/app/views/simple_user/users/index.html.erb +31 -0
  46. data/app/views/simple_user/users/mailer/confirmation_instructions.html.erb +5 -0
  47. data/app/views/simple_user/users/mailer/reset_password_instructions.html.erb +8 -0
  48. data/app/views/simple_user/users/mailer/unlock_instructions.html.erb +7 -0
  49. data/app/views/simple_user/users/new.html.erb +5 -0
  50. data/app/views/simple_user/users/passwords/edit.html.erb +19 -0
  51. data/app/views/simple_user/users/passwords/new.html.erb +15 -0
  52. data/app/views/simple_user/users/registrations/edit.html.erb +30 -0
  53. data/app/views/simple_user/users/registrations/new.html.erb +20 -0
  54. data/app/views/simple_user/users/sessions/new.html.erb +15 -0
  55. data/app/views/simple_user/users/shared/_links.erb +25 -0
  56. data/app/views/simple_user/users/show.html.erb +25 -0
  57. data/app/views/simple_user/users/unlocks/new.html.erb +16 -0
  58. data/config/initializers/devise.rb +243 -0
  59. data/config/initializers/omniauth.rb +7 -0
  60. data/config/initializers/rolify.rb +8 -0
  61. data/config/locales/devise.en.yml +59 -0
  62. data/config/routes.rb +39 -0
  63. data/db/migrate/20130312215459_devise_create_simple_user_users.rb +50 -0
  64. data/db/migrate/20130312215519_devise_create_simple_user_admin_users.rb +48 -0
  65. data/db/migrate/20130312215950_create_simple_user_authentications.rb +13 -0
  66. data/db/migrate/20130312226960_rolify_create_roles.rb +19 -0
  67. data/db/seed.rb +9 -0
  68. data/lib/generators/simple_user/generate_views/generate_views_generator.rb +12 -0
  69. data/lib/generators/simple_user/install/install_generator.rb +20 -0
  70. data/lib/generators/simple_user/install/templates/devise_config.yml +1 -0
  71. data/lib/generators/simple_user/install/templates/fb_config.yml +3 -0
  72. data/lib/generators/simple_user/install/templates/simple_user.yml +3 -0
  73. data/lib/simple_user.rb +4 -0
  74. data/lib/simple_user/engine.rb +48 -0
  75. data/lib/simple_user/version.rb +3 -0
  76. data/lib/tasks/simple_user_tasks.rake +16 -0
  77. data/test/dummy/README.rdoc +261 -0
  78. data/test/dummy/Rakefile +7 -0
  79. data/test/dummy/app/assets/javascripts/application.js +16 -0
  80. data/test/dummy/app/assets/javascripts/welcome.js +2 -0
  81. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  82. data/test/dummy/app/assets/stylesheets/welcome.css +4 -0
  83. data/test/dummy/app/controllers/application_controller.rb +31 -0
  84. data/test/dummy/app/controllers/welcome_controller.rb +4 -0
  85. data/test/dummy/app/helpers/application_helper.rb +2 -0
  86. data/test/dummy/app/helpers/welcome_helper.rb +2 -0
  87. data/test/dummy/app/views/admin_users/_form.html.erb +15 -0
  88. data/test/dummy/app/views/admin_users/confirmations/new.html.erb +16 -0
  89. data/test/dummy/app/views/admin_users/edit.html.erb +6 -0
  90. data/test/dummy/app/views/admin_users/index.html.erb +27 -0
  91. data/test/dummy/app/views/admin_users/mailer/confirmation_instructions.html.erb +5 -0
  92. data/test/dummy/app/views/admin_users/mailer/reset_password_instructions.html.erb +8 -0
  93. data/test/dummy/app/views/admin_users/mailer/unlock_instructions.html.erb +7 -0
  94. data/test/dummy/app/views/admin_users/new.html.erb +5 -0
  95. data/test/dummy/app/views/admin_users/passwords/edit.html.erb +19 -0
  96. data/test/dummy/app/views/admin_users/passwords/new.html.erb +15 -0
  97. data/test/dummy/app/views/admin_users/registrations/edit.html.erb +28 -0
  98. data/test/dummy/app/views/admin_users/registrations/new.html.erb +18 -0
  99. data/test/dummy/app/views/admin_users/sessions/new.html.erb +15 -0
  100. data/test/dummy/app/views/admin_users/shared/_links.erb +25 -0
  101. data/test/dummy/app/views/admin_users/show.html.erb +15 -0
  102. data/test/dummy/app/views/admin_users/unlocks/new.html.erb +16 -0
  103. data/test/dummy/app/views/application/_menu_admin_users.html.erb +15 -0
  104. data/test/dummy/app/views/application/_menu_users.html.erb +9 -0
  105. data/test/dummy/app/views/layouts/application.html.erb +28 -0
  106. data/test/dummy/app/views/simple_user/admin_users/_form.html.erb +15 -0
  107. data/test/dummy/app/views/simple_user/admin_users/confirmations/new.html.erb +16 -0
  108. data/test/dummy/app/views/simple_user/admin_users/edit.html.erb +6 -0
  109. data/test/dummy/app/views/simple_user/admin_users/index.html.erb +27 -0
  110. data/test/dummy/app/views/simple_user/admin_users/mailer/confirmation_instructions.html.erb +5 -0
  111. data/test/dummy/app/views/simple_user/admin_users/mailer/reset_password_instructions.html.erb +8 -0
  112. data/test/dummy/app/views/simple_user/admin_users/mailer/unlock_instructions.html.erb +7 -0
  113. data/test/dummy/app/views/simple_user/admin_users/new.html.erb +5 -0
  114. data/test/dummy/app/views/simple_user/admin_users/passwords/edit.html.erb +19 -0
  115. data/test/dummy/app/views/simple_user/admin_users/passwords/new.html.erb +15 -0
  116. data/test/dummy/app/views/simple_user/admin_users/registrations/edit.html.erb +28 -0
  117. data/test/dummy/app/views/simple_user/admin_users/registrations/new.html.erb +18 -0
  118. data/test/dummy/app/views/simple_user/admin_users/sessions/new.html.erb +15 -0
  119. data/test/dummy/app/views/simple_user/admin_users/shared/_links.erb +25 -0
  120. data/test/dummy/app/views/simple_user/admin_users/show.html.erb +15 -0
  121. data/test/dummy/app/views/simple_user/admin_users/unlocks/new.html.erb +16 -0
  122. data/test/dummy/app/views/simple_user/application/_menu_admin_users.html.erb +15 -0
  123. data/test/dummy/app/views/simple_user/application/_menu_users.html.erb +9 -0
  124. data/test/dummy/app/views/simple_user/users/_form.html.erb +14 -0
  125. data/test/dummy/app/views/simple_user/users/confirmations/new.html.erb +16 -0
  126. data/test/dummy/app/views/simple_user/users/edit.html.erb +6 -0
  127. data/test/dummy/app/views/simple_user/users/index.html.erb +31 -0
  128. data/test/dummy/app/views/simple_user/users/mailer/confirmation_instructions.html.erb +5 -0
  129. data/test/dummy/app/views/simple_user/users/mailer/reset_password_instructions.html.erb +8 -0
  130. data/test/dummy/app/views/simple_user/users/mailer/unlock_instructions.html.erb +7 -0
  131. data/test/dummy/app/views/simple_user/users/new.html.erb +5 -0
  132. data/test/dummy/app/views/simple_user/users/passwords/edit.html.erb +19 -0
  133. data/test/dummy/app/views/simple_user/users/passwords/new.html.erb +15 -0
  134. data/test/dummy/app/views/simple_user/users/registrations/edit.html.erb +30 -0
  135. data/test/dummy/app/views/simple_user/users/registrations/new.html.erb +20 -0
  136. data/test/dummy/app/views/simple_user/users/sessions/new.html.erb +15 -0
  137. data/test/dummy/app/views/simple_user/users/shared/_links.erb +25 -0
  138. data/test/dummy/app/views/simple_user/users/show.html.erb +25 -0
  139. data/test/dummy/app/views/simple_user/users/unlocks/new.html.erb +16 -0
  140. data/test/dummy/app/views/welcome/index.html.erb +3 -0
  141. data/test/dummy/config.ru +4 -0
  142. data/test/dummy/config/application.rb +59 -0
  143. data/test/dummy/config/boot.rb +10 -0
  144. data/test/dummy/config/database.yml +25 -0
  145. data/test/dummy/config/devise_config.yml +1 -0
  146. data/test/dummy/config/environment.rb +5 -0
  147. data/test/dummy/config/environments/development.rb +37 -0
  148. data/test/dummy/config/environments/production.rb +67 -0
  149. data/test/dummy/config/environments/test.rb +37 -0
  150. data/test/dummy/config/fb_config.yml +3 -0
  151. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  152. data/test/dummy/config/initializers/inflections.rb +15 -0
  153. data/test/dummy/config/initializers/mime_types.rb +5 -0
  154. data/test/dummy/config/initializers/secret_token.rb +7 -0
  155. data/test/dummy/config/initializers/session_store.rb +8 -0
  156. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  157. data/test/dummy/config/locales/en.yml +5 -0
  158. data/test/dummy/config/routes.rb +7 -0
  159. data/test/dummy/db/development.sqlite3 +0 -0
  160. data/test/dummy/db/migrate/20130314021609_devise_create_simple_user_users.simple_user.rb +51 -0
  161. data/test/dummy/db/migrate/20130314021610_devise_create_simple_user_admin_users.simple_user.rb +49 -0
  162. data/test/dummy/db/migrate/20130314021611_create_simple_user_authentications.simple_user.rb +14 -0
  163. data/test/dummy/db/migrate/20130314021612_rolify_create_simple_user_roles.simple_user.rb +20 -0
  164. data/test/dummy/db/migrate/20130314222446_devise_create_simple_user_users.simple_user.rb +51 -0
  165. data/test/dummy/db/migrate/20130314222447_devise_create_simple_user_admin_users.simple_user.rb +49 -0
  166. data/test/dummy/db/migrate/20130314222448_create_simple_user_authentications.simple_user.rb +14 -0
  167. data/test/dummy/db/migrate/20130314222449_rolify_create_roles.simple_user.rb +20 -0
  168. data/test/dummy/db/schema.rb +87 -0
  169. data/test/dummy/log/development.log +100 -0
  170. data/test/dummy/public/404.html +26 -0
  171. data/test/dummy/public/422.html +26 -0
  172. data/test/dummy/public/500.html +25 -0
  173. data/test/dummy/public/favicon.ico +0 -0
  174. data/test/dummy/script/rails +6 -0
  175. data/test/dummy/test/functional/welcome_controller_test.rb +9 -0
  176. data/test/dummy/test/unit/helpers/welcome_helper_test.rb +4 -0
  177. data/test/dummy/tmp/cache/assets/C43/6A0/sprockets%2F9112a8a5c58f114023075f00ab994366 +0 -0
  178. data/test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c +0 -0
  179. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  180. data/test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc +0 -0
  181. data/test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae +0 -0
  182. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  183. data/test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274 +0 -0
  184. data/test/dummy/tmp/cache/assets/D43/A50/sprockets%2Fa41b368b71464f0a4feb19b6f875e44e +0 -0
  185. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  186. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  187. data/test/dummy/tmp/cache/assets/D92/950/sprockets%2Fcda629d2e4e4583027facd41bf1ea406 +0 -0
  188. data/test/dummy/tmp/cache/assets/DA0/140/sprockets%2F25f485eb0a9f28b68e69ab1c0f57c0da +0 -0
  189. data/test/dummy/tmp/cache/assets/DCF/BD0/sprockets%2Fc8b53c6aae12e5a5be5fe8db5472a793 +0 -0
  190. data/test/dummy/tmp/cache/assets/DD2/810/sprockets%2Fdc8aca3689d6b6e14aa38b7c88a46bc3 +0 -0
  191. data/test/dummy/tmp/cache/assets/DD8/CE0/sprockets%2F5de7f141c1d9dc26ce8af1ad6246d99f +0 -0
  192. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  193. data/test/dummy/tmp/cache/assets/E02/930/sprockets%2Fec83bf6c33e43fb6a5cf38a52df8c60e +0 -0
  194. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  195. data/test/dummy/tmp/cache/assets/E2A/CE0/sprockets%2F17bd5e2fd8a5fd2d834c9dadfd102c2f +0 -0
  196. data/test/fixtures/simple_user/admin_users.yml +11 -0
  197. data/test/fixtures/simple_user/authentications.yml +13 -0
  198. data/test/fixtures/simple_user/users.yml +11 -0
  199. data/test/integration/navigation_test.rb +10 -0
  200. data/test/simple_user_test.rb +7 -0
  201. data/test/test_helper.rb +15 -0
  202. data/test/unit/simple_user/admin_user_test.rb +9 -0
  203. data/test/unit/simple_user/authentication_test.rb +9 -0
  204. data/test/unit/simple_user/user_test.rb +9 -0
  205. metadata +516 -0
@@ -0,0 +1,49 @@
1
+ # This migration comes from simple_user (originally 20130312215519)
2
+ class DeviseCreateSimpleUserAdminUsers < ActiveRecord::Migration
3
+ def change
4
+ create_table(:simple_user_admin_users) do |t|
5
+ ## Database authenticatable
6
+ t.string :email, :null => false, :default => ""
7
+ t.string :encrypted_password, :null => false, :default => ""
8
+
9
+ ## Recoverable
10
+ t.string :reset_password_token
11
+ t.datetime :reset_password_sent_at
12
+
13
+ ## Rememberable
14
+ t.datetime :remember_created_at
15
+
16
+ ## Trackable
17
+ t.integer :sign_in_count, :default => 0
18
+ t.datetime :current_sign_in_at
19
+ t.datetime :last_sign_in_at
20
+ t.string :current_sign_in_ip
21
+ t.string :last_sign_in_ip
22
+
23
+ ## Confirmable
24
+ # t.string :confirmation_token
25
+ # t.datetime :confirmed_at
26
+ # t.datetime :confirmation_sent_at
27
+ # t.string :unconfirmed_email # Only if using reconfirmable
28
+
29
+ ## Lockable
30
+ # t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
31
+ # t.string :unlock_token # Only if unlock strategy is :email or :both
32
+ # t.datetime :locked_at
33
+
34
+ ## Token authenticatable
35
+ # t.string :authentication_token
36
+
37
+ t.string :username
38
+ t.boolean :active, :default => true
39
+
40
+ t.timestamps
41
+ end
42
+
43
+ add_index :simple_user_admin_users, :email, :unique => true
44
+ add_index :simple_user_admin_users, :reset_password_token, :unique => true
45
+ # add_index :simple_user_admin_users, :confirmation_token, :unique => true
46
+ # add_index :simple_user_admin_users, :unlock_token, :unique => true
47
+ # add_index :simple_user_admin_users, :authentication_token, :unique => true
48
+ end
49
+ end
@@ -0,0 +1,14 @@
1
+ # This migration comes from simple_user (originally 20130312215950)
2
+ class CreateSimpleUserAuthentications < ActiveRecord::Migration
3
+ def change
4
+ create_table :simple_user_authentications do |t|
5
+ t.string :provider
6
+ t.string :token
7
+ t.string :uid
8
+ t.references :user
9
+
10
+ t.timestamps
11
+ end
12
+ add_index :simple_user_authentications, :user_id
13
+ end
14
+ end
@@ -0,0 +1,20 @@
1
+ # This migration comes from simple_user (originally 20130312226960)
2
+ class RolifyCreateSimpleUserRoles < ActiveRecord::Migration
3
+ def change
4
+ create_table(:simple_user_roles) do |t|
5
+ t.string :name
6
+ t.references :resource, :polymorphic => true
7
+
8
+ t.timestamps
9
+ end
10
+
11
+ create_table(:simple_user_users_roles, :id => false) do |t|
12
+ t.references :simple_user_admin_user
13
+ t.references :simple_user_role
14
+ end
15
+
16
+ add_index(:simple_user_roles, :name)
17
+ add_index(:simple_user_roles, [ :name, :resource_type, :resource_id ], :name => "simple_users_r_n_rt_rid")
18
+ add_index(:simple_user_users_roles, [ :simple_user_admin_user_id, :simple_user_role_id ], :name => "simple_users_ur_i_auid_urid")
19
+ end
20
+ end
@@ -0,0 +1,51 @@
1
+ # This migration comes from simple_user (originally 20130312215459)
2
+ class DeviseCreateSimpleUserUsers < ActiveRecord::Migration
3
+ def change
4
+ create_table(:simple_user_users) do |t|
5
+ ## Database authenticatable
6
+ t.string :email, :null => false, :default => ""
7
+ t.string :encrypted_password, :null => false, :default => ""
8
+
9
+ ## Recoverable
10
+ t.string :reset_password_token
11
+ t.datetime :reset_password_sent_at
12
+
13
+ ## Rememberable
14
+ t.datetime :remember_created_at
15
+
16
+ ## Trackable
17
+ t.integer :sign_in_count, :default => 0
18
+ t.datetime :current_sign_in_at
19
+ t.datetime :last_sign_in_at
20
+ t.string :current_sign_in_ip
21
+ t.string :last_sign_in_ip
22
+
23
+ ## Confirmable
24
+ # t.string :confirmation_token
25
+ # t.datetime :confirmed_at
26
+ # t.datetime :confirmation_sent_at
27
+ # t.string :unconfirmed_email # Only if using reconfirmable
28
+
29
+ ## Lockable
30
+ # t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
31
+ # t.string :unlock_token # Only if unlock strategy is :email or :both
32
+ # t.datetime :locked_at
33
+
34
+ ## Token authenticatable
35
+ # t.string :authentication_token
36
+
37
+ t.string :first_name
38
+ t.string :last_name
39
+ t.string :username
40
+ t.boolean :active, :default => true
41
+
42
+ t.timestamps
43
+ end
44
+
45
+ add_index :simple_user_users, :email, :unique => true
46
+ add_index :simple_user_users, :reset_password_token, :unique => true
47
+ # add_index :simple_user_users, :confirmation_token, :unique => true
48
+ # add_index :simple_user_users, :unlock_token, :unique => true
49
+ # add_index :simple_user_users, :authentication_token, :unique => true
50
+ end
51
+ end
@@ -0,0 +1,49 @@
1
+ # This migration comes from simple_user (originally 20130312215519)
2
+ class DeviseCreateSimpleUserAdminUsers < ActiveRecord::Migration
3
+ def change
4
+ create_table(:simple_user_admin_users) do |t|
5
+ ## Database authenticatable
6
+ t.string :email, :null => false, :default => ""
7
+ t.string :encrypted_password, :null => false, :default => ""
8
+
9
+ ## Recoverable
10
+ t.string :reset_password_token
11
+ t.datetime :reset_password_sent_at
12
+
13
+ ## Rememberable
14
+ t.datetime :remember_created_at
15
+
16
+ ## Trackable
17
+ t.integer :sign_in_count, :default => 0
18
+ t.datetime :current_sign_in_at
19
+ t.datetime :last_sign_in_at
20
+ t.string :current_sign_in_ip
21
+ t.string :last_sign_in_ip
22
+
23
+ ## Confirmable
24
+ # t.string :confirmation_token
25
+ # t.datetime :confirmed_at
26
+ # t.datetime :confirmation_sent_at
27
+ # t.string :unconfirmed_email # Only if using reconfirmable
28
+
29
+ ## Lockable
30
+ # t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
31
+ # t.string :unlock_token # Only if unlock strategy is :email or :both
32
+ # t.datetime :locked_at
33
+
34
+ ## Token authenticatable
35
+ # t.string :authentication_token
36
+
37
+ t.string :username
38
+ t.boolean :active, :default => true
39
+
40
+ t.timestamps
41
+ end
42
+
43
+ add_index :simple_user_admin_users, :email, :unique => true
44
+ add_index :simple_user_admin_users, :reset_password_token, :unique => true
45
+ # add_index :simple_user_admin_users, :confirmation_token, :unique => true
46
+ # add_index :simple_user_admin_users, :unlock_token, :unique => true
47
+ # add_index :simple_user_admin_users, :authentication_token, :unique => true
48
+ end
49
+ end
@@ -0,0 +1,14 @@
1
+ # This migration comes from simple_user (originally 20130312215950)
2
+ class CreateSimpleUserAuthentications < ActiveRecord::Migration
3
+ def change
4
+ create_table :simple_user_authentications do |t|
5
+ t.string :provider
6
+ t.string :token
7
+ t.string :uid
8
+ t.references :user
9
+
10
+ t.timestamps
11
+ end
12
+ add_index :simple_user_authentications, :user_id
13
+ end
14
+ end
@@ -0,0 +1,20 @@
1
+ # This migration comes from simple_user (originally 20130312226960)
2
+ class RolifyCreateRoles < ActiveRecord::Migration
3
+ def change
4
+ create_table(:roles) do |t|
5
+ t.string :name
6
+ t.references :resource, :polymorphic => true
7
+
8
+ t.timestamps
9
+ end
10
+
11
+ create_table(:users_roles, :id => false) do |t|
12
+ t.references :simple_user_admin_user
13
+ t.references :role
14
+ end
15
+
16
+ add_index(:roles, :name)
17
+ add_index(:roles, [ :name, :resource_type, :resource_id ], :name => "roles_n_rt_rid")
18
+ add_index(:users_roles, [ :simple_user_admin_user_id, :role_id ], :name => "user_role_i_auid_urid")
19
+ end
20
+ end
@@ -0,0 +1,87 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20130314021612) do
15
+
16
+ create_table "simple_user_admin_users", :force => true do |t|
17
+ t.string "email", :default => "", :null => false
18
+ t.string "encrypted_password", :default => "", :null => false
19
+ t.string "reset_password_token"
20
+ t.datetime "reset_password_sent_at"
21
+ t.datetime "remember_created_at"
22
+ t.integer "sign_in_count", :default => 0
23
+ t.datetime "current_sign_in_at"
24
+ t.datetime "last_sign_in_at"
25
+ t.string "current_sign_in_ip"
26
+ t.string "last_sign_in_ip"
27
+ t.string "username"
28
+ t.boolean "active", :default => true
29
+ t.datetime "created_at", :null => false
30
+ t.datetime "updated_at", :null => false
31
+ end
32
+
33
+ add_index "simple_user_admin_users", ["email"], :name => "index_simple_user_admin_users_on_email", :unique => true
34
+ add_index "simple_user_admin_users", ["reset_password_token"], :name => "index_simple_user_admin_users_on_reset_password_token", :unique => true
35
+
36
+ create_table "simple_user_authentications", :force => true do |t|
37
+ t.string "provider"
38
+ t.string "token"
39
+ t.string "uid"
40
+ t.integer "user_id"
41
+ t.datetime "created_at", :null => false
42
+ t.datetime "updated_at", :null => false
43
+ end
44
+
45
+ add_index "simple_user_authentications", ["user_id"], :name => "index_simple_user_authentications_on_user_id"
46
+
47
+ create_table "simple_user_roles", :force => true do |t|
48
+ t.string "name"
49
+ t.integer "resource_id"
50
+ t.string "resource_type"
51
+ t.datetime "created_at", :null => false
52
+ t.datetime "updated_at", :null => false
53
+ end
54
+
55
+ add_index "simple_user_roles", ["name", "resource_type", "resource_id"], :name => "simple_users_r_n_rt_rid"
56
+ add_index "simple_user_roles", ["name"], :name => "index_simple_user_roles_on_name"
57
+
58
+ create_table "simple_user_users", :force => true do |t|
59
+ t.string "email", :default => "", :null => false
60
+ t.string "encrypted_password", :default => "", :null => false
61
+ t.string "reset_password_token"
62
+ t.datetime "reset_password_sent_at"
63
+ t.datetime "remember_created_at"
64
+ t.integer "sign_in_count", :default => 0
65
+ t.datetime "current_sign_in_at"
66
+ t.datetime "last_sign_in_at"
67
+ t.string "current_sign_in_ip"
68
+ t.string "last_sign_in_ip"
69
+ t.string "first_name"
70
+ t.string "last_name"
71
+ t.string "username"
72
+ t.boolean "active", :default => true
73
+ t.datetime "created_at", :null => false
74
+ t.datetime "updated_at", :null => false
75
+ end
76
+
77
+ add_index "simple_user_users", ["email"], :name => "index_simple_user_users_on_email", :unique => true
78
+ add_index "simple_user_users", ["reset_password_token"], :name => "index_simple_user_users_on_reset_password_token", :unique => true
79
+
80
+ create_table "simple_user_users_roles", :id => false, :force => true do |t|
81
+ t.integer "simple_user_admin_user_id"
82
+ t.integer "simple_user_role_id"
83
+ end
84
+
85
+ add_index "simple_user_users_roles", ["simple_user_admin_user_id", "simple_user_role_id"], :name => "simple_users_ur_i_auid_urid"
86
+
87
+ end
@@ -0,0 +1,100 @@
1
+ Connecting to database specified by database.yml
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2013-03-13 20:13:39 -0600
5
+ Processing by WelcomeController#index as HTML
6
+ Rendered welcome/index.html.erb within layouts/application (86.0ms)
7
+ Compiled welcome.css (1ms) (pid 3768)
8
+ Compiled application.css (35ms) (pid 3768)
9
+ Compiled jquery.js (8ms) (pid 3768)
10
+ Compiled jquery_ujs.js (1ms) (pid 3768)
11
+ Compiled simple_user/facebook_connect.js (4ms) (pid 3768)
12
+ Compiled simple_user/application.js (40ms) (pid 3768)
13
+ Compiled welcome.js (1ms) (pid 3768)
14
+ Compiled application.js (452ms) (pid 3768)
15
+ Rendered application/_menu_users.html.erb (4.5ms)
16
+ Rendered application/_menu_admin_users.html.erb (5.0ms)
17
+ Completed 200 OK in 939ms (Views: 937.2ms | ActiveRecord: 0.0ms)
18
+
19
+
20
+ Started GET "/assets/simple_user/facebook_connect.js?body=1" for 127.0.0.1 at 2013-03-13 20:13:41 -0600
21
+ Served asset /simple_user/facebook_connect.js - 200 OK (13ms)
22
+
23
+
24
+ Started GET "/assets/simple_user/application.js?body=1" for 127.0.0.1 at 2013-03-13 20:13:41 -0600
25
+ Served asset /simple_user/application.js - 200 OK (29ms)
26
+
27
+
28
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2013-03-13 20:13:41 -0600
29
+ Served asset /welcome.css - 200 OK (16ms)
30
+
31
+
32
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 20:13:41 -0600
33
+ Served asset /application.css - 304 Not Modified (10ms)
34
+
35
+
36
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 20:13:41 -0600
37
+ Served asset /jquery.js - 304 Not Modified (8ms)
38
+
39
+
40
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-03-13 20:13:41 -0600
41
+ Served asset /welcome.js - 200 OK (84ms)
42
+
43
+
44
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 20:13:41 -0600
45
+ Served asset /application.js - 200 OK (39ms)
46
+
47
+
48
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 20:13:42 -0600
49
+ Served asset /jquery_ujs.js - 304 Not Modified (6ms)
50
+ Connecting to database specified by database.yml
51
+ Connecting to database specified by database.yml
52
+  (12.8ms) select sqlite_version(*)
53
+  (13.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
54
+  (6.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
55
+  (23.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
56
+ Migrating to DeviseCreateSimpleUserUsers (20130314021609)
57
+  (0.5ms) begin transaction
58
+  (2.2ms) CREATE TABLE "simple_user_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "username" varchar(255), "active" boolean DEFAULT 't', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
59
+  (1.3ms) CREATE UNIQUE INDEX "index_simple_user_users_on_email" ON "simple_user_users" ("email")
60
+  (0.7ms) CREATE UNIQUE INDEX "index_simple_user_users_on_reset_password_token" ON "simple_user_users" ("reset_password_token")
61
+  (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130314021609')
62
+  (6.6ms) commit transaction
63
+ Migrating to DeviseCreateSimpleUserAdminUsers (20130314021610)
64
+  (0.2ms) begin transaction
65
+  (2.2ms) CREATE TABLE "simple_user_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "username" varchar(255), "active" boolean DEFAULT 't', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
66
+  (1.6ms) CREATE UNIQUE INDEX "index_simple_user_admin_users_on_email" ON "simple_user_admin_users" ("email")
67
+  (0.7ms) CREATE UNIQUE INDEX "index_simple_user_admin_users_on_reset_password_token" ON "simple_user_admin_users" ("reset_password_token")
68
+  (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130314021610')
69
+  (10.2ms) commit transaction
70
+ Migrating to CreateSimpleUserAuthentications (20130314021611)
71
+  (0.2ms) begin transaction
72
+  (1.9ms) CREATE TABLE "simple_user_authentications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar(255), "token" varchar(255), "uid" varchar(255), "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
73
+  (0.6ms) CREATE INDEX "index_simple_user_authentications_on_user_id" ON "simple_user_authentications" ("user_id")
74
+  (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130314021611')
75
+  (5.3ms) commit transaction
76
+ Migrating to RolifyCreateSimpleUserRoles (20130314021612)
77
+  (0.2ms) begin transaction
78
+  (2.7ms) CREATE TABLE "simple_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "resource_id" integer, "resource_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
79
+  (7.1ms) CREATE TABLE "simple_user_users_roles" ("simple_user_admin_user_id" integer, "simple_user_role_id" integer)
80
+  (0.6ms) CREATE INDEX "index_simple_user_roles_on_name" ON "simple_user_roles" ("name")
81
+  (0.7ms) CREATE INDEX "simple_users_r_n_rt_rid" ON "simple_user_roles" ("name", "resource_type", "resource_id")
82
+  (4.9ms) CREATE INDEX "simple_users_ur_i_auid_urid" ON "simple_user_users_roles" ("simple_user_admin_user_id", "simple_user_role_id")
83
+  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130314021612')
84
+  (31.5ms) commit transaction
85
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
86
+ Connecting to database specified by database.yml
87
+  (0.2ms) begin transaction
88
+ SimpleUser::AdminUser Exists (6.5ms) SELECT 1 AS one FROM "simple_user_admin_users" WHERE "simple_user_admin_users"."email" = 'admin@example.com' LIMIT 1
89
+ SimpleUser::AdminUser Exists (0.3ms) SELECT 1 AS one FROM "simple_user_admin_users" WHERE "simple_user_admin_users"."email" = 'admin@example.com' LIMIT 1
90
+ SimpleUser::AdminUser Exists (0.4ms) SELECT 1 AS one FROM "simple_user_admin_users" WHERE "simple_user_admin_users"."username" = 'admin' LIMIT 1
91
+ Binary data inserted for `string` type on column `encrypted_password`
92
+ SQL (6.7ms) INSERT INTO "simple_user_admin_users" ("active", "created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["active", true], ["created_at", Thu, 14 Mar 2013 02:17:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$OSw1HjBt2VP2iskOS2JwQOaQTGBgmm9vgnswiHbt7XyDiDPOPILCu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Thu, 14 Mar 2013 02:17:47 UTC +00:00], ["username", "admin"]]
93
+  (6.2ms) commit transaction
94
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Role> at /home/pablomarti89/Projects/RailsApps/3212/simple_user/app/models/role.rb:3)
95
+ Role Load (0.6ms) SELECT "simple_user_roles".* FROM "simple_user_roles" WHERE "simple_user_roles"."name" = 'admin' AND "simple_user_roles"."resource_type" IS NULL AND "simple_user_roles"."resource_id" IS NULL LIMIT 1
96
+  (0.2ms) begin transaction
97
+ SQL (1.6ms) INSERT INTO "simple_user_roles" ("created_at", "name", "resource_id", "resource_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 14 Mar 2013 02:17:47 UTC +00:00], ["name", "admin"], ["resource_id", nil], ["resource_type", nil], ["updated_at", Thu, 14 Mar 2013 02:17:47 UTC +00:00]]
98
+  (3.6ms) commit transaction
99
+  (0.6ms) SELECT "simple_user_roles".id FROM "simple_user_roles" INNER JOIN "simple_user/admin_users_roles" ON "simple_user_roles"."id" = "simple_user/admin_users_roles"."role_id" WHERE "simple_user/admin_users_roles"."admin_user_id" = 1
100
+ SQLite3::SQLException: no such table: simple_user/admin_users_roles: SELECT "simple_user_roles".id FROM "simple_user_roles" INNER JOIN "simple_user/admin_users_roles" ON "simple_user_roles"."id" = "simple_user/admin_users_roles"."role_id" WHERE "simple_user/admin_users_roles"."admin_user_id" = 1
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>