diff --git a/Gemfile b/Gemfile index d610007..1e4bc79 100644 --- a/Gemfile +++ b/Gemfile @@ -32,6 +32,13 @@ group :test do gem 'webrat', '0.7.1' gem 'spork', '0.9.0.rc9' gem 'factory_girl_rails','1.0' + gem 'rb-fsevent' + gem 'growl_notify' + gem 'guard' + gem 'guard-rspec' + gem 'guard-livereload' + gem 'guard-spork' + end # Use unicorn as the web server # gem 'unicorn' diff --git a/Gemfile.lock b/Gemfile.lock index c979da7..aac25b2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -35,6 +35,7 @@ GEM activesupport (= 3.1.0) activesupport (3.1.0) multi_json (~> 1.0) + addressable (2.2.6) arel (2.2.1) bcrypt-ruby (3.0.1) builder (3.0.0) @@ -46,7 +47,11 @@ GEM execjs coffee-script-source (1.1.2) diff-lcs (1.1.3) + em-websocket (0.3.1) + addressable (>= 2.1.1) + eventmachine (>= 0.12.9) erubis (2.7.0) + eventmachine (0.12.10) execjs (1.2.6) multi_json (~> 1.0) factory_girl (1.3.3) @@ -55,6 +60,19 @@ GEM rails (>= 3.0.0.beta4) faker (0.3.1) gravatar_image_tag (1.0.0) + growl_notify (0.0.3) + rb-appscript + guard (0.8.4) + thor (~> 0.14.6) + guard-livereload (0.3.1) + em-websocket (>= 0.2.0) + guard (>= 0.4.0) + multi_json (~> 1.0.3) + guard-rspec (0.5.0) + guard (>= 0.8.4) + guard-spork (0.3.1) + guard (>= 0.8.4) + spork (>= 0.8.4) haml (3.1.3) hike (1.2.1) i18n (0.6.0) @@ -96,6 +114,8 @@ GEM rdoc (~> 3.4) thor (~> 0.14.6) rake (0.9.2) + rb-appscript (0.6.1) + rb-fsevent (0.4.3.1) rdoc (3.9.4) rspec (2.6.0) rspec-core (~> 2.6.0) @@ -146,10 +166,16 @@ DEPENDENCIES factory_girl_rails (= 1.0) faker (= 0.3.1) gravatar_image_tag (= 1.0.0) + growl_notify + guard + guard-livereload + guard-rspec + guard-spork haml jquery-rails kaminari rails (= 3.1.0) + rb-fsevent rspec-rails (= 2.6.1) sass-rails (~> 3.1.0) spork (= 0.9.0.rc9) diff --git a/Guardfile b/Guardfile new file mode 100644 index 0000000..0967a33 --- /dev/null +++ b/Guardfile @@ -0,0 +1,44 @@ +# A sample Guardfile +# More info at https://github.com/guard/guard#readme + + +guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do + watch('config/application.rb') + watch('config/environment.rb') + watch(%r{^config/environments/.+\.rb$}) + watch(%r{^config/initializers/.+\.rb$}) + watch('Gemfile') + watch('Gemfile.lock') + watch('spec/spec_helper.rb') + watch('test/test_helper.rb') +end + +guard 'livereload' do + watch(%r{app/.+\.(erb|haml)}) + watch(%r{app/helpers/.+\.rb}) + watch(%r{(public/|app/assets).+\.(css|js|html)}) + watch(%r{(app/assets/.+\.css)\.s[ac]ss}) { |m| m[1] } + watch(%r{(app/assets/.+\.js)\.coffee}) { |m| m[1] } + watch(%r{config/locales/.+\.yml}) +end + +guard 'rspec', :version => 2 do + watch(%r{^spec/.+_spec\.rb$}) + watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } + watch('spec/spec_helper.rb') { "spec" } + + # Rails example + watch(%r{^spec/.+_spec\.rb$}) + watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } + watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } + watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] } + watch(%r{^spec/support/(.+)\.rb$}) { "spec" } + watch('spec/spec_helper.rb') { "spec" } + watch('config/routes.rb') { "spec/routing" } + watch('app/controllers/application_controller.rb') { "spec/controllers" } + # Capybara request specs + watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/requests/#{m[1]}_spec.rb" } +end + + + diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index b1265af..683f760 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -2,94 +2,61 @@ require 'spork' Spork.prefork do - # Loading more in this block will cause your tests to run faster. However, - # if you change any configuration or code from libraries loaded here, you'll - # need to restart spork for it take effect. - ENV["RAILS_ENV"] ||= 'test' - unless defined?(Rails) - require File.dirname(__FILE__) + "/../config/environment" - end - require 'rspec/rails' - - # Requires supporting files with custom matchers and macros, etc, - # in ./support/ and its subdirectories. - Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} - - Rspec.configure do |config| - # == Mock Framework - # - # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: - # - # config.mock_with :mocha - # config.mock_with :flexmock - # config.mock_with :rr - config.mock_with :rspec - - config.fixture_path = "#{::Rails.root}/spec/fixtures" - - # If you're not using ActiveRecord, or you'd prefer not to run each of your - # examples within a transaction, comment the following line or assign false - # instead of true. - config.use_transactional_fixtures = true - - ### Part of a Spork hack. See http://bit.ly/arY19y - # Emulate initializer set_clear_dependencies_hook in - # railties/lib/rails/application/bootstrap.rb - ActiveSupport::Dependencies.clear - end - end + # --- Instructions --- + # - Sort through your spec_helper file. Place as much environment loading + # code that you don't normally modify during development in the + # Spork.prefork block. + # - Place the rest under Spork.each_run block + # - Any code that is left outside of the blocks will be ran during preforking + # and during each_run! + # - These instructions should self-destruct in 10 seconds. If they don't, + # feel free to delete them. + # - Spork.each_run do -end -Spork.each_run do - # This code will be run each time you run your specs. - -end -# --- Instructions --- -# - Sort through your spec_helper file. Place as much environment loading -# code that you don't normally modify during development in the -# Spork.prefork block. -# - Place the rest under Spork.each_run block -# - Any code that is left outside of the blocks will be ran during preforking -# and during each_run! -# - These instructions should self-destruct in 10 seconds. If they don't, -# feel free to delete them. -# + # This file is copied to ~/spec when you run 'ruby script/generate rspec' + # from the project root directory. + ENV["RAILS_ENV"] ||= 'test' + require File.expand_path("../../config/environment", __FILE__) + require 'rspec/rails' + # Requires supporting files with custom matchers and macros, etc, + # in ./support/ and its subdirectories. + Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} + RSpec.configure do |config| + # == Mock Framework + # + # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: + # + # config.mock_with :mocha + # config.mock_with :flexmock + # config.mock_with :rr + config.mock_with :rspec -# This file is copied to ~/spec when you run 'ruby script/generate rspec' -# from the project root directory. -ENV["RAILS_ENV"] ||= 'test' -require File.expand_path("../../config/environment", __FILE__) -require 'rspec/rails' + config.fixture_path = "#{::Rails.root}/spec/fixtures" -# Requires supporting files with custom matchers and macros, etc, -# in ./support/ and its subdirectories. -Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} + # If you're not using ActiveRecord, or you'd prefer not to run each of your + # examples within a transaction, comment the following line or assign false + # instead of true. + config.use_transactional_fixtures = true -RSpec.configure do |config| - # == Mock Framework - # - # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: - # - # config.mock_with :mocha - # config.mock_with :flexmock - # config.mock_with :rr - config.mock_with :rspec - - config.fixture_path = "#{::Rails.root}/spec/fixtures" - - # If you're not using ActiveRecord, or you'd prefer not to run each of your - # examples within a transaction, comment the following line or assign false - # instead of true. - config.use_transactional_fixtures = true - - def test_sign_in(user) - controller.sign_in(user) + def test_sign_in(user) + controller.sign_in(user) + end + + end + + def test_sign_in(user) + controller.sign_in(user) + end end - + + +Spork.each_run do + end + + diff --git a/webrat.log b/webrat.log index 70affbb..eb5d4a2 100644 --- a/webrat.log +++ b/webrat.log @@ -1469,3 +1469,913 @@ REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http:// REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"} +REQUESTING PAGE: GET /users/1/edit with {} and HTTP headers {} +REQUESTING PAGE: GET http://www.example.com/signin with {} and HTTP headers {"HTTP_REFERER"=>"/users/1/edit"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/signin"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/1/edit"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} +REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /pages/home?mobile=1 with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>""}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>"Lorem ipsum dolor sit amet"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-380@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-381@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: POST /relationships/1 with {"utf8"=>"✓", "_method"=>"delete", "commit"=>"Unfollow"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships/1"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"", "username"=>"", "email"=>"", "password"=>"", "password_confirmation"=>""}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"RomelCampbell", "username"=>"desertfox", "email"=>"RomelCampbell@gmail.com", "password"=>"foobar", "password_confirmation"=>"foobar"}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"", "password"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"desertfox1", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"", "token"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "token"=>"2011-10-09 23:53:07 UTC---16testtoken"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions/create_with_token"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"person-384@example.com", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"'person-385@example.com'", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} +REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"} +REQUESTING PAGE: GET /users/1/edit with {} and HTTP headers {} +REQUESTING PAGE: GET http://www.example.com/signin with {} and HTTP headers {"HTTP_REFERER"=>"/users/1/edit"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/signin"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/1/edit"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} +REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /pages/home?mobile=1 with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>""}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>"Lorem ipsum dolor sit amet"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-380@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-381@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: POST /relationships/1 with {"utf8"=>"✓", "_method"=>"delete", "commit"=>"Unfollow"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships/1"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"", "username"=>"", "email"=>"", "password"=>"", "password_confirmation"=>""}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"RomelCampbell", "username"=>"desertfox", "email"=>"RomelCampbell@gmail.com", "password"=>"foobar", "password_confirmation"=>"foobar"}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"", "password"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"desertfox1", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"", "token"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "token"=>"2011-10-10 00:17:45 UTC---16testtoken"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions/create_with_token"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"person-384@example.com", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"'person-385@example.com'", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} +REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"} +REQUESTING PAGE: GET /users/1/edit with {} and HTTP headers {} +REQUESTING PAGE: GET http://www.example.com/signin with {} and HTTP headers {"HTTP_REFERER"=>"/users/1/edit"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/signin"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/1/edit"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} +REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /pages/home?mobile=1 with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>""}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>"Lorem ipsum dolor sit amet"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-380@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-381@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: POST /relationships/1 with {"utf8"=>"✓", "_method"=>"delete", "commit"=>"Unfollow"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships/1"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"", "username"=>"", "email"=>"", "password"=>"", "password_confirmation"=>""}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"RomelCampbell", "username"=>"desertfox", "email"=>"RomelCampbell@gmail.com", "password"=>"foobar", "password_confirmation"=>"foobar"}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"", "password"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"desertfox1", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"", "token"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "token"=>"2011-10-10 00:19:17 UTC---16testtoken"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions/create_with_token"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"person-384@example.com", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"'person-385@example.com'", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} +REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"} +REQUESTING PAGE: GET /users/1/edit with {} and HTTP headers {} +REQUESTING PAGE: GET http://www.example.com/signin with {} and HTTP headers {"HTTP_REFERER"=>"/users/1/edit"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/signin"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/1/edit"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} +REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /pages/home?mobile=1 with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>""}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>"Lorem ipsum dolor sit amet"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-380@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-381@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: POST /relationships/1 with {"utf8"=>"✓", "_method"=>"delete", "commit"=>"Unfollow"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships/1"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"", "username"=>"", "email"=>"", "password"=>"", "password_confirmation"=>""}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"RomelCampbell", "username"=>"desertfox", "email"=>"RomelCampbell@gmail.com", "password"=>"foobar", "password_confirmation"=>"foobar"}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"", "password"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"desertfox1", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"", "token"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "token"=>"2011-10-10 00:20:35 UTC---16testtoken"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions/create_with_token"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"person-384@example.com", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"'person-385@example.com'", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} +REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"} +REQUESTING PAGE: GET /users/1/edit with {} and HTTP headers {} +REQUESTING PAGE: GET http://www.example.com/signin with {} and HTTP headers {"HTTP_REFERER"=>"/users/1/edit"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/signin"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/1/edit"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} +REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /pages/home?mobile=1 with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>""}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>"Lorem ipsum dolor sit amet"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-380@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-381@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: POST /relationships/1 with {"utf8"=>"✓", "_method"=>"delete", "commit"=>"Unfollow"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships/1"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"", "username"=>"", "email"=>"", "password"=>"", "password_confirmation"=>""}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"RomelCampbell", "username"=>"desertfox", "email"=>"RomelCampbell@gmail.com", "password"=>"foobar", "password_confirmation"=>"foobar"}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"", "password"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"desertfox1", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"", "token"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "token"=>"2011-10-10 00:21:30 UTC---16testtoken"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions/create_with_token"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"person-384@example.com", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"'person-385@example.com'", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} +REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"} +REQUESTING PAGE: GET /users/1/edit with {} and HTTP headers {} +REQUESTING PAGE: GET http://www.example.com/signin with {} and HTTP headers {"HTTP_REFERER"=>"/users/1/edit"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/signin"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/1/edit"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} +REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /pages/home?mobile=1 with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>""}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>"Lorem ipsum dolor sit amet"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-380@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-381@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: POST /relationships/1 with {"utf8"=>"✓", "_method"=>"delete", "commit"=>"Unfollow"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships/1"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"", "username"=>"", "email"=>"", "password"=>"", "password_confirmation"=>""}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"RomelCampbell", "username"=>"desertfox", "email"=>"RomelCampbell@gmail.com", "password"=>"foobar", "password_confirmation"=>"foobar"}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"", "password"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"desertfox1", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"", "token"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "token"=>"2011-10-10 00:22:18 UTC---16testtoken"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions/create_with_token"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"person-384@example.com", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"'person-385@example.com'", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} +REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"} +REQUESTING PAGE: GET /users/1/edit with {} and HTTP headers {} +REQUESTING PAGE: GET http://www.example.com/signin with {} and HTTP headers {"HTTP_REFERER"=>"/users/1/edit"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/signin"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/1/edit"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} +REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {} and HTTP headers {} +REQUESTING PAGE: GET /pages/home?mobile=1 with {} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>""}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>"Lorem ipsum dolor sit amet"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-380@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"person-381@example.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.2"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /microposts with {"utf8"=>"✓", "micropost"=>{"content"=>" @desertfox1 micropost sent to Romel Campbell"}, "commit"=>"Submit"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/microposts"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: GET /signin.1 with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin.1"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/2 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: POST /relationships with {"utf8"=>"✓", "relationship"=>{"followed_id"=>"2"}, "commit"=>"Follow"} and HTTP headers {"HTTP_REFERER"=>"/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships"} +REQUESTING PAGE: POST /relationships/1 with {"utf8"=>"✓", "_method"=>"delete", "commit"=>"Unfollow"} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/users/2"} +REQUESTING PAGE: GET http://www.example.com/users/2 with {} and HTTP headers {"HTTP_REFERER"=>"/relationships/1"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"", "username"=>"", "email"=>"", "password"=>"", "password_confirmation"=>""}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signup with {} and HTTP headers {} +REQUESTING PAGE: POST /users with {"utf8"=>"✓", "user"=>{"name"=>"RomelCampbell", "username"=>"desertfox", "email"=>"RomelCampbell@gmail.com", "password"=>"foobar", "password_confirmation"=>"foobar"}, "commit"=>"Sign up"} and HTTP headers {"HTTP_REFERER"=>"/signup"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"", "password"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"desertfox1", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /signout with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/signout"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"", "token"=>""}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET /sessions/token with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/create_with_token with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "token"=>"2011-10-10 00:22:58 UTC---16testtoken"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/sessions/token"} +REQUESTING PAGE: GET http://www.example.com/users/1/edit with {} and HTTP headers {"HTTP_REFERER"=>"/sessions/create_with_token"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"person-384@example.com", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users with {"utf8"=>"✓", "search"=>"'person-385@example.com'", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET / with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/"} +REQUESTING PAGE: GET /signin with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com", "password"=>"foobar"}, "commit"=>"Sign in"} and HTTP headers {"HTTP_REFERER"=>"/signin"} +REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/sessions"} +REQUESTING PAGE: GET /users/1 with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"} +REQUESTING PAGE: GET /users/1 with {"utf8"=>"✓", "search"=>"Foo Bar", "commit"=>"Search"} and HTTP headers {"HTTP_REFERER"=>"/users/1"} +REQUESTING PAGE: GET /sessions/password with {} and HTTP headers {} +REQUESTING PAGE: POST /sessions/send_password_request with {"utf8"=>"✓", "session"=>{"email"=>"RomelCampbell@gmail.com"}, "commit"=>"Send instructions"} and HTTP headers {"HTTP_REFERER"=>"/sessions/password"}