clearance 0.10.1 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of clearance might be problematic. Click here for more details.

Files changed (262) hide show
  1. data/CHANGELOG.md +9 -0
  2. data/Gemfile +21 -0
  3. data/Gemfile.lock +171 -0
  4. data/README.md +18 -30
  5. data/Rakefile +14 -123
  6. data/VERSION +1 -1
  7. data/{spec/rails_root/app → app}/views/layouts/application.html.erb +0 -2
  8. data/app/views/passwords/edit.html.erb +3 -4
  9. data/app/views/passwords/new.html.erb +2 -2
  10. data/{lib/rails/generators/clearance_views_templates/formtastic/erb → app/views}/users/_inputs.html.erb +0 -0
  11. data/lib/clearance/user.rb +11 -9
  12. data/lib/generators/clearance/features/features_generator.rb +18 -0
  13. data/lib/generators/clearance/install/install_generator.rb +46 -0
  14. data/lib/generators/clearance/install/templates/README +22 -0
  15. data/lib/{rails/generators/clearance_templates → generators/clearance/install/templates}/clearance.rb +0 -0
  16. data/lib/{rails/generators/clearance_templates/migrations/update_users.rb → generators/clearance/install/templates/db/migrate/upgrade_clearance_to_diesel.rb} +1 -1
  17. data/lib/{rails/generators/clearance_templates → generators/clearance/install/templates}/user.rb +0 -0
  18. data/lib/generators/clearance/views/views_generator.rb +8 -0
  19. data/test/controllers/sessions_controller_test.rb +0 -2
  20. data/test/controllers/users_controller_test.rb +0 -2
  21. data/{lib/rails/generators/clearance_templates → test}/factories.rb +1 -1
  22. data/test/models/user_test.rb +23 -0
  23. data/test/test_helper.rb +18 -8
  24. metadata +38 -478
  25. data/lib/rails/generators/clearance_features_generator.rb +0 -20
  26. data/lib/rails/generators/clearance_features_templates/features/password_reset.feature +0 -40
  27. data/lib/rails/generators/clearance_features_templates/features/sign_in.feature +0 -28
  28. data/lib/rails/generators/clearance_features_templates/features/sign_out.feature +0 -16
  29. data/lib/rails/generators/clearance_features_templates/features/sign_up.feature +0 -21
  30. data/lib/rails/generators/clearance_features_templates/features/step_definitions/clearance_steps.rb +0 -109
  31. data/lib/rails/generators/clearance_generator.rb +0 -72
  32. data/lib/rails/generators/clearance_templates/README +0 -24
  33. data/lib/rails/generators/clearance_templates/migrations/create_users.rb +0 -19
  34. data/lib/rails/generators/clearance_views_generator.rb +0 -14
  35. data/lib/rails/generators/clearance_views_templates/formtastic/erb/passwords/edit.html.erb +0 -21
  36. data/lib/rails/generators/clearance_views_templates/formtastic/erb/passwords/new.html.erb +0 -15
  37. data/lib/rails/generators/clearance_views_templates/formtastic/erb/sessions/new.html.erb +0 -21
  38. data/lib/rails/generators/clearance_views_templates/formtastic/erb/users/new.html.erb +0 -10
  39. data/spec/rails_root/Gemfile +0 -17
  40. data/spec/rails_root/Gemfile.lock +0 -143
  41. data/spec/rails_root/README +0 -244
  42. data/spec/rails_root/Rakefile +0 -10
  43. data/spec/rails_root/app/controllers/accounts_controller.rb +0 -10
  44. data/spec/rails_root/app/controllers/application_controller.rb +0 -6
  45. data/spec/rails_root/app/helpers/application_helper.rb +0 -2
  46. data/spec/rails_root/app/models/user.rb +0 -3
  47. data/spec/rails_root/app/views/accounts/edit.html.erb +0 -0
  48. data/spec/rails_root/app/views/passwords/edit.html.erb +0 -21
  49. data/spec/rails_root/app/views/passwords/new.html.erb +0 -15
  50. data/spec/rails_root/app/views/sessions/new.html.erb +0 -21
  51. data/spec/rails_root/app/views/users/_inputs.html.erb +0 -6
  52. data/spec/rails_root/app/views/users/new.html.erb +0 -10
  53. data/spec/rails_root/config.ru +0 -4
  54. data/spec/rails_root/config/application.rb +0 -46
  55. data/spec/rails_root/config/boot.rb +0 -6
  56. data/spec/rails_root/config/cucumber.yml +0 -8
  57. data/spec/rails_root/config/database.yml +0 -25
  58. data/spec/rails_root/config/environment.rb +0 -7
  59. data/spec/rails_root/config/environments/development.rb +0 -21
  60. data/spec/rails_root/config/environments/production.rb +0 -42
  61. data/spec/rails_root/config/environments/test.rb +0 -34
  62. data/spec/rails_root/config/initializers/backtrace_silencers.rb +0 -7
  63. data/spec/rails_root/config/initializers/clearance.rb +0 -3
  64. data/spec/rails_root/config/initializers/inflections.rb +0 -10
  65. data/spec/rails_root/config/initializers/mime_types.rb +0 -5
  66. data/spec/rails_root/config/initializers/secret_token.rb +0 -7
  67. data/spec/rails_root/config/initializers/session_store.rb +0 -8
  68. data/spec/rails_root/config/locales/en.yml +0 -5
  69. data/spec/rails_root/config/routes.rb +0 -61
  70. data/spec/rails_root/db/development.sqlite3 +0 -0
  71. data/spec/rails_root/db/migrate/20110209234521_clearance_create_users.rb +0 -19
  72. data/spec/rails_root/db/schema.rb +0 -28
  73. data/spec/rails_root/db/test.sqlite3 +0 -0
  74. data/spec/rails_root/doc/README_FOR_APP +0 -2
  75. data/spec/rails_root/features/password_reset.feature +0 -40
  76. data/spec/rails_root/features/sign_in.feature +0 -28
  77. data/spec/rails_root/features/sign_out.feature +0 -16
  78. data/spec/rails_root/features/sign_up.feature +0 -21
  79. data/spec/rails_root/features/step_definitions/clearance_steps.rb +0 -109
  80. data/spec/rails_root/features/step_definitions/web_steps.rb +0 -219
  81. data/spec/rails_root/features/support/env.rb +0 -57
  82. data/spec/rails_root/features/support/paths.rb +0 -45
  83. data/spec/rails_root/lib/tasks/cucumber.rake +0 -53
  84. data/spec/rails_root/log/development.log +0 -536
  85. data/spec/rails_root/log/test.log +0 -7600
  86. data/spec/rails_root/public/404.html +0 -26
  87. data/spec/rails_root/public/422.html +0 -26
  88. data/spec/rails_root/public/500.html +0 -26
  89. data/spec/rails_root/public/favicon.ico +0 -0
  90. data/spec/rails_root/public/images/rails.png +0 -0
  91. data/spec/rails_root/public/javascripts/application.js +0 -2
  92. data/spec/rails_root/public/javascripts/controls.js +0 -965
  93. data/spec/rails_root/public/javascripts/dragdrop.js +0 -974
  94. data/spec/rails_root/public/javascripts/effects.js +0 -1123
  95. data/spec/rails_root/public/javascripts/prototype.js +0 -4874
  96. data/spec/rails_root/public/javascripts/rails.js +0 -118
  97. data/spec/rails_root/public/robots.txt +0 -5
  98. data/spec/rails_root/script/cucumber +0 -10
  99. data/spec/rails_root/script/rails +0 -9
  100. data/spec/rails_root/test/factories/clearance.rb +0 -13
  101. data/spec/rails_root/test/functional/accounts_controller_test.rb +0 -22
  102. data/spec/rails_root/test/performance/browsing_test.rb +0 -9
  103. data/spec/rails_root/test/test_helper.rb +0 -13
  104. data/spec/rails_root/vendor/Gemfile +0 -17
  105. data/spec/rails_root/vendor/Gemfile.lock +0 -143
  106. data/spec/rails_root/vendor/README +0 -244
  107. data/spec/rails_root/vendor/Rakefile +0 -10
  108. data/spec/rails_root/vendor/app/controllers/accounts_controller.rb +0 -10
  109. data/spec/rails_root/vendor/app/controllers/application_controller.rb +0 -6
  110. data/spec/rails_root/vendor/app/helpers/application_helper.rb +0 -2
  111. data/spec/rails_root/vendor/app/models/user.rb +0 -3
  112. data/spec/rails_root/vendor/app/views/accounts/edit.html.erb +0 -0
  113. data/spec/rails_root/vendor/app/views/layouts/application.html.erb +0 -24
  114. data/spec/rails_root/vendor/app/views/passwords/edit.html.erb +0 -21
  115. data/spec/rails_root/vendor/app/views/passwords/new.html.erb +0 -15
  116. data/spec/rails_root/vendor/app/views/sessions/new.html.erb +0 -21
  117. data/spec/rails_root/vendor/app/views/users/_inputs.html.erb +0 -6
  118. data/spec/rails_root/vendor/app/views/users/new.html.erb +0 -10
  119. data/spec/rails_root/vendor/config.ru +0 -4
  120. data/spec/rails_root/vendor/config/application.rb +0 -46
  121. data/spec/rails_root/vendor/config/boot.rb +0 -6
  122. data/spec/rails_root/vendor/config/cucumber.yml +0 -8
  123. data/spec/rails_root/vendor/config/database.yml +0 -25
  124. data/spec/rails_root/vendor/config/environment.rb +0 -7
  125. data/spec/rails_root/vendor/config/environments/development.rb +0 -21
  126. data/spec/rails_root/vendor/config/environments/production.rb +0 -42
  127. data/spec/rails_root/vendor/config/environments/test.rb +0 -34
  128. data/spec/rails_root/vendor/config/initializers/backtrace_silencers.rb +0 -7
  129. data/spec/rails_root/vendor/config/initializers/clearance.rb +0 -3
  130. data/spec/rails_root/vendor/config/initializers/inflections.rb +0 -10
  131. data/spec/rails_root/vendor/config/initializers/mime_types.rb +0 -5
  132. data/spec/rails_root/vendor/config/initializers/secret_token.rb +0 -7
  133. data/spec/rails_root/vendor/config/initializers/session_store.rb +0 -8
  134. data/spec/rails_root/vendor/config/locales/en.yml +0 -5
  135. data/spec/rails_root/vendor/config/routes.rb +0 -61
  136. data/spec/rails_root/vendor/db/development.sqlite3 +0 -0
  137. data/spec/rails_root/vendor/db/migrate/20101220184900_clearance_create_users.rb +0 -20
  138. data/spec/rails_root/vendor/db/schema.rb +0 -29
  139. data/spec/rails_root/vendor/db/test.sqlite3 +0 -0
  140. data/spec/rails_root/vendor/doc/README_FOR_APP +0 -2
  141. data/spec/rails_root/vendor/features/password_reset.feature +0 -33
  142. data/spec/rails_root/vendor/features/sign_in.feature +0 -35
  143. data/spec/rails_root/vendor/features/sign_out.feature +0 -15
  144. data/spec/rails_root/vendor/features/sign_up.feature +0 -45
  145. data/spec/rails_root/vendor/features/step_definitions/clearance_steps.rb +0 -138
  146. data/spec/rails_root/vendor/features/step_definitions/web_steps.rb +0 -219
  147. data/spec/rails_root/vendor/features/support/env.rb +0 -57
  148. data/spec/rails_root/vendor/features/support/paths.rb +0 -45
  149. data/spec/rails_root/vendor/lib/tasks/cucumber.rake +0 -53
  150. data/spec/rails_root/vendor/log/development.log +0 -663
  151. data/spec/rails_root/vendor/log/test.log +0 -22745
  152. data/spec/rails_root/vendor/plugins/dynamic_form/MIT-LICENSE +0 -20
  153. data/spec/rails_root/vendor/plugins/dynamic_form/README +0 -13
  154. data/spec/rails_root/vendor/plugins/dynamic_form/Rakefile +0 -10
  155. data/spec/rails_root/vendor/plugins/dynamic_form/init.rb +0 -5
  156. data/spec/rails_root/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb +0 -300
  157. data/spec/rails_root/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml +0 -8
  158. data/spec/rails_root/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb +0 -42
  159. data/spec/rails_root/vendor/plugins/dynamic_form/test/dynamic_form_test.rb +0 -370
  160. data/spec/rails_root/vendor/plugins/dynamic_form/test/test_helper.rb +0 -9
  161. data/spec/rails_root/vendor/public/404.html +0 -26
  162. data/spec/rails_root/vendor/public/422.html +0 -26
  163. data/spec/rails_root/vendor/public/500.html +0 -26
  164. data/spec/rails_root/vendor/public/favicon.ico +0 -0
  165. data/spec/rails_root/vendor/public/images/rails.png +0 -0
  166. data/spec/rails_root/vendor/public/javascripts/application.js +0 -2
  167. data/spec/rails_root/vendor/public/javascripts/controls.js +0 -965
  168. data/spec/rails_root/vendor/public/javascripts/dragdrop.js +0 -974
  169. data/spec/rails_root/vendor/public/javascripts/effects.js +0 -1123
  170. data/spec/rails_root/vendor/public/javascripts/prototype.js +0 -4874
  171. data/spec/rails_root/vendor/public/javascripts/rails.js +0 -118
  172. data/spec/rails_root/vendor/public/robots.txt +0 -5
  173. data/spec/rails_root/vendor/script/cucumber +0 -10
  174. data/spec/rails_root/vendor/script/rails +0 -9
  175. data/spec/rails_root/vendor/test/factories/clearance.rb +0 -13
  176. data/spec/rails_root/vendor/test/functional/accounts_controller_test.rb +0 -22
  177. data/spec/rails_root/vendor/test/performance/browsing_test.rb +0 -9
  178. data/spec/rails_root/vendor/test/test_helper.rb +0 -13
  179. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/MIT-LICENSE +0 -20
  180. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/README +0 -13
  181. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/Rakefile +0 -10
  182. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/init.rb +0 -5
  183. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb +0 -300
  184. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml +0 -8
  185. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb +0 -42
  186. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/test/dynamic_form_test.rb +0 -370
  187. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/test/test_helper.rb +0 -9
  188. data/test/rails_root/Gemfile +0 -17
  189. data/test/rails_root/Gemfile.lock +0 -145
  190. data/test/rails_root/README +0 -244
  191. data/test/rails_root/Rakefile +0 -10
  192. data/test/rails_root/app/controllers/accounts_controller.rb +0 -10
  193. data/test/rails_root/app/controllers/application_controller.rb +0 -6
  194. data/test/rails_root/app/helpers/application_helper.rb +0 -2
  195. data/test/rails_root/app/models/user.rb +0 -3
  196. data/test/rails_root/app/views/accounts/edit.html.erb +0 -0
  197. data/test/rails_root/app/views/layouts/application.html.erb +0 -24
  198. data/test/rails_root/app/views/passwords/edit.html.erb +0 -21
  199. data/test/rails_root/app/views/passwords/new.html.erb +0 -15
  200. data/test/rails_root/app/views/sessions/new.html.erb +0 -21
  201. data/test/rails_root/app/views/users/_inputs.html.erb +0 -6
  202. data/test/rails_root/app/views/users/new.html.erb +0 -10
  203. data/test/rails_root/config.ru +0 -4
  204. data/test/rails_root/config/application.rb +0 -46
  205. data/test/rails_root/config/boot.rb +0 -6
  206. data/test/rails_root/config/cucumber.yml +0 -8
  207. data/test/rails_root/config/database.yml +0 -25
  208. data/test/rails_root/config/environment.rb +0 -7
  209. data/test/rails_root/config/environments/development.rb +0 -21
  210. data/test/rails_root/config/environments/production.rb +0 -42
  211. data/test/rails_root/config/environments/test.rb +0 -34
  212. data/test/rails_root/config/initializers/backtrace_silencers.rb +0 -7
  213. data/test/rails_root/config/initializers/clearance.rb +0 -3
  214. data/test/rails_root/config/initializers/inflections.rb +0 -10
  215. data/test/rails_root/config/initializers/mime_types.rb +0 -5
  216. data/test/rails_root/config/initializers/secret_token.rb +0 -7
  217. data/test/rails_root/config/initializers/session_store.rb +0 -8
  218. data/test/rails_root/config/locales/en.yml +0 -5
  219. data/test/rails_root/config/routes.rb +0 -61
  220. data/test/rails_root/db/development.sqlite3 +0 -0
  221. data/test/rails_root/db/migrate/20110209234101_clearance_create_users.rb +0 -19
  222. data/test/rails_root/db/schema.rb +0 -28
  223. data/test/rails_root/db/test.sqlite3 +0 -0
  224. data/test/rails_root/doc/README_FOR_APP +0 -2
  225. data/test/rails_root/features/password_reset.feature +0 -40
  226. data/test/rails_root/features/sign_in.feature +0 -28
  227. data/test/rails_root/features/sign_out.feature +0 -16
  228. data/test/rails_root/features/sign_up.feature +0 -21
  229. data/test/rails_root/features/step_definitions/clearance_steps.rb +0 -109
  230. data/test/rails_root/features/step_definitions/web_steps.rb +0 -219
  231. data/test/rails_root/features/support/env.rb +0 -57
  232. data/test/rails_root/features/support/paths.rb +0 -45
  233. data/test/rails_root/lib/tasks/cucumber.rake +0 -53
  234. data/test/rails_root/log/development.log +0 -938
  235. data/test/rails_root/log/test.log +0 -20303
  236. data/test/rails_root/public/404.html +0 -26
  237. data/test/rails_root/public/422.html +0 -26
  238. data/test/rails_root/public/500.html +0 -26
  239. data/test/rails_root/public/favicon.ico +0 -0
  240. data/test/rails_root/public/images/rails.png +0 -0
  241. data/test/rails_root/public/javascripts/application.js +0 -2
  242. data/test/rails_root/public/javascripts/controls.js +0 -965
  243. data/test/rails_root/public/javascripts/dragdrop.js +0 -974
  244. data/test/rails_root/public/javascripts/effects.js +0 -1123
  245. data/test/rails_root/public/javascripts/prototype.js +0 -4874
  246. data/test/rails_root/public/javascripts/rails.js +0 -118
  247. data/test/rails_root/public/robots.txt +0 -5
  248. data/test/rails_root/script/cucumber +0 -10
  249. data/test/rails_root/script/rails +0 -9
  250. data/test/rails_root/test/factories/clearance.rb +0 -13
  251. data/test/rails_root/test/functional/accounts_controller_test.rb +0 -22
  252. data/test/rails_root/test/performance/browsing_test.rb +0 -9
  253. data/test/rails_root/test/test_helper.rb +0 -13
  254. data/test/rails_root/vendor/plugins/dynamic_form/MIT-LICENSE +0 -20
  255. data/test/rails_root/vendor/plugins/dynamic_form/README +0 -13
  256. data/test/rails_root/vendor/plugins/dynamic_form/Rakefile +0 -10
  257. data/test/rails_root/vendor/plugins/dynamic_form/init.rb +0 -5
  258. data/test/rails_root/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb +0 -300
  259. data/test/rails_root/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml +0 -8
  260. data/test/rails_root/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb +0 -42
  261. data/test/rails_root/vendor/plugins/dynamic_form/test/dynamic_form_test.rb +0 -370
  262. data/test/rails_root/vendor/plugins/dynamic_form/test/test_helper.rb +0 -9
@@ -1,57 +0,0 @@
1
- # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
2
- # It is recommended to regenerate this file in the future when you upgrade to a
3
- # newer version of cucumber-rails. Consider adding your own code to a new file
4
- # instead of editing this one. Cucumber will automatically load all features/**/*.rb
5
- # files.
6
-
7
- ENV["RAILS_ENV"] ||= "test"
8
- require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
9
-
10
- require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
11
- require 'cucumber/rails/world'
12
- require 'cucumber/rails/active_record'
13
- require 'cucumber/web/tableish'
14
-
15
- require 'capybara/rails'
16
- require 'capybara/cucumber'
17
- require 'capybara/session'
18
- # require 'cucumber/rails/capybara_javascript_emulation' # Lets you click links with onclick javascript handlers without using @culerity or @javascript
19
- # Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
20
- # order to ease the transition to Capybara we set the default here. If you'd
21
- # prefer to use XPath just remove this line and adjust any selectors in your
22
- # steps to use the XPath syntax.
23
- Capybara.default_selector = :css
24
-
25
- # If you set this to false, any error raised from within your app will bubble
26
- # up to your step definition and out to cucumber unless you catch it somewhere
27
- # on the way. You can make Rails rescue errors and render error pages on a
28
- # per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
29
- #
30
- # If you set this to true, Rails will rescue all errors and render error
31
- # pages, more or less in the same way your application would behave in the
32
- # default production environment. It's not recommended to do this for all
33
- # of your scenarios, as this makes it hard to discover errors in your application.
34
- ActionController::Base.allow_rescue = false
35
-
36
- # If you set this to true, each scenario will run in a database transaction.
37
- # You can still turn off transactions on a per-scenario basis, simply tagging
38
- # a feature or scenario with the @no-txn tag. If you are using Capybara,
39
- # tagging with @culerity or @javascript will also turn transactions off.
40
- #
41
- # If you set this to false, transactions will be off for all scenarios,
42
- # regardless of whether you use @no-txn or not.
43
- #
44
- # Beware that turning transactions off will leave data in your database
45
- # after each scenario, which can lead to hard-to-debug failures in
46
- # subsequent scenarios. If you do this, we recommend you create a Before
47
- # block that will explicitly put your database in a known state.
48
- Cucumber::Rails::World.use_transactional_fixtures = true
49
- # How to clean your database when transactions are turned off. See
50
- # http://github.com/bmabey/database_cleaner for more info.
51
- if defined?(ActiveRecord::Base)
52
- begin
53
- require 'database_cleaner'
54
- DatabaseCleaner.strategy = :truncation
55
- rescue LoadError => ignore_if_database_cleaner_not_present
56
- end
57
- end
@@ -1,45 +0,0 @@
1
- module NavigationHelpers
2
- # Maps a name to a path. Used by the
3
- #
4
- # When /^I go to (.+)$/ do |page_name|
5
- #
6
- # step definition in web_steps.rb
7
- #
8
- def path_to(page_name)
9
- case page_name
10
-
11
- when /the home\s?page/
12
- '/'
13
-
14
- # Add more mappings here.
15
- when /the sign up page/i
16
- sign_up_path
17
- when /the sign in page/i
18
- sign_in_path
19
- when /the password reset request page/i
20
- new_password_path
21
- when /the sign up page/i
22
- sign_up_path
23
- when /the sign in page/i
24
- sign_in_path
25
- when /the password reset request page/i
26
- new_password_path
27
- # Here is an example that pulls values out of the Regexp:
28
- #
29
- # when /^(.*)'s profile page$/i
30
- # user_profile_path(User.find_by_login($1))
31
-
32
- else
33
- begin
34
- page_name =~ /the (.*) page/
35
- path_components = $1.split(/\s+/)
36
- self.send(path_components.push('path').join('_').to_sym)
37
- rescue Object => e
38
- raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
39
- "Now, go and add a mapping in #{__FILE__}"
40
- end
41
- end
42
- end
43
- end
44
-
45
- World(NavigationHelpers)
@@ -1,53 +0,0 @@
1
- # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
2
- # It is recommended to regenerate this file in the future when you upgrade to a
3
- # newer version of cucumber-rails. Consider adding your own code to a new file
4
- # instead of editing this one. Cucumber will automatically load all features/**/*.rb
5
- # files.
6
-
7
-
8
- unless ARGV.any? {|a| a =~ /^gems/} # Don't load anything when running the gems:* tasks
9
-
10
- vendored_cucumber_bin = Dir["#{Rails.root}/vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
11
- $LOAD_PATH.unshift(File.dirname(vendored_cucumber_bin) + '/../lib') unless vendored_cucumber_bin.nil?
12
-
13
- begin
14
- require 'cucumber/rake/task'
15
-
16
- namespace :cucumber do
17
- Cucumber::Rake::Task.new({:ok => 'db:test:prepare'}, 'Run features that should pass') do |t|
18
- t.binary = vendored_cucumber_bin # If nil, the gem's binary is used.
19
- t.fork = true # You may get faster startup if you set this to false
20
- t.profile = 'default'
21
- end
22
-
23
- Cucumber::Rake::Task.new({:wip => 'db:test:prepare'}, 'Run features that are being worked on') do |t|
24
- t.binary = vendored_cucumber_bin
25
- t.fork = true # You may get faster startup if you set this to false
26
- t.profile = 'wip'
27
- end
28
-
29
- Cucumber::Rake::Task.new({:rerun => 'db:test:prepare'}, 'Record failing features and run only them if any exist') do |t|
30
- t.binary = vendored_cucumber_bin
31
- t.fork = true # You may get faster startup if you set this to false
32
- t.profile = 'rerun'
33
- end
34
-
35
- desc 'Run all features'
36
- task :all => [:ok, :wip]
37
- end
38
- desc 'Alias for cucumber:ok'
39
- task :cucumber => 'cucumber:ok'
40
-
41
- task :default => :cucumber
42
-
43
- task :features => :cucumber do
44
- STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***"
45
- end
46
- rescue LoadError
47
- desc 'cucumber rake task not available (cucumber not installed)'
48
- task :cucumber do
49
- abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin'
50
- end
51
- end
52
-
53
- end
@@ -1,663 +0,0 @@
1
- SQL (0.2ms)  SELECT name
2
- FROM sqlite_master
3
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
- 
5
- SQL (0.1ms) SELECT name
6
- FROM sqlite_master
7
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
8
- SQL (0.2ms)  SELECT name
9
- FROM sqlite_master
10
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
11
- 
12
- SQL (0.1ms) select sqlite_version(*)
13
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
14
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
15
- SQL (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16
- SQL (0.1ms) SELECT name
17
- FROM sqlite_master
18
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
19
- SQL (0.1ms)  SELECT name
20
- FROM sqlite_master
21
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
22
- 
23
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
24
- Migrating to ClearanceCreateUsers (20101220181811)
25
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
26
- SQL (0.0ms) PRAGMA index_list("users")
27
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
28
- SQL (0.1ms) PRAGMA index_list("users")
29
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
30
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
31
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220181811')
32
- SQL (0.2ms) SELECT name
33
- FROM sqlite_master
34
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
35
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
36
- SQL (0.1ms) SELECT name
37
- FROM sqlite_master
38
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
39
- SQL (0.1ms) PRAGMA index_list("users")
40
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
41
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
42
- SQL (0.1ms) SELECT name
43
- FROM sqlite_master
44
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
45
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
46
- SQL (0.1ms) select sqlite_version(*)
47
- SQL (0.1ms)  SELECT name
48
- FROM sqlite_master
49
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
50
- 
51
- SQL (1.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
52
- SQL (0.0ms) PRAGMA index_list("users")
53
- SQL (1.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
54
- SQL (0.1ms) PRAGMA index_list("users")
55
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
56
- SQL (1.7ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
57
- SQL (0.1ms) SELECT name
58
- FROM sqlite_master
59
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
60
- SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
61
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
62
- SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63
- SQL (0.1ms) SELECT name
64
- FROM sqlite_master
65
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
66
- SQL (0.1ms) SELECT version FROM "schema_migrations"
67
- SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220181811')
68
- SQL (0.2ms)  SELECT name
69
- FROM sqlite_master
70
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
71
- 
72
- SQL (0.1ms) SELECT name
73
- FROM sqlite_master
74
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
75
- SQL (0.2ms)  SELECT name
76
- FROM sqlite_master
77
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
78
- 
79
- SQL (0.1ms) select sqlite_version(*)
80
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
81
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
82
- SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
- SQL (0.1ms) SELECT name
84
- FROM sqlite_master
85
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
86
- SQL (0.1ms)  SELECT name
87
- FROM sqlite_master
88
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
89
- 
90
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
91
- Migrating to ClearanceCreateUsers (20101220181849)
92
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
93
- SQL (0.1ms) PRAGMA index_list("users")
94
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
95
- SQL (0.1ms) PRAGMA index_list("users")
96
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
97
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
98
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220181849')
99
- SQL (0.2ms) SELECT name
100
- FROM sqlite_master
101
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
102
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
103
- SQL (0.1ms) SELECT name
104
- FROM sqlite_master
105
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
106
- SQL (0.1ms) PRAGMA index_list("users")
107
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
108
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
109
- SQL (0.1ms) SELECT name
110
- FROM sqlite_master
111
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
112
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
113
- SQL (0.1ms) select sqlite_version(*)
114
- SQL (0.1ms)  SELECT name
115
- FROM sqlite_master
116
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
117
- 
118
- SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
119
- SQL (0.0ms) PRAGMA index_list("users")
120
- SQL (1.6ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
121
- SQL (0.2ms) PRAGMA index_list("users")
122
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
123
- SQL (1.4ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
124
- SQL (0.1ms) SELECT name
125
- FROM sqlite_master
126
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
127
- SQL (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
128
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
129
- SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
130
- SQL (0.1ms) SELECT name
131
- FROM sqlite_master
132
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
133
- SQL (0.1ms) SELECT version FROM "schema_migrations"
134
- SQL (5.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220181849')
135
- SQL (0.2ms)  SELECT name
136
- FROM sqlite_master
137
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
138
- 
139
- SQL (0.1ms) SELECT name
140
- FROM sqlite_master
141
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
142
- SQL (0.2ms)  SELECT name
143
- FROM sqlite_master
144
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
145
- 
146
- SQL (0.1ms) select sqlite_version(*)
147
- SQL (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
148
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
149
- SQL (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
150
- SQL (0.1ms) SELECT name
151
- FROM sqlite_master
152
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
153
- SQL (0.1ms)  SELECT name
154
- FROM sqlite_master
155
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
156
- 
157
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
158
- Migrating to ClearanceCreateUsers (20101220182201)
159
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
160
- SQL (0.0ms) PRAGMA index_list("users")
161
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
162
- SQL (0.3ms) PRAGMA index_list("users")
163
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
164
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
165
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220182201')
166
- SQL (0.2ms) SELECT name
167
- FROM sqlite_master
168
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
169
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
170
- SQL (0.1ms) SELECT name
171
- FROM sqlite_master
172
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
173
- SQL (0.1ms) PRAGMA index_list("users")
174
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
175
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
176
- SQL (0.1ms) SELECT name
177
- FROM sqlite_master
178
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
179
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
180
- SQL (0.1ms) select sqlite_version(*)
181
- SQL (0.1ms)  SELECT name
182
- FROM sqlite_master
183
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
184
- 
185
- SQL (32.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
186
- SQL (0.1ms) PRAGMA index_list("users")
187
- SQL (1.5ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
188
- SQL (0.1ms) PRAGMA index_list("users")
189
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
190
- SQL (1.6ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
191
- SQL (0.1ms) SELECT name
192
- FROM sqlite_master
193
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
194
- SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
195
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
196
- SQL (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
197
- SQL (0.2ms) SELECT name
198
- FROM sqlite_master
199
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
200
- SQL (0.1ms) SELECT version FROM "schema_migrations"
201
- SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220182201')
202
- SQL (0.2ms)  SELECT name
203
- FROM sqlite_master
204
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
205
- 
206
- SQL (0.1ms) SELECT name
207
- FROM sqlite_master
208
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
209
- SQL (0.2ms)  SELECT name
210
- FROM sqlite_master
211
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
212
- 
213
- SQL (0.1ms) select sqlite_version(*)
214
- SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
215
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
216
- SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
217
- SQL (0.1ms) SELECT name
218
- FROM sqlite_master
219
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
220
- SQL (0.1ms)  SELECT name
221
- FROM sqlite_master
222
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
223
- 
224
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
225
- Migrating to ClearanceCreateUsers (20101220182634)
226
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
227
- SQL (0.0ms) PRAGMA index_list("users")
228
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
229
- SQL (0.1ms) PRAGMA index_list("users")
230
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
231
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
232
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220182634')
233
- SQL (0.3ms) SELECT name
234
- FROM sqlite_master
235
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
236
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
237
- SQL (0.1ms) SELECT name
238
- FROM sqlite_master
239
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
240
- SQL (0.1ms) PRAGMA index_list("users")
241
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
242
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
243
- SQL (0.1ms) SELECT name
244
- FROM sqlite_master
245
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
246
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
247
- SQL (0.1ms) select sqlite_version(*)
248
- SQL (0.1ms)  SELECT name
249
- FROM sqlite_master
250
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
251
- 
252
- SQL (1.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
253
- SQL (0.0ms) PRAGMA index_list("users")
254
- SQL (1.4ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
255
- SQL (0.1ms) PRAGMA index_list("users")
256
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
257
- SQL (1.7ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
258
- SQL (0.1ms) SELECT name
259
- FROM sqlite_master
260
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
261
- SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
262
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
263
- SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
264
- SQL (0.2ms) SELECT name
265
- FROM sqlite_master
266
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
267
- SQL (0.1ms) SELECT version FROM "schema_migrations"
268
- SQL (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220182634')
269
- SQL (0.2ms)  SELECT name
270
- FROM sqlite_master
271
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
272
- 
273
- SQL (0.1ms) SELECT name
274
- FROM sqlite_master
275
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
276
- SQL (0.2ms)  SELECT name
277
- FROM sqlite_master
278
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
279
- 
280
- SQL (0.1ms) select sqlite_version(*)
281
- SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
282
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
283
- SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
284
- SQL (0.2ms) SELECT name
285
- FROM sqlite_master
286
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
287
- SQL (0.1ms)  SELECT name
288
- FROM sqlite_master
289
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
290
- 
291
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
292
- Migrating to ClearanceCreateUsers (20101220182833)
293
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
294
- SQL (0.0ms) PRAGMA index_list("users")
295
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
296
- SQL (0.1ms) PRAGMA index_list("users")
297
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
298
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
299
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220182833')
300
- SQL (0.2ms) SELECT name
301
- FROM sqlite_master
302
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
303
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
304
- SQL (0.1ms) SELECT name
305
- FROM sqlite_master
306
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
307
- SQL (0.1ms) PRAGMA index_list("users")
308
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
309
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
310
- SQL (0.1ms) SELECT name
311
- FROM sqlite_master
312
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
313
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
314
- SQL (0.1ms) select sqlite_version(*)
315
- SQL (0.1ms)  SELECT name
316
- FROM sqlite_master
317
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
318
- 
319
- SQL (1.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
320
- SQL (0.1ms) PRAGMA index_list("users")
321
- SQL (1.5ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
322
- SQL (0.1ms) PRAGMA index_list("users")
323
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
324
- SQL (1.4ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
325
- SQL (0.2ms) SELECT name
326
- FROM sqlite_master
327
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
328
- SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
329
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
330
- SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
331
- SQL (0.1ms) SELECT name
332
- FROM sqlite_master
333
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
334
- SQL (0.1ms) SELECT version FROM "schema_migrations"
335
- SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220182833')
336
- SQL (0.2ms)  SELECT name
337
- FROM sqlite_master
338
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
339
- 
340
- SQL (0.1ms) SELECT name
341
- FROM sqlite_master
342
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
343
- SQL (0.2ms)  SELECT name
344
- FROM sqlite_master
345
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
346
- 
347
- SQL (0.1ms) select sqlite_version(*)
348
- SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
349
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
350
- SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
351
- SQL (0.2ms) SELECT name
352
- FROM sqlite_master
353
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
- SQL (0.1ms)  SELECT name
355
- FROM sqlite_master
356
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
357
- 
358
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
359
- Migrating to ClearanceCreateUsers (20101220182949)
360
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
361
- SQL (0.0ms) PRAGMA index_list("users")
362
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
363
- SQL (0.1ms) PRAGMA index_list("users")
364
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
365
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
366
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220182949')
367
- SQL (0.2ms) SELECT name
368
- FROM sqlite_master
369
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
370
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
371
- SQL (0.1ms) SELECT name
372
- FROM sqlite_master
373
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
374
- SQL (0.1ms) PRAGMA index_list("users")
375
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
376
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
377
- SQL (0.1ms) SELECT name
378
- FROM sqlite_master
379
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
380
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
381
- SQL (0.1ms) select sqlite_version(*)
382
- SQL (0.1ms)  SELECT name
383
- FROM sqlite_master
384
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
385
- 
386
- SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
387
- SQL (0.0ms) PRAGMA index_list("users")
388
- SQL (1.6ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
389
- SQL (0.1ms) PRAGMA index_list("users")
390
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
391
- SQL (1.3ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
392
- SQL (0.1ms) SELECT name
393
- FROM sqlite_master
394
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
395
- SQL (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
396
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
397
- SQL (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
398
- SQL (0.2ms) SELECT name
399
- FROM sqlite_master
400
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
401
- SQL (0.1ms) SELECT version FROM "schema_migrations"
402
- SQL (4.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220182949')
403
- SQL (0.2ms)  SELECT name
404
- FROM sqlite_master
405
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
406
- 
407
- SQL (0.1ms) SELECT name
408
- FROM sqlite_master
409
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
- SQL (0.2ms)  SELECT name
411
- FROM sqlite_master
412
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
413
- 
414
- SQL (0.1ms) select sqlite_version(*)
415
- SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
416
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
417
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
418
- SQL (0.1ms) SELECT name
419
- FROM sqlite_master
420
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
421
- SQL (0.1ms)  SELECT name
422
- FROM sqlite_master
423
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
424
- 
425
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
426
- Migrating to ClearanceCreateUsers (20101220183312)
427
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
428
- SQL (0.0ms) PRAGMA index_list("users")
429
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
430
- SQL (0.1ms) PRAGMA index_list("users")
431
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
432
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
433
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220183312')
434
- SQL (0.4ms) SELECT name
435
- FROM sqlite_master
436
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
437
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
438
- SQL (0.1ms) SELECT name
439
- FROM sqlite_master
440
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
441
- SQL (0.1ms) PRAGMA index_list("users")
442
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
443
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
444
- SQL (0.1ms) SELECT name
445
- FROM sqlite_master
446
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
447
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
448
- SQL (0.1ms) select sqlite_version(*)
449
- SQL (0.1ms)  SELECT name
450
- FROM sqlite_master
451
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
452
- 
453
- SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
454
- SQL (0.0ms) PRAGMA index_list("users")
455
- SQL (1.3ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
456
- SQL (0.1ms) PRAGMA index_list("users")
457
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
458
- SQL (1.4ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
459
- SQL (0.1ms) SELECT name
460
- FROM sqlite_master
461
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
462
- SQL (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
463
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
464
- SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
465
- SQL (0.1ms) SELECT name
466
- FROM sqlite_master
467
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
468
- SQL (0.2ms) SELECT version FROM "schema_migrations"
469
- SQL (4.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220183312')
470
- SQL (0.2ms)  SELECT name
471
- FROM sqlite_master
472
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
473
- 
474
- SQL (0.1ms) SELECT name
475
- FROM sqlite_master
476
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
477
- SQL (0.2ms)  SELECT name
478
- FROM sqlite_master
479
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
480
- 
481
- SQL (0.1ms) select sqlite_version(*)
482
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
483
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
484
- SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
485
- SQL (0.2ms) SELECT name
486
- FROM sqlite_master
487
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
488
- SQL (0.1ms)  SELECT name
489
- FROM sqlite_master
490
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
491
- 
492
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
493
- Migrating to ClearanceCreateUsers (20101220184055)
494
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
495
- SQL (0.0ms) PRAGMA index_list("users")
496
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
497
- SQL (0.1ms) PRAGMA index_list("users")
498
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
499
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
500
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220184055')
501
- SQL (0.2ms) SELECT name
502
- FROM sqlite_master
503
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
504
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
505
- SQL (0.1ms) SELECT name
506
- FROM sqlite_master
507
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
508
- SQL (0.1ms) PRAGMA index_list("users")
509
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
510
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
511
- SQL (0.1ms) SELECT name
512
- FROM sqlite_master
513
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
514
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
515
- SQL (0.1ms) select sqlite_version(*)
516
- SQL (0.1ms)  SELECT name
517
- FROM sqlite_master
518
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
519
- 
520
- SQL (2.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
521
- SQL (0.1ms) PRAGMA index_list("users")
522
- SQL (1.6ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
523
- SQL (0.1ms) PRAGMA index_list("users")
524
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
525
- SQL (1.4ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
526
- SQL (0.1ms) SELECT name
527
- FROM sqlite_master
528
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
529
- SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
530
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
531
- SQL (6.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
532
- SQL (0.2ms) SELECT name
533
- FROM sqlite_master
534
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
535
- SQL (0.1ms) SELECT version FROM "schema_migrations"
536
- SQL (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220184055')
537
- SQL (0.4ms)  SELECT name
538
- FROM sqlite_master
539
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
540
- 
541
- SQL (0.1ms) SELECT name
542
- FROM sqlite_master
543
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
544
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
545
- SQL (0.1ms) select sqlite_version(*)
546
- SQL (0.1ms)  SELECT name
547
- FROM sqlite_master
548
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
549
- 
550
- SQL (1.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
551
- SQL (0.0ms) PRAGMA index_list("users")
552
- SQL (1.3ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
553
- SQL (0.1ms) PRAGMA index_list("users")
554
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
555
- SQL (1.5ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
556
- SQL (0.1ms) SELECT name
557
- FROM sqlite_master
558
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
559
- SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
560
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
561
- SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
562
- SQL (0.1ms) SELECT name
563
- FROM sqlite_master
564
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
565
- SQL (0.1ms) SELECT version FROM "schema_migrations"
566
- SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220184055')
567
- SQL (0.4ms)  SELECT name
568
- FROM sqlite_master
569
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
570
- 
571
- SQL (0.1ms) SELECT name
572
- FROM sqlite_master
573
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
574
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
575
- SQL (0.1ms) select sqlite_version(*)
576
- SQL (0.1ms)  SELECT name
577
- FROM sqlite_master
578
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
579
- 
580
- SQL (2.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
581
- SQL (0.1ms) PRAGMA index_list("users")
582
- SQL (1.9ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
583
- SQL (0.1ms) PRAGMA index_list("users")
584
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
585
- SQL (2.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
586
- SQL (0.2ms) SELECT name
587
- FROM sqlite_master
588
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
589
- SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
590
- SQL (0.3ms) PRAGMA index_list("schema_migrations")
591
- SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
592
- SQL (0.2ms) SELECT name
593
- FROM sqlite_master
594
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
595
- SQL (0.1ms) SELECT version FROM "schema_migrations"
596
- SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220184055')
597
- SQL (0.2ms)  SELECT name
598
- FROM sqlite_master
599
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
600
- 
601
- SQL (0.1ms) SELECT name
602
- FROM sqlite_master
603
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
604
- SQL (0.2ms)  SELECT name
605
- FROM sqlite_master
606
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
607
- 
608
- SQL (0.1ms) select sqlite_version(*)
609
- SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
610
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
611
- SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
612
- SQL (0.2ms) SELECT name
613
- FROM sqlite_master
614
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
615
- SQL (0.1ms)  SELECT name
616
- FROM sqlite_master
617
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
618
- 
619
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
620
- Migrating to ClearanceCreateUsers (20101220184900)
621
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
622
- SQL (0.1ms) PRAGMA index_list("users")
623
- SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
624
- SQL (0.1ms) PRAGMA index_list("users")
625
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
626
- SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
627
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101220184900')
628
- SQL (0.2ms) SELECT name
629
- FROM sqlite_master
630
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
631
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
632
- SQL (0.1ms) SELECT name
633
- FROM sqlite_master
634
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
635
- SQL (0.1ms) PRAGMA index_list("users")
636
- SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
637
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
638
- SQL (0.1ms) SELECT name
639
- FROM sqlite_master
640
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
641
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
642
- SQL (0.1ms) select sqlite_version(*)
643
- SQL (0.1ms)  SELECT name
644
- FROM sqlite_master
645
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
646
- 
647
- SQL (1.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
648
- SQL (0.1ms) PRAGMA index_list("users")
649
- SQL (1.7ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
650
- SQL (0.1ms) PRAGMA index_list("users")
651
- SQL (0.0ms) PRAGMA index_info('index_users_on_email')
652
- SQL (1.8ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
653
- SQL (0.1ms) SELECT name
654
- FROM sqlite_master
655
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
656
- SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
657
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
658
- SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
659
- SQL (0.2ms) SELECT name
660
- FROM sqlite_master
661
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
662
- SQL (0.1ms) SELECT version FROM "schema_migrations"
663
- SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20101220184900')