bootstrap_devise_base 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. data/Gemfile +54 -0
  2. data/Gemfile.lock +237 -0
  3. data/Rakefile +7 -0
  4. data/app/.svn/all-wcprops +5 -0
  5. data/app/.svn/entries +31 -0
  6. data/app/assets/images/rails.png +0 -0
  7. data/app/assets/javascripts/application.js +16 -0
  8. data/app/assets/javascripts/registrations.js.coffee +3 -0
  9. data/app/assets/stylesheets/application.css +23 -0
  10. data/app/assets/stylesheets/bootstrap.scss +29 -0
  11. data/app/assets/stylesheets/forms.scss +481 -0
  12. data/app/assets/stylesheets/mixins.scss +220 -0
  13. data/app/assets/stylesheets/patterns.scss +1061 -0
  14. data/app/assets/stylesheets/registrations.css.scss +3 -0
  15. data/app/assets/stylesheets/reset.scss +144 -0
  16. data/app/assets/stylesheets/scaffolding.scss +144 -0
  17. data/app/assets/stylesheets/tables.scss +226 -0
  18. data/app/assets/stylesheets/type.scss +190 -0
  19. data/app/assets/stylesheets/variables.scss +60 -0
  20. data/app/controllers/.svn/all-wcprops +11 -0
  21. data/app/controllers/.svn/entries +62 -0
  22. data/app/controllers/.svn/text-base/assets_offline_controller.rb.svn-base +85 -0
  23. data/app/controllers/application_controller.rb +6 -0
  24. data/app/controllers/authentications_controller.rb +34 -0
  25. data/app/controllers/home_controller.rb +83 -0
  26. data/app/controllers/registrations_controller.rb +18 -0
  27. data/app/helpers/application_helper.rb +2 -0
  28. data/app/helpers/authentications_helper.rb +2 -0
  29. data/app/helpers/devise_helper.rb +29 -0
  30. data/app/helpers/home_helper.rb +2 -0
  31. data/app/helpers/registrations_helper.rb +2 -0
  32. data/app/mailers/.gitkeep +0 -0
  33. data/app/models/.gitkeep +0 -0
  34. data/app/models/authentication.rb +3 -0
  35. data/app/models/user.rb +20 -0
  36. data/app/views/authentications/_form.html.erb +16 -0
  37. data/app/views/authentications/edit.html.erb +8 -0
  38. data/app/views/authentications/index.html.erb +22 -0
  39. data/app/views/authentications/new.html.erb +5 -0
  40. data/app/views/authentications/show.html.erb +20 -0
  41. data/app/views/devise/confirmations/new.html.erb +12 -0
  42. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  43. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  44. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  45. data/app/views/devise/passwords/edit.html.erb +16 -0
  46. data/app/views/devise/passwords/new.html.erb +12 -0
  47. data/app/views/devise/sessions/new.html.erb +58 -0
  48. data/app/views/devise/shared/_links.erb +25 -0
  49. data/app/views/devise/unlocks/new.html.erb +12 -0
  50. data/app/views/home/_form.html.erb +17 -0
  51. data/app/views/home/edit.html.erb +6 -0
  52. data/app/views/home/index.html.erb +21 -0
  53. data/app/views/home/new.html.erb +5 -0
  54. data/app/views/home/show.html.erb +5 -0
  55. data/app/views/layouts/application.html.erb +112 -0
  56. data/app/views/registrations/edit.html.erb +25 -0
  57. data/app/views/registrations/new.html.erb +47 -0
  58. data/bootstrap_devise_base.gemspec +20 -0
  59. data/config.ru +4 -0
  60. data/config/.svn/all-wcprops +11 -0
  61. data/config/.svn/entries +62 -0
  62. data/config/.svn/text-base/routes.rb.svn-base +3 -0
  63. data/config/application.rb +48 -0
  64. data/config/boot.rb +6 -0
  65. data/config/cucumber.yml +8 -0
  66. data/config/database.yml +45 -0
  67. data/config/environment.rb +5 -0
  68. data/config/environments/development.rb +30 -0
  69. data/config/environments/production.rb +60 -0
  70. data/config/environments/test.rb +39 -0
  71. data/config/initializers/backtrace_silencers.rb +7 -0
  72. data/config/initializers/devise.rb +208 -0
  73. data/config/initializers/inflections.rb +10 -0
  74. data/config/initializers/mime_types.rb +5 -0
  75. data/config/initializers/omniauth.rb +3 -0
  76. data/config/initializers/secret_token.rb +7 -0
  77. data/config/initializers/session_store.rb +8 -0
  78. data/config/initializers/wrap_parameters.rb +14 -0
  79. data/config/locales/devise.en.yml +58 -0
  80. data/config/locales/en.yml +13 -0
  81. data/config/routes.rb +64 -0
  82. data/db/migrate/20111121201415_create_users.rb +8 -0
  83. data/db/migrate/20111121201511_add_devise_to_users.rb +31 -0
  84. data/db/migrate/20111127100158_create_authentications.rb +14 -0
  85. data/db/schema.rb +42 -0
  86. data/db/seeds.rb +7 -0
  87. data/doc/README_FOR_APP +2 -0
  88. data/features/manage_sign_ups.feature +28 -0
  89. data/features/step_definitions/sign_up_steps.rb +27 -0
  90. data/features/step_definitions/web_steps.rb +254 -0
  91. data/features/support/env.rb +56 -0
  92. data/features/support/paths.rb +39 -0
  93. data/features/support/selectors.rb +39 -0
  94. data/init.rb +1 -0
  95. data/lib/.svn/all-wcprops +11 -0
  96. data/lib/.svn/entries +65 -0
  97. data/lib/.svn/text-base/assets_offline.rb.svn-base +6 -0
  98. data/lib/assets/.gitkeep +0 -0
  99. data/lib/bootstap_devise_base.rb~ +6 -0
  100. data/lib/bootstrap_devise_base.rb +6 -0
  101. data/lib/bootstrap_devise_base/.svn/all-wcprops +11 -0
  102. data/lib/bootstrap_devise_base/.svn/entries +62 -0
  103. data/lib/bootstrap_devise_base/.svn/text-base/version.rb.svn-base +3 -0
  104. data/lib/bootstrap_devise_base/version.rb +3 -0
  105. data/lib/tasks/.gitkeep +0 -0
  106. data/lib/tasks/cucumber.rake +65 -0
  107. data/log/.gitkeep +0 -0
  108. data/log/development.log +977 -0
  109. data/log/production.log +44 -0
  110. data/log/test.log +799 -0
  111. data/public/404.html +26 -0
  112. data/public/422.html +26 -0
  113. data/public/500.html +26 -0
  114. data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js +19 -0
  115. data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js.gz +0 -0
  116. data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css +1 -0
  117. data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css.gz +0 -0
  118. data/public/assets/application.css +1 -0
  119. data/public/assets/application.css.gz +0 -0
  120. data/public/assets/application.js +19 -0
  121. data/public/assets/application.js.gz +0 -0
  122. data/public/assets/manifest.yml +4 -0
  123. data/public/assets/rails-e4b51606cd77fda2615e7439907bfc92.png +0 -0
  124. data/public/assets/rails.png +0 -0
  125. data/public/favicon.ico +0 -0
  126. data/public/robots.txt +5 -0
  127. data/script/cucumber +10 -0
  128. data/script/rails +6 -0
  129. data/test/fixtures/.gitkeep +0 -0
  130. data/test/functional/.gitkeep +0 -0
  131. data/test/integration/.gitkeep +0 -0
  132. data/test/performance/browsing_test.rb +12 -0
  133. data/test/test_helper.rb +13 -0
  134. data/test/unit/.gitkeep +0 -0
  135. data/vendor/assets/stylesheets/.gitkeep +0 -0
  136. data/vendor/plugins/.gitkeep +0 -0
  137. metadata +181 -0
@@ -0,0 +1,56 @@
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
+ require 'cucumber/rails'
8
+
9
+ # Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
10
+ # order to ease the transition to Capybara we set the default here. If you'd
11
+ # prefer to use XPath just remove this line and adjust any selectors in your
12
+ # steps to use the XPath syntax.
13
+ Capybara.default_selector = :css
14
+
15
+ # By default, any exception happening in your Rails application will bubble up
16
+ # to Cucumber so that your scenario will fail. This is a different from how
17
+ # your application behaves in the production environment, where an error page will
18
+ # be rendered instead.
19
+ #
20
+ # Sometimes we want to override this default behaviour and allow Rails to rescue
21
+ # exceptions and display an error page (just like when the app is running in production).
22
+ # Typical scenarios where you want to do this is when you test your error pages.
23
+ # There are two ways to allow Rails to rescue exceptions:
24
+ #
25
+ # 1) Tag your scenario (or feature) with @allow-rescue
26
+ #
27
+ # 2) Set the value below to true. Beware that doing this globally is not
28
+ # recommended as it will mask a lot of errors for you!
29
+ #
30
+ ActionController::Base.allow_rescue = false
31
+
32
+ # Remove/comment out the lines below if your app doesn't have a database.
33
+ # For some databases (like MongoDB and CouchDB) you may need to use :truncation instead.
34
+ begin
35
+ DatabaseCleaner.strategy = :transaction
36
+ rescue NameError
37
+ raise "You need to add database_cleaner to your Gemfile (in the :test group) if you wish to use it."
38
+ end
39
+
40
+ # You may also want to configure DatabaseCleaner to use different strategies for certain features and scenarios.
41
+ # See the DatabaseCleaner documentation for details. Example:
42
+ #
43
+ # Before('@no-txn,@selenium,@culerity,@celerity,@javascript') do
44
+ # DatabaseCleaner.strategy = :truncation, {:except => %w[widgets]}
45
+ # end
46
+ #
47
+ # Before('~@no-txn', '~@selenium', '~@culerity', '~@celerity', '~@javascript') do
48
+ # DatabaseCleaner.strategy = :transaction
49
+ # end
50
+ #
51
+
52
+ # Possible values are :truncation and :transaction
53
+ # The :transaction strategy is faster, but might give you threading problems.
54
+ # See https://github.com/cucumber/cucumber-rails/blob/master/features/choose_javascript_database_strategy.feature
55
+ Cucumber::Rails::Database.javascript_strategy = :truncation
56
+
@@ -0,0 +1,39 @@
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
+ when /the sign up page/
14
+ '/users/sign_up'
15
+
16
+ when /the sign in page/
17
+ '/users/sign_in'
18
+
19
+
20
+ # Add more mappings here.
21
+ # Here is an example that pulls values out of the Regexp:
22
+ #
23
+ # when /^(.*)'s profile page$/i
24
+ # user_profile_path(User.find_by_login($1))
25
+
26
+ else
27
+ begin
28
+ page_name =~ /^the (.*) page$/
29
+ path_components = $1.split(/\s+/)
30
+ self.send(path_components.push('path').join('_').to_sym)
31
+ rescue NoMethodError, ArgumentError
32
+ raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
33
+ "Now, go and add a mapping in #{__FILE__}"
34
+ end
35
+ end
36
+ end
37
+ end
38
+
39
+ World(NavigationHelpers)
@@ -0,0 +1,39 @@
1
+ module HtmlSelectorsHelpers
2
+ # Maps a name to a selector. Used primarily by the
3
+ #
4
+ # When /^(.+) within (.+)$/ do |step, scope|
5
+ #
6
+ # step definitions in web_steps.rb
7
+ #
8
+ def selector_for(locator)
9
+ case locator
10
+
11
+ when "the page"
12
+ "html > body"
13
+
14
+ # Add more mappings here.
15
+ # Here is an example that pulls values out of the Regexp:
16
+ #
17
+ # when /^the (notice|error|info) flash$/
18
+ # ".flash.#{$1}"
19
+
20
+ # You can also return an array to use a different selector
21
+ # type, like:
22
+ #
23
+ # when /the header/
24
+ # [:xpath, "//header"]
25
+
26
+ # This allows you to provide a quoted selector as the scope
27
+ # for "within" steps as was previously the default for the
28
+ # web steps:
29
+ when /^"(.+)"$/
30
+ $1
31
+
32
+ else
33
+ raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
34
+ "Now, go and add a mapping in #{__FILE__}"
35
+ end
36
+ end
37
+ end
38
+
39
+ World(HtmlSelectorsHelpers)
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'bootstap_devise_base'
@@ -0,0 +1,11 @@
1
+ K 25
2
+ svn:wc:ra_dav:version-url
3
+ V 56
4
+ /svn/TorexNG/!svn/ver/3734/trunk/gems/assets_offline/lib
5
+ END
6
+ assets_offline.rb
7
+ K 25
8
+ svn:wc:ra_dav:version-url
9
+ V 74
10
+ /svn/TorexNG/!svn/ver/3734/trunk/gems/assets_offline/lib/assets_offline.rb
11
+ END
@@ -0,0 +1,65 @@
1
+ 10
2
+
3
+ dir
4
+ 3734
5
+ https://svn.torex.com/svn/TorexNG/trunk/gems/assets_offline/lib
6
+ https://svn.torex.com/svn/TorexNG
7
+
8
+
9
+
10
+ 2011-12-02T15:46:33.442319Z
11
+ 3734
12
+ Anthony.Broome
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+ 45178cb0-7fed-444c-b58d-06e1424a9ccb
28
+
29
+ assets_offline
30
+ dir
31
+
32
+ assets_offline.rb
33
+ file
34
+
35
+
36
+
37
+
38
+ 2011-12-02T15:12:09.590444Z
39
+ 7f49316f1e14bcd77b955b39158c6a6d
40
+ 2011-12-02T15:46:33.442319Z
41
+ 3734
42
+ Anthony.Broome
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+ 145
65
+
@@ -0,0 +1,6 @@
1
+ require "assets_offline/version"
2
+
3
+ module AssetsOffline
4
+ class Engine < Rails::Engine
5
+ end if defined?(Rails) && Rails::VERSION::MAJOR == 3
6
+ end
File without changes
@@ -0,0 +1,6 @@
1
+ require "assets_offline/version"
2
+
3
+ module AssetsOffline
4
+ class Engine < Rails::Engine
5
+ end if defined?(Rails) && Rails::VERSION::MAJOR == 3
6
+ end
@@ -0,0 +1,6 @@
1
+ require "bootstrap_devise_base/version"
2
+
3
+ module BootstrapDeviseBase
4
+ class Engine < Rails::Engine
5
+ end if defined?(Rails) && Rails::VERSION::MAJOR == 3
6
+ end
@@ -0,0 +1,11 @@
1
+ K 25
2
+ svn:wc:ra_dav:version-url
3
+ V 71
4
+ /svn/TorexNG/!svn/ver/3734/trunk/gems/assets_offline/lib/assets_offline
5
+ END
6
+ version.rb
7
+ K 25
8
+ svn:wc:ra_dav:version-url
9
+ V 82
10
+ /svn/TorexNG/!svn/ver/3734/trunk/gems/assets_offline/lib/assets_offline/version.rb
11
+ END
@@ -0,0 +1,62 @@
1
+ 10
2
+
3
+ dir
4
+ 3734
5
+ https://svn.torex.com/svn/TorexNG/trunk/gems/assets_offline/lib/assets_offline
6
+ https://svn.torex.com/svn/TorexNG
7
+
8
+
9
+
10
+ 2011-12-02T15:46:33.442319Z
11
+ 3734
12
+ Anthony.Broome
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+ 45178cb0-7fed-444c-b58d-06e1424a9ccb
28
+
29
+ version.rb
30
+ file
31
+
32
+
33
+
34
+
35
+ 2011-12-02T15:16:44.894451Z
36
+ c47858446fefbb4d8ef552e650df25ea
37
+ 2011-12-02T15:46:33.442319Z
38
+ 3734
39
+ Anthony.Broome
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+ 45
62
+
@@ -0,0 +1,3 @@
1
+ module AssetsOffline
2
+ VERSION = "0.0.3"
3
+ end
@@ -0,0 +1,3 @@
1
+ module BootstrapDeviseBase
2
+ VERSION = "0.0.1"
3
+ end
File without changes
@@ -0,0 +1,65 @@
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
+
38
+ task :statsetup do
39
+ require 'rails/code_statistics'
40
+ ::STATS_DIRECTORIES << %w(Cucumber\ features features) if File.exist?('features')
41
+ ::CodeStatistics::TEST_TYPES << "Cucumber features" if File.exist?('features')
42
+ end
43
+ end
44
+ desc 'Alias for cucumber:ok'
45
+ task :cucumber => 'cucumber:ok'
46
+
47
+ task :default => :cucumber
48
+
49
+ task :features => :cucumber do
50
+ STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***"
51
+ end
52
+
53
+ # In case we don't have ActiveRecord, append a no-op task that we can depend upon.
54
+ task 'db:test:prepare' do
55
+ end
56
+
57
+ task :stats => 'cucumber:statsetup'
58
+ rescue LoadError
59
+ desc 'cucumber rake task not available (cucumber not installed)'
60
+ task :cucumber do
61
+ abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin'
62
+ end
63
+ end
64
+
65
+ end
File without changes
@@ -0,0 +1,977 @@
1
+  (177.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
2
+  (320.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
3
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
4
+ Migrating to CreateUsers (20111121201415)
5
+  (152.0ms) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
6
+  (57.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20111121201415')
7
+ Migrating to AddDeviseToUsers (20111121201511)
8
+  (322.7ms) ALTER TABLE `users` ADD `email` varchar(255) DEFAULT '' NOT NULL
9
+  (349.8ms) ALTER TABLE `users` ADD `encrypted_password` varchar(128) DEFAULT '' NOT NULL
10
+  (333.1ms) ALTER TABLE `users` ADD `reset_password_token` varchar(255)
11
+  (324.4ms) ALTER TABLE `users` ADD `reset_password_sent_at` datetime
12
+  (325.0ms) ALTER TABLE `users` ADD `remember_created_at` datetime
13
+  (317.4ms) ALTER TABLE `users` ADD `sign_in_count` int(11) DEFAULT 0
14
+  (332.7ms) ALTER TABLE `users` ADD `current_sign_in_at` datetime
15
+  (424.6ms) ALTER TABLE `users` ADD `last_sign_in_at` datetime
16
+  (316.5ms) ALTER TABLE `users` ADD `current_sign_in_ip` varchar(255)
17
+  (333.0ms) ALTER TABLE `users` ADD `last_sign_in_ip` varchar(255)
18
+  (365.4ms) CREATE UNIQUE INDEX `index_users_on_email` ON `users` (`email`)
19
+  (390.2ms) CREATE UNIQUE INDEX `index_users_on_reset_password_token` ON `users` (`reset_password_token`)
20
+  (65.4ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20111121201511')
21
+ Migrating to CreateAuthentications (20111127100158)
22
+  (162.5ms) CREATE TABLE `authentications` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `provider` varchar(255), `uid` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
23
+  (65.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20111127100158')
24
+  (0.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
25
+
26
+
27
+ Started GET "/" for 127.0.0.1 at 2011-11-30 17:29:47 +0000
28
+ Processing by HomeController#index as HTML
29
+ Rendered home/index.html.erb within layouts/application (16.6ms)
30
+ Compiled application.css (8ms) (pid 29527)
31
+ Compiled bootstrap.css (741ms) (pid 29527)
32
+ Compiled forms.css (162ms) (pid 29527)
33
+ Compiled mixins.css (58ms) (pid 29527)
34
+ Compiled patterns.css (468ms) (pid 29527)
35
+ Compiled registrations.css (0ms) (pid 29527)
36
+ Compiled reset.css (18ms) (pid 29527)
37
+ Compiled scaffolding.css (29ms) (pid 29527)
38
+ Compiled tables.css (63ms) (pid 29527)
39
+ Compiled type.css (21ms) (pid 29527)
40
+ Compiled variables.css (2ms) (pid 29527)
41
+ Compiled application.js (12ms) (pid 29527)
42
+ Compiled jquery.js (1ms) (pid 29527)
43
+ Compiled jquery_ujs.js (0ms) (pid 29527)
44
+ Compiled registrations.js (35ms) (pid 29527)
45
+ Compiled bootstrap/alerts.js (0ms) (pid 29527)
46
+ Compiled bootstrap/dropdown.js (0ms) (pid 29527)
47
+ Compiled bootstrap/modal.js (0ms) (pid 29527)
48
+ Compiled bootstrap/popover.js (0ms) (pid 29527)
49
+ Compiled bootstrap/scrollspy.js (0ms) (pid 29527)
50
+ Compiled bootstrap/tabs.js (0ms) (pid 29527)
51
+ Compiled bootstrap/twipsy.js (0ms) (pid 29527)
52
+ Completed 200 OK in 1868ms (Views: 1866.9ms | ActiveRecord: 0.0ms)
53
+
54
+
55
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
56
+ Served asset /bootstrap.css - 200 OK (26ms)
57
+
58
+
59
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
60
+ Served asset /mixins.css - 200 OK (1ms)
61
+
62
+
63
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
64
+ Served asset /forms.css - 200 OK (2ms)
65
+
66
+
67
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
68
+ Served asset /registrations.css - 200 OK (3ms)
69
+
70
+
71
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
72
+ Served asset /patterns.css - 200 OK (2ms)
73
+
74
+
75
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
76
+ Served asset /reset.css - 200 OK (2ms)
77
+
78
+
79
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
80
+ Served asset /scaffolding.css - 200 OK (4ms)
81
+
82
+
83
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
84
+ Served asset /type.css - 200 OK (2ms)
85
+
86
+
87
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
88
+ Served asset /tables.css - 200 OK (2ms)
89
+
90
+
91
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
92
+ Served asset /variables.css - 200 OK (5ms)
93
+
94
+
95
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
96
+ Served asset /jquery.js - 200 OK (9ms)
97
+
98
+
99
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
100
+ Served asset /jquery_ujs.js - 200 OK (5ms)
101
+
102
+
103
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
104
+ Served asset /registrations.js - 200 OK (5ms)
105
+
106
+
107
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
108
+ Served asset /bootstrap/alerts.js - 200 OK (3ms)
109
+
110
+
111
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
112
+ Served asset /bootstrap/dropdown.js - 200 OK (3ms)
113
+
114
+
115
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
116
+ Served asset /bootstrap/modal.js - 200 OK (3ms)
117
+
118
+
119
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
120
+ Served asset /bootstrap/popover.js - 200 OK (2ms)
121
+
122
+
123
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
124
+ Served asset /bootstrap/scrollspy.js - 200 OK (45ms)
125
+
126
+
127
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
128
+ Served asset /bootstrap/tabs.js - 200 OK (3ms)
129
+
130
+
131
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:29:50 +0000
132
+ Served asset /bootstrap/twipsy.js - 200 OK (4ms)
133
+
134
+
135
+ Started GET "/users/sign_in" for 127.0.0.1 at 2011-11-30 17:30:01 +0000
136
+ Processing by Devise::SessionsController#new as HTML
137
+ Rendered devise/sessions/new.html.erb within layouts/application (8.4ms)
138
+ Completed 200 OK in 169ms (Views: 31.5ms | ActiveRecord: 4.9ms)
139
+
140
+
141
+ Started POST "/users/sign_in" for 127.0.0.1 at 2011-11-30 17:30:03 +0000
142
+ Processing by Devise::SessionsController#create as HTML
143
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
144
+ Completed 401 Unauthorized in 10ms
145
+ Processing by Devise::SessionsController#new as HTML
146
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
147
+ Rendered devise/sessions/new.html.erb within layouts/application (51.8ms)
148
+ Completed 200 OK in 81ms (Views: 66.8ms | ActiveRecord: 1.2ms)
149
+
150
+
151
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 17:30:06 +0000
152
+ Processing by RegistrationsController#new as HTML
153
+ Rendered registrations/new.html.erb within layouts/application (128.7ms)
154
+ Completed 200 OK in 156ms (Views: 143.7ms | ActiveRecord: 2.7ms)
155
+
156
+
157
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 17:30:08 +0000
158
+ Processing by RegistrationsController#create as HTML
159
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
160
+  (0.1ms) BEGIN
161
+  (0.1ms) ROLLBACK
162
+ Rendered registrations/new.html.erb within layouts/application (4.1ms)
163
+ Completed 200 OK in 49ms (Views: 25.8ms | ActiveRecord: 2.3ms)
164
+
165
+
166
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 17:31:50 +0000
167
+ Processing by RegistrationsController#create as HTML
168
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
169
+  (0.3ms) BEGIN
170
+  (0.2ms) ROLLBACK
171
+ Rendered registrations/new.html.erb within layouts/application (5.0ms)
172
+ Completed 200 OK in 158ms (Views: 22.7ms | ActiveRecord: 2.5ms)
173
+
174
+
175
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
176
+ Served asset /forms.css - 304 Not Modified (0ms)
177
+
178
+
179
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
180
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
181
+
182
+
183
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
184
+ Served asset /patterns.css - 304 Not Modified (0ms)
185
+
186
+
187
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
188
+ Served asset /mixins.css - 304 Not Modified (0ms)
189
+
190
+
191
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
192
+ Served asset /registrations.css - 304 Not Modified (0ms)
193
+
194
+
195
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
196
+ Served asset /tables.css - 304 Not Modified (0ms)
197
+
198
+
199
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
200
+ Served asset /reset.css - 304 Not Modified (0ms)
201
+
202
+
203
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
204
+ Served asset /type.css - 304 Not Modified (1ms)
205
+
206
+
207
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
208
+ Served asset /jquery.js - 304 Not Modified (0ms)
209
+
210
+
211
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
212
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
213
+
214
+
215
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
216
+ Served asset /variables.css - 304 Not Modified (0ms)
217
+
218
+
219
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
220
+ Served asset /registrations.js - 304 Not Modified (0ms)
221
+
222
+
223
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
224
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
225
+
226
+
227
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
228
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
229
+
230
+
231
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
232
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
233
+
234
+
235
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
236
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
237
+
238
+
239
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
240
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
241
+
242
+
243
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
244
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)
245
+
246
+
247
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
248
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (0ms)
249
+
250
+
251
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:31:51 +0000
252
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
253
+
254
+
255
+ Started GET "/users/sign_in" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
256
+ Processing by Devise::SessionsController#new as HTML
257
+ Rendered devise/sessions/new.html.erb within layouts/application (153.4ms)
258
+ Completed 200 OK in 191ms (Views: 168.6ms | ActiveRecord: 2.5ms)
259
+
260
+
261
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
262
+ Served asset /patterns.css - 304 Not Modified (0ms)
263
+
264
+
265
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
266
+ Served asset /mixins.css - 304 Not Modified (0ms)
267
+
268
+
269
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
270
+ Served asset /registrations.css - 304 Not Modified (0ms)
271
+
272
+
273
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
274
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
275
+
276
+
277
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
278
+ Served asset /forms.css - 304 Not Modified (0ms)
279
+
280
+
281
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
282
+ Served asset /reset.css - 304 Not Modified (0ms)
283
+
284
+
285
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
286
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
287
+
288
+
289
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
290
+ Served asset /tables.css - 304 Not Modified (0ms)
291
+
292
+
293
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
294
+ Served asset /type.css - 304 Not Modified (0ms)
295
+
296
+
297
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
298
+ Served asset /variables.css - 304 Not Modified (0ms)
299
+
300
+
301
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
302
+ Served asset /jquery.js - 304 Not Modified (0ms)
303
+
304
+
305
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
306
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
307
+
308
+
309
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
310
+ Served asset /registrations.js - 304 Not Modified (0ms)
311
+
312
+
313
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
314
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
315
+
316
+
317
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
318
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
319
+
320
+
321
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
322
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
323
+
324
+
325
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
326
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
327
+
328
+
329
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
330
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
331
+
332
+
333
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
334
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (0ms)
335
+
336
+
337
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:06 +0000
338
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)
339
+
340
+
341
+ Started POST "/users/sign_in" for 127.0.0.1 at 2011-11-30 17:43:09 +0000
342
+ Processing by Devise::SessionsController#create as HTML
343
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
344
+ Completed 401 Unauthorized in 12ms
345
+ Processing by Devise::SessionsController#new as HTML
346
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
347
+ Rendered devise/sessions/new.html.erb within layouts/application (3.1ms)
348
+ Completed 200 OK in 32ms (Views: 18.0ms | ActiveRecord: 2.6ms)
349
+
350
+
351
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
352
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
353
+
354
+
355
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
356
+ Served asset /mixins.css - 304 Not Modified (0ms)
357
+
358
+
359
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
360
+ Served asset /patterns.css - 304 Not Modified (0ms)
361
+
362
+
363
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
364
+ Served asset /registrations.css - 304 Not Modified (0ms)
365
+
366
+
367
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
368
+ Served asset /forms.css - 304 Not Modified (0ms)
369
+
370
+
371
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
372
+ Served asset /reset.css - 304 Not Modified (0ms)
373
+
374
+
375
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
376
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
377
+
378
+
379
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
380
+ Served asset /tables.css - 304 Not Modified (0ms)
381
+
382
+
383
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
384
+ Served asset /type.css - 304 Not Modified (0ms)
385
+
386
+
387
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
388
+ Served asset /variables.css - 304 Not Modified (0ms)
389
+
390
+
391
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
392
+ Served asset /jquery.js - 304 Not Modified (0ms)
393
+
394
+
395
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
396
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
397
+
398
+
399
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
400
+ Served asset /registrations.js - 304 Not Modified (0ms)
401
+
402
+
403
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
404
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
405
+
406
+
407
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
408
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
409
+
410
+
411
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
412
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
413
+
414
+
415
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
416
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
417
+
418
+
419
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
420
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (0ms)
421
+
422
+
423
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
424
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)
425
+
426
+
427
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:10 +0000
428
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
429
+
430
+
431
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 17:43:13 +0000
432
+ Processing by RegistrationsController#new as HTML
433
+ Rendered registrations/new.html.erb within layouts/application (17.5ms)
434
+ Completed 200 OK in 55ms (Views: 39.0ms | ActiveRecord: 3.2ms)
435
+
436
+
437
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
438
+ Served asset /forms.css - 304 Not Modified (0ms)
439
+
440
+
441
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
442
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
443
+
444
+
445
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
446
+ Served asset /mixins.css - 304 Not Modified (0ms)
447
+
448
+
449
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
450
+ Served asset /patterns.css - 304 Not Modified (0ms)
451
+
452
+
453
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
454
+ Served asset /registrations.css - 304 Not Modified (0ms)
455
+
456
+
457
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
458
+ Served asset /reset.css - 304 Not Modified (0ms)
459
+
460
+
461
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
462
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
463
+
464
+
465
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
466
+ Served asset /tables.css - 304 Not Modified (1ms)
467
+
468
+
469
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
470
+ Served asset /type.css - 304 Not Modified (0ms)
471
+
472
+
473
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
474
+ Served asset /variables.css - 304 Not Modified (0ms)
475
+
476
+
477
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
478
+ Served asset /jquery.js - 304 Not Modified (0ms)
479
+
480
+
481
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
482
+ Served asset /registrations.js - 304 Not Modified (0ms)
483
+
484
+
485
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
486
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
487
+
488
+
489
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
490
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
491
+
492
+
493
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
494
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
495
+
496
+
497
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
498
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
499
+
500
+
501
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
502
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
503
+
504
+
505
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
506
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (0ms)
507
+
508
+
509
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
510
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
511
+
512
+
513
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:14 +0000
514
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)
515
+
516
+
517
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
518
+ Processing by RegistrationsController#create as HTML
519
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
520
+  (0.1ms) BEGIN
521
+  (0.1ms) ROLLBACK
522
+ Rendered registrations/new.html.erb within layouts/application (3.6ms)
523
+ Completed 200 OK in 42ms (Views: 18.1ms | ActiveRecord: 2.1ms)
524
+
525
+
526
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
527
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
528
+
529
+
530
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
531
+ Served asset /forms.css - 304 Not Modified (0ms)
532
+
533
+
534
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
535
+ Served asset /mixins.css - 304 Not Modified (0ms)
536
+
537
+
538
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
539
+ Served asset /reset.css - 304 Not Modified (0ms)
540
+
541
+
542
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
543
+ Served asset /patterns.css - 304 Not Modified (0ms)
544
+
545
+
546
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
547
+ Served asset /registrations.css - 304 Not Modified (0ms)
548
+
549
+
550
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
551
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
552
+
553
+
554
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
555
+ Served asset /tables.css - 304 Not Modified (0ms)
556
+
557
+
558
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
559
+ Served asset /type.css - 304 Not Modified (0ms)
560
+
561
+
562
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
563
+ Served asset /variables.css - 304 Not Modified (0ms)
564
+
565
+
566
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
567
+ Served asset /jquery.js - 304 Not Modified (0ms)
568
+
569
+
570
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
571
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
572
+
573
+
574
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
575
+ Served asset /registrations.js - 304 Not Modified (0ms)
576
+
577
+
578
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
579
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
580
+
581
+
582
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
583
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
584
+
585
+
586
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
587
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
588
+
589
+
590
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
591
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
592
+
593
+
594
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
595
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (0ms)
596
+
597
+
598
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
599
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
600
+
601
+
602
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:43:15 +0000
603
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)
604
+
605
+
606
+ Started GET "/auth/twitter" for 127.0.0.1 at 2011-11-30 17:48:17 +0000
607
+
608
+
609
+ Started GET "/auth/twitter/callback?oauth_token=rxkEZIgbBFDoBUAktrrcvgqG9uwK2mUDyf4s8KuWKRs&oauth_verifier=gXDYn2ZyIeZAgMFNcRYwAEi8XhVdQli0QELdGjBE4w" for 127.0.0.1 at 2011-11-30 17:48:51 +0000
610
+ Processing by AuthenticationsController#create as HTML
611
+ Parameters: {"oauth_token"=>"rxkEZIgbBFDoBUAktrrcvgqG9uwK2mUDyf4s8KuWKRs", "oauth_verifier"=>"gXDYn2ZyIeZAgMFNcRYwAEi8XhVdQli0QELdGjBE4w", "provider"=>"twitter"}
612
+ Authentication Load (0.3ms) SELECT `authentications`.* FROM `authentications` WHERE `authentications`.`provider` = 'twitter' AND `authentications`.`uid` = '19928382' LIMIT 1
613
+  (0.3ms) BEGIN
614
+  (0.1ms) ROLLBACK
615
+ Redirected to http://localhost:3000/users/sign_up
616
+ Completed 302 Found in 78ms
617
+
618
+
619
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
620
+ Processing by RegistrationsController#new as HTML
621
+ Rendered registrations/new.html.erb within layouts/application (3.2ms)
622
+ Completed 200 OK in 61ms (Views: 22.5ms | ActiveRecord: 5.5ms)
623
+
624
+
625
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
626
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
627
+
628
+
629
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
630
+ Served asset /registrations.css - 304 Not Modified (0ms)
631
+
632
+
633
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
634
+ Served asset /mixins.css - 304 Not Modified (41ms)
635
+
636
+
637
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
638
+ Served asset /forms.css - 304 Not Modified (0ms)
639
+
640
+
641
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
642
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
643
+
644
+
645
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
646
+ Served asset /patterns.css - 304 Not Modified (0ms)
647
+
648
+
649
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
650
+ Served asset /reset.css - 304 Not Modified (0ms)
651
+
652
+
653
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
654
+ Served asset /jquery.js - 304 Not Modified (0ms)
655
+
656
+
657
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
658
+ Served asset /type.css - 304 Not Modified (0ms)
659
+
660
+
661
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
662
+ Served asset /tables.css - 304 Not Modified (0ms)
663
+
664
+
665
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
666
+ Served asset /registrations.js - 304 Not Modified (0ms)
667
+
668
+
669
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
670
+ Served asset /variables.css - 304 Not Modified (0ms)
671
+
672
+
673
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
674
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
675
+
676
+
677
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
678
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
679
+
680
+
681
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
682
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
683
+
684
+
685
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
686
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
687
+
688
+
689
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
690
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (0ms)
691
+
692
+
693
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
694
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
695
+
696
+
697
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
698
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)
699
+
700
+
701
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:48:53 +0000
702
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
703
+
704
+
705
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 17:49:04 +0000
706
+ Processing by RegistrationsController#create as HTML
707
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zDkeRsx6UPko2P8URFNS2anJk/ECCoctdD1tO9ObRfU=", "user"=>{"email"=>"Matthew.Preston@Torex.com"}, "commit"=>"Sign up"}
708
+  (19.8ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'matthew.preston@torex.com' LIMIT 1
709
+  (0.2ms) BEGIN
710
+ CACHE (0.0ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'matthew.preston@torex.com' LIMIT 1
711
+ SQL (0.6ms) INSERT INTO `users` (`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`) VALUES ('2011-11-30 17:49:04', NULL, NULL, 'matthew.preston@torex.com', '', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 17:49:04')
712
+ SQL (0.2ms) INSERT INTO `authentications` (`created_at`, `provider`, `uid`, `updated_at`, `user_id`) VALUES ('2011-11-30 17:49:04', 'twitter', '19928382', '2011-11-30 17:49:04', 1)
713
+  (57.4ms) COMMIT
714
+  (0.2ms) BEGIN
715
+  (0.5ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 17:49:04', `current_sign_in_at` = '2011-11-30 17:49:04', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 17:49:04' WHERE `users`.`id` = 1
716
+  (51.1ms) COMMIT
717
+ Redirected to http://localhost:3000/user
718
+ Completed 302 Found in 503ms
719
+
720
+
721
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 17:49:04 +0000
722
+ Processing by HomeController#index as HTML
723
+ Rendered home/index.html.erb within layouts/application (0.0ms)
724
+ User Load (0.7ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
725
+ Completed 200 OK in 77ms (Views: 73.4ms | ActiveRecord: 3.6ms)
726
+
727
+
728
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
729
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
730
+
731
+
732
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
733
+ Served asset /registrations.css - 304 Not Modified (0ms)
734
+
735
+
736
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
737
+ Served asset /patterns.css - 304 Not Modified (0ms)
738
+
739
+
740
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
741
+ Served asset /mixins.css - 304 Not Modified (0ms)
742
+
743
+
744
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
745
+ Served asset /forms.css - 304 Not Modified (0ms)
746
+
747
+
748
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
749
+ Served asset /reset.css - 304 Not Modified (0ms)
750
+
751
+
752
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
753
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
754
+
755
+
756
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
757
+ Served asset /type.css - 304 Not Modified (0ms)
758
+
759
+
760
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
761
+ Served asset /tables.css - 304 Not Modified (0ms)
762
+
763
+
764
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
765
+ Served asset /jquery.js - 304 Not Modified (0ms)
766
+
767
+
768
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
769
+ Served asset /variables.css - 304 Not Modified (0ms)
770
+
771
+
772
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
773
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
774
+
775
+
776
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
777
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
778
+
779
+
780
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
781
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
782
+
783
+
784
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
785
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
786
+
787
+
788
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
789
+ Served asset /registrations.js - 304 Not Modified (0ms)
790
+
791
+
792
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
793
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (1ms)
794
+
795
+
796
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
797
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
798
+
799
+
800
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
801
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
802
+
803
+
804
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 17:49:05 +0000
805
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)
806
+
807
+
808
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
809
+ Processing by HomeController#index as HTML
810
+ Rendered home/index.html.erb within layouts/application (16.8ms)
811
+ Completed 200 OK in 375ms (Views: 374.2ms | ActiveRecord: 0.0ms)
812
+
813
+
814
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
815
+ Served asset /bootstrap.css - 304 Not Modified (14ms)
816
+
817
+
818
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
819
+ Served asset /reset.css - 304 Not Modified (6ms)
820
+
821
+
822
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
823
+ Served asset /tables.css - 304 Not Modified (4ms)
824
+
825
+
826
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
827
+ Served asset /type.css - 304 Not Modified (1ms)
828
+
829
+
830
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
831
+ Served asset /forms.css - 304 Not Modified (2ms)
832
+
833
+
834
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
835
+ Served asset /variables.css - 304 Not Modified (2ms)
836
+
837
+
838
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
839
+ Served asset /jquery.js - 304 Not Modified (4ms)
840
+
841
+
842
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
843
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
844
+
845
+
846
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
847
+ Served asset /registrations.js - 304 Not Modified (1ms)
848
+
849
+
850
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
851
+ Served asset /bootstrap/alerts.js - 304 Not Modified (48ms)
852
+
853
+
854
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
855
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (3ms)
856
+
857
+
858
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
859
+ Served asset /bootstrap/modal.js - 304 Not Modified (6ms)
860
+
861
+
862
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
863
+ Served asset /bootstrap/popover.js - 304 Not Modified (1ms)
864
+
865
+
866
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
867
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (4ms)
868
+
869
+
870
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
871
+ Served asset /scaffolding.css - 304 Not Modified (2ms)
872
+
873
+
874
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
875
+ Served asset /bootstrap/tabs.js - 304 Not Modified (3ms)
876
+
877
+
878
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
879
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (8ms)
880
+
881
+
882
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
883
+ Served asset /mixins.css - 304 Not Modified (1ms)
884
+
885
+
886
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
887
+ Served asset /patterns.css - 304 Not Modified (3ms)
888
+
889
+
890
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:18 +0000
891
+ Served asset /registrations.css - 304 Not Modified (2ms)
892
+
893
+
894
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:34:20 +0000
895
+ Processing by RegistrationsController#new as HTML
896
+ Rendered registrations/new.html.erb within layouts/application (66.3ms)
897
+ Completed 200 OK in 198ms (Views: 83.7ms | ActiveRecord: 4.4ms)
898
+
899
+
900
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
901
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
902
+
903
+
904
+ Started GET "/assets/patterns.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
905
+ Served asset /patterns.css - 304 Not Modified (0ms)
906
+
907
+
908
+ Started GET "/assets/forms.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
909
+ Served asset /forms.css - 304 Not Modified (0ms)
910
+
911
+
912
+ Started GET "/assets/reset.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
913
+ Served asset /reset.css - 304 Not Modified (0ms)
914
+
915
+
916
+ Started GET "/assets/mixins.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
917
+ Served asset /mixins.css - 304 Not Modified (0ms)
918
+
919
+
920
+ Started GET "/assets/registrations.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
921
+ Served asset /registrations.css - 304 Not Modified (0ms)
922
+
923
+
924
+ Started GET "/assets/scaffolding.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
925
+ Served asset /scaffolding.css - 304 Not Modified (0ms)
926
+
927
+
928
+ Started GET "/assets/tables.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
929
+ Served asset /tables.css - 304 Not Modified (0ms)
930
+
931
+
932
+ Started GET "/assets/type.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
933
+ Served asset /type.css - 304 Not Modified (0ms)
934
+
935
+
936
+ Started GET "/assets/variables.css?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
937
+ Served asset /variables.css - 304 Not Modified (0ms)
938
+
939
+
940
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
941
+ Served asset /jquery.js - 304 Not Modified (0ms)
942
+
943
+
944
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
945
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
946
+
947
+
948
+ Started GET "/assets/registrations.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
949
+ Served asset /registrations.js - 304 Not Modified (0ms)
950
+
951
+
952
+ Started GET "/assets/bootstrap/alerts.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
953
+ Served asset /bootstrap/alerts.js - 304 Not Modified (0ms)
954
+
955
+
956
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
957
+ Served asset /bootstrap/dropdown.js - 304 Not Modified (0ms)
958
+
959
+
960
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
961
+ Served asset /bootstrap/modal.js - 304 Not Modified (0ms)
962
+
963
+
964
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
965
+ Served asset /bootstrap/scrollspy.js - 304 Not Modified (0ms)
966
+
967
+
968
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
969
+ Served asset /bootstrap/popover.js - 304 Not Modified (0ms)
970
+
971
+
972
+ Started GET "/assets/bootstrap/tabs.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
973
+ Served asset /bootstrap/tabs.js - 304 Not Modified (0ms)
974
+
975
+
976
+ Started GET "/assets/bootstrap/twipsy.js?body=1" for 127.0.0.1 at 2011-11-30 18:34:21 +0000
977
+ Served asset /bootstrap/twipsy.js - 304 Not Modified (0ms)