twitter_ratchet_rails 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/twitter_ratchet_rails/modals.js +41 -0
  3. data/app/assets/javascripts/twitter_ratchet_rails/popovers.js +87 -0
  4. data/app/assets/javascripts/twitter_ratchet_rails/push.js +483 -0
  5. data/app/assets/javascripts/twitter_ratchet_rails/ratchet.js +82 -54
  6. data/app/assets/javascripts/twitter_ratchet_rails/segmented-controllers.js +65 -0
  7. data/app/assets/javascripts/twitter_ratchet_rails/sliders.js +136 -0
  8. data/app/assets/javascripts/twitter_ratchet_rails/toggles.js +118 -0
  9. data/app/assets/stylesheets/twitter_ratchet_rails/ratchet-theme-android.css +113 -79
  10. data/app/assets/stylesheets/twitter_ratchet_rails/ratchet-theme-ios.css +90 -90
  11. data/app/assets/stylesheets/twitter_ratchet_rails/ratchet.css.erb +171 -166
  12. data/lib/twitter_ratchet_rails/version.rb +1 -1
  13. data/test/dummy/app/assets/javascripts/application.js +1 -0
  14. data/test/dummy/app/assets/javascripts/users.js +2 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +1 -0
  16. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  17. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  18. data/test/dummy/app/controllers/users_controller.rb +58 -0
  19. data/test/dummy/app/helpers/users_helper.rb +2 -0
  20. data/test/dummy/app/models/user.rb +2 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +26 -9
  22. data/test/dummy/app/views/users/_form.html.erb +25 -0
  23. data/test/dummy/app/views/users/edit.html.erb +6 -0
  24. data/test/dummy/app/views/users/index.html.erb +51 -0
  25. data/test/dummy/app/views/users/new.html.erb +5 -0
  26. data/test/dummy/app/views/users/show.html.erb +14 -0
  27. data/test/dummy/config/routes.rb +4 -0
  28. data/test/dummy/db/development.sqlite3 +0 -0
  29. data/test/dummy/db/migrate/20140620120642_create_users.rb +10 -0
  30. data/test/dummy/db/schema.rb +23 -0
  31. data/test/dummy/log/development.log +834 -0
  32. data/test/dummy/test/controllers/users_controller_test.rb +49 -0
  33. data/test/dummy/test/fixtures/users.yml +9 -0
  34. data/test/dummy/test/helpers/users_helper_test.rb +4 -0
  35. data/test/{integration/navigation_test.rb → dummy/test/models/user_test.rb} +1 -4
  36. data/test/dummy/tmp/cache/assets/development/sprockets/02365dc2cb50c9b2a206bf87d9181ef9 +0 -0
  37. data/test/dummy/tmp/cache/assets/development/sprockets/05c4a034c993964dc3064d1e840449fd +0 -0
  38. data/test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799 +0 -0
  39. data/test/dummy/tmp/cache/assets/development/sprockets/0e66254a0ff45c104998339ae7c607c5 +0 -0
  40. data/test/dummy/tmp/cache/assets/development/sprockets/0e804c20d0e8d07c2477ce1c0f102adf +0 -0
  41. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  42. data/test/dummy/tmp/cache/assets/development/sprockets/163a4561a07fbc33d8a229302099d8dd +0 -0
  43. data/test/dummy/tmp/cache/assets/development/sprockets/2bd9a33c28022e3c885044a69be41a10 +0 -0
  44. data/test/dummy/tmp/cache/assets/development/sprockets/2d3d6a06270e38c5b1ff9b578aa35990 +0 -0
  45. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  46. data/test/dummy/tmp/cache/assets/development/sprockets/30e315773d1e399a47375b9e13041ed0 +0 -0
  47. data/test/dummy/tmp/cache/assets/development/sprockets/32593d4dfd09e0a66f70fe8095bb1014 +0 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/35fa941d49cfabf40906d7ac81e502b5 +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/3a18489ba6c9aaef36fe82a5eccaa683 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/3b2f71b1e0ed4912133e1322edeebeb4 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/3cff68a61696f3df6cc0150dfe5f0a7a +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/5159109e8d44f828ad6e8c67292647ee +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/56a757e904e5be9c01961ca2d84bf6dd +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/6ecbd847a59c3a487acbaf3a341a116e +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/7c5d2dcee0e90462ec7314c630051fc2 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/90cccb07f2fc8407c9356103eb53c419 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/c71d61ab8105e8c42bf9dc173a72671d +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/d247d1ed3987a4834f22fb867bdca6bc +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/d47632ab6c54bae0f6a62e211aca4938 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/dd1bfc325578c5b436921f471d625afa +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/f333e4623731332ab806c650e07ef890 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/f4a9eb5609520a5f6dbad5dbdbeb37ca +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  75. data/test/dummy/tmp/pids/server.pid +1 -0
  76. metadata +130 -14
  77. data/app/helpers/twitter_ratchet_rails/application_helper.rb +0 -4
  78. data/app/views/layouts/twitter_ratchet_rails/application.html.erb +0 -14
  79. data/test/test_helper.rb +0 -15
  80. data/test/twitter_ratchet_rails_test.rb +0 -7
@@ -1,3 +1,3 @@
1
1
  module TwitterRatchetRails
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -11,3 +11,4 @@
11
11
  // about supported directives.
12
12
  //
13
13
  //= require_tree .
14
+ //= require twitter_ratchet_rails
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -10,4 +10,5 @@
10
10
  *
11
11
  *= require_self
12
12
  *= require_tree .
13
+ *= require ratchet_base
13
14
  */
@@ -0,0 +1,56 @@
1
+ body { background-color: #fff; color: #333; }
2
+
3
+ body, p, ol, ul, td {
4
+ font-family: verdana, arial, helvetica, sans-serif;
5
+ font-size: 13px;
6
+ line-height: 18px;
7
+ }
8
+
9
+ pre {
10
+ background-color: #eee;
11
+ padding: 10px;
12
+ font-size: 11px;
13
+ }
14
+
15
+ a { color: #000; }
16
+ a:visited { color: #666; }
17
+ a:hover { color: #fff; background-color:#000; }
18
+
19
+ div.field, div.actions {
20
+ margin-bottom: 10px;
21
+ }
22
+
23
+ #notice {
24
+ color: green;
25
+ }
26
+
27
+ .field_with_errors {
28
+ padding: 2px;
29
+ background-color: red;
30
+ display: table;
31
+ }
32
+
33
+ #error_explanation {
34
+ width: 450px;
35
+ border: 2px solid red;
36
+ padding: 7px;
37
+ padding-bottom: 0;
38
+ margin-bottom: 20px;
39
+ background-color: #f0f0f0;
40
+ }
41
+
42
+ #error_explanation h2 {
43
+ text-align: left;
44
+ font-weight: bold;
45
+ padding: 5px 5px 5px 15px;
46
+ font-size: 12px;
47
+ margin: -7px;
48
+ margin-bottom: 0px;
49
+ background-color: #c00;
50
+ color: #fff;
51
+ }
52
+
53
+ #error_explanation ul li {
54
+ font-size: 12px;
55
+ list-style: square;
56
+ }
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,58 @@
1
+ class UsersController < ApplicationController
2
+ before_action :set_user, only: [:show, :edit, :update, :destroy]
3
+
4
+ # GET /users
5
+ def index
6
+ @users = User.all
7
+ end
8
+
9
+ # GET /users/1
10
+ def show
11
+ end
12
+
13
+ # GET /users/new
14
+ def new
15
+ @user = User.new
16
+ end
17
+
18
+ # GET /users/1/edit
19
+ def edit
20
+ end
21
+
22
+ # POST /users
23
+ def create
24
+ @user = User.new(user_params)
25
+
26
+ if @user.save
27
+ redirect_to @user, notice: 'User was successfully created.'
28
+ else
29
+ render :new
30
+ end
31
+ end
32
+
33
+ # PATCH/PUT /users/1
34
+ def update
35
+ if @user.update(user_params)
36
+ redirect_to @user, notice: 'User was successfully updated.'
37
+ else
38
+ render :edit
39
+ end
40
+ end
41
+
42
+ # DELETE /users/1
43
+ def destroy
44
+ @user.destroy
45
+ redirect_to users_url, notice: 'User was successfully destroyed.'
46
+ end
47
+
48
+ private
49
+ # Use callbacks to share common setup or constraints between actions.
50
+ def set_user
51
+ @user = User.find(params[:id])
52
+ end
53
+
54
+ # Only allow a trusted parameter "white list" through.
55
+ def user_params
56
+ params.require(:user).permit(:name, :email)
57
+ end
58
+ end
@@ -0,0 +1,2 @@
1
+ module UsersHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ class User < ActiveRecord::Base
2
+ end
@@ -1,14 +1,31 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
- <head>
4
- <title>Dummy</title>
5
- <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
- <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Ratchet template page</title>
10
6
 
11
- <%= yield %>
7
+ <!-- Sets initial viewport load and disables zooming -->
8
+ <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
12
9
 
13
- </body>
10
+ <!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
11
+ <meta name="apple-mobile-web-app-capable" content="yes">
12
+ <meta name="apple-mobile-web-app-status-bar-style" content="black">
13
+
14
+ <%= csrf_meta_tags %>
15
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
16
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
17
+ </head>
18
+ <body>
19
+
20
+ <!-- Make sure all your bars are the first things in your <body> -->
21
+ <header class="bar bar-nav">
22
+ <h1 class="title">Ratchet</h1>
23
+ </header>
24
+
25
+ <!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) -->
26
+ <div class="content">
27
+ <%= yield %>
28
+ </div>
29
+
30
+ </body>
14
31
  </html>
@@ -0,0 +1,25 @@
1
+ <%= form_for(@user) do |f| %>
2
+ <% if @user.errors.any? %>
3
+ <div id="error_explanation">
4
+ <h2><%= pluralize(@user.errors.count, "error") %> prohibited this user from being saved:</h2>
5
+
6
+ <ul>
7
+ <% @user.errors.full_messages.each do |message| %>
8
+ <li><%= message %></li>
9
+ <% end %>
10
+ </ul>
11
+ </div>
12
+ <% end %>
13
+
14
+ <div class="field">
15
+ <%= f.label :name %><br>
16
+ <%= f.text_field :name %>
17
+ </div>
18
+ <div class="field">
19
+ <%= f.label :email %><br>
20
+ <%= f.text_field :email %>
21
+ </div>
22
+ <div class="actions">
23
+ <%= f.submit %>
24
+ </div>
25
+ <% end %>
@@ -0,0 +1,6 @@
1
+ <h1>Editing user</h1>
2
+
3
+ <%= render 'form' %>
4
+
5
+ <%= link_to 'Show', @user %> |
6
+ <%= link_to 'Back', users_path %>
@@ -0,0 +1,51 @@
1
+ <div class="content-padded">
2
+ <span class="icon icon-back"></span>
3
+ <span class="icon icon-bars"></span>
4
+ <span class="icon icon-caret"></span>
5
+ <span class="icon icon-check"></span>
6
+ <span class="icon icon-close"></span>
7
+ <span class="icon icon-code"></span>
8
+ <span class="icon icon-compose"></span>
9
+ <span class="icon icon-download"></span>
10
+ <span class="icon icon-edit"></span>
11
+ <span class="icon icon-forward"></span>
12
+ <span class="icon icon-gear"></span>
13
+ <span class="icon icon-home"></span>
14
+ <span class="icon icon-info"></span>
15
+ <span class="icon icon-list"></span>
16
+ <span class="icon icon-more-vertical"></span>
17
+ <span class="icon icon-more"></span>
18
+ <span class="icon icon-pages"></span>
19
+ <span class="icon icon-pause"></span>
20
+ <span class="icon icon-person"></span>
21
+ <span class="icon icon-play"></span>
22
+ <span class="icon icon-plus"></span>
23
+ <span class="icon icon-refresh"></span>
24
+ <span class="icon icon-search"></span>
25
+ <span class="icon icon-share"></span>
26
+ <span class="icon icon-sound"></span>
27
+ <span class="icon icon-sound2"></span>
28
+ <span class="icon icon-sound3"></span>
29
+ <span class="icon icon-sound4"></span>
30
+ <span class="icon icon-star-filled"></span>
31
+ <span class="icon icon-star"></span>
32
+ <span class="icon icon-stop"></span>
33
+ <span class="icon icon-trash"></span>
34
+ <span class="icon icon-up-nav"></span>
35
+ <span class="icon icon-up"></span>
36
+ <span class="icon icon-right-nav"></span>
37
+ <span class="icon icon-right"></span>
38
+ <span class="icon icon-down-nav"></span>
39
+ <span class="icon icon-down"></span>
40
+ <span class="icon icon-left-nav"></span>
41
+ <span class="icon icon-left"></span>
42
+ </div>
43
+
44
+ <ul class="table-view">
45
+ <% @users.each do |user| %>
46
+ <li class="table-view-cell"><%= user.name %></li>
47
+ <li class="table-view-cell table-view-cell"><%= user.email %></li>
48
+ <% end %>
49
+ </ul>
50
+
51
+ <%= link_to 'New User', new_user_path, data: {ignore: "push" } %>
@@ -0,0 +1,5 @@
1
+ <h1>New user</h1>
2
+
3
+ <%= render 'form' %>
4
+
5
+ <%= link_to 'Back', users_path %>
@@ -0,0 +1,14 @@
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <p>
4
+ <strong>Name:</strong>
5
+ <%= @user.name %>
6
+ </p>
7
+
8
+ <p>
9
+ <strong>Email:</strong>
10
+ <%= @user.email %>
11
+ </p>
12
+
13
+ <%= link_to 'Edit', edit_user_path(@user) %> |
14
+ <%= link_to 'Back', users_path %>
@@ -1,4 +1,8 @@
1
1
  Rails.application.routes.draw do
2
2
 
3
+ resources :users
4
+
5
+ root "users#index"
6
+
3
7
  mount TwitterRatchetRails::Engine => "/twitter_ratchet_rails"
4
8
  end
@@ -0,0 +1,10 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+ t.string :email
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,23 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140620120642) do
15
+
16
+ create_table "users", force: true do |t|
17
+ t.string "name"
18
+ t.string "email"
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
22
+
23
+ end
@@ -0,0 +1,834 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-06-20 10:26:32 +0800
4
+
5
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
6
+ activerecord (4.1.1) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
7
+ activerecord (4.1.1) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
8
+ activerecord (4.1.1) lib/active_record/connection_handling.rb:50:in `establish_connection'
9
+ activerecord (4.1.1) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
10
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
11
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
12
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
13
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:44:in `each'
14
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
15
+ activerecord (4.1.1) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
16
+ activerecord (4.1.1) lib/active_record/base.rb:23:in `<top (required)>'
17
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
18
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
19
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
20
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
22
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
24
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
25
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
26
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
27
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
28
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
29
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
30
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
31
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
32
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
33
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
34
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
35
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
36
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
37
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
38
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
39
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
40
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
41
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
42
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
43
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
44
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
45
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
46
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
47
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
48
+
49
+
50
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
51
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
52
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
53
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.7ms)
54
+
55
+
56
+ Started GET "/" for 127.0.0.1 at 2014-06-20 10:27:25 +0800
57
+
58
+ RuntimeError (Cannot load `Rails.application.database_configuration`:
59
+ Could not load database configuration. No such file - /Users/lanrion/Projects/mygems/twitter_ratchet_rails/test/dummy/config/database.yml):
60
+ railties (4.1.1) lib/rails/application/configuration.rb:105:in `database_configuration'
61
+ activerecord (4.1.1) lib/active_record/railtie.rb:128:in `block (2 levels) in <class:Railtie>'
62
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
63
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
64
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
65
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:44:in `each'
66
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
67
+ activerecord (4.1.1) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
68
+ activerecord (4.1.1) lib/active_record/base.rb:23:in `<top (required)>'
69
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
70
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
71
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
72
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
73
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
74
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
75
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
76
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
77
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
78
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
79
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
80
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
81
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
82
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
83
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
84
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
85
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
86
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
87
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
88
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
89
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
90
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
91
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
92
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
93
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
94
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
95
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
96
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
97
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
98
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
99
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
100
+
101
+
102
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
103
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
104
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
105
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.7ms)
106
+
107
+
108
+ Started GET "/" for 127.0.0.1 at 2014-06-20 10:29:22 +0800
109
+
110
+ RuntimeError (Cannot load `Rails.application.database_configuration`:
111
+ Could not load database configuration. No such file - /Users/lanrion/Projects/mygems/twitter_ratchet_rails/test/dummy/config/database.yml):
112
+ railties (4.1.1) lib/rails/application/configuration.rb:105:in `database_configuration'
113
+ activerecord (4.1.1) lib/active_record/railtie.rb:128:in `block (2 levels) in <class:Railtie>'
114
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
115
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
116
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
117
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:44:in `each'
118
+ activesupport (4.1.1) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
119
+ activerecord (4.1.1) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
120
+ activerecord (4.1.1) lib/active_record/base.rb:23:in `<top (required)>'
121
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
122
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
123
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
124
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
125
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
126
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
127
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
128
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
129
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
130
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
131
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
132
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
133
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
134
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
135
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
136
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
137
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
138
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
139
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
140
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
141
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
142
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
143
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
144
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
145
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
146
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
147
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
148
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
149
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
150
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
151
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
152
+
153
+
154
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
155
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
156
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
157
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.5ms)
158
+
159
+
160
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:05:36 +0800
161
+ Processing by Rails::WelcomeController#index as HTML
162
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/railties-4.1.1/lib/rails/templates/rails/welcome/index.html.erb (1.7ms)
163
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
164
+
165
+
166
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:07:10 +0800
167
+
168
+ ArgumentError (Missing :action key on routes definition, please check your routes.):
169
+ config/routes.rb:5:in `block in <top (required)>'
170
+ config/routes.rb:1:in `<top (required)>'
171
+
172
+
173
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms)
174
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
175
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
176
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.5ms)
177
+
178
+
179
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:07:31 +0800
180
+
181
+ ActiveRecord::PendingMigrationError (
182
+
183
+ Migrations are pending. To resolve this issue, run:
184
+
185
+ bin/rake db:migrate RAILS_ENV=development
186
+
187
+ ):
188
+ activerecord (4.1.1) lib/active_record/migration.rb:389:in `check_pending!'
189
+ activerecord (4.1.1) lib/active_record/migration.rb:377:in `call'
190
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
191
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
192
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
193
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
194
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
195
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
196
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
197
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
198
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
199
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
200
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
201
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
202
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
203
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
204
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
205
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
206
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
207
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
208
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
209
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
210
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
211
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
212
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
213
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
214
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
215
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
216
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
217
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
218
+
219
+
220
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
221
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
222
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
223
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
224
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
225
+  (0.5ms) select sqlite_version(*)
226
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
228
+ Migrating to CreateUsers (20140620120642)
229
+  (0.1ms) begin transaction
230
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime)
231
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140620120642"]]
232
+  (1.6ms) commit transaction
233
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
234
+
235
+
236
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:07:53 +0800
237
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
238
+ Processing by UsersController#index as HTML
239
+ User Load (0.1ms) SELECT "users".* FROM "users"
240
+ Rendered users/index.html.erb within layouts/application (2.0ms)
241
+ Completed 200 OK in 39ms (Views: 37.1ms | ActiveRecord: 0.1ms)
242
+
243
+
244
+ Started GET "/stylesheets/wap.css" for 127.0.0.1 at 2014-06-20 20:07:53 +0800
245
+
246
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/wap.css"):
247
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
248
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
249
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
250
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
251
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
252
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
253
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
254
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
255
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
256
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
257
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
258
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
259
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
260
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
261
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
262
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
263
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
264
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
265
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
266
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
267
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
268
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
269
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
270
+
271
+
272
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
273
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
274
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
275
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.2ms)
276
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (32.4ms)
277
+
278
+
279
+ Started GET "/javascripts/wap.js" for 127.0.0.1 at 2014-06-20 20:07:53 +0800
280
+
281
+ ActionController::RoutingError (No route matches [GET] "/javascripts/wap.js"):
282
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
283
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
284
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
285
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
286
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
287
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
288
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
289
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
290
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
291
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
292
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
293
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
294
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
295
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
296
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
297
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
298
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
299
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
300
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
301
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
302
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
303
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
304
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
305
+
306
+
307
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
308
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
309
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
310
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
311
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.6ms)
312
+
313
+
314
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:08:50 +0800
315
+ Processing by UsersController#index as HTML
316
+ User Load (0.2ms) SELECT "users".* FROM "users"
317
+ Rendered users/index.html.erb within layouts/application (0.7ms)
318
+ Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms)
319
+
320
+
321
+ Started GET "/stylesheets/wap.css" for 127.0.0.1 at 2014-06-20 20:08:50 +0800
322
+
323
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/wap.css"):
324
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
325
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
326
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
327
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
328
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
329
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
330
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
331
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
332
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
333
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
334
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
335
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
336
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
337
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
338
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
339
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
340
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
341
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
342
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
343
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
344
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
345
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
346
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
347
+
348
+
349
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
350
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
351
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
352
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
353
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.3ms)
354
+
355
+
356
+ Started GET "/javascripts/wap.js" for 127.0.0.1 at 2014-06-20 20:08:50 +0800
357
+
358
+ ActionController::RoutingError (No route matches [GET] "/javascripts/wap.js"):
359
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
360
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
361
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
362
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
363
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
364
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
365
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
366
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
367
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
368
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
369
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
370
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
371
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
372
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
373
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
374
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
375
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
376
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
377
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
378
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
379
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
380
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
381
+ /Users/lanrion/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
382
+
383
+
384
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
385
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
386
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
387
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
388
+ Rendered /Users/lanrion/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.3ms)
389
+
390
+
391
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
392
+ Processing by UsersController#index as HTML
393
+ User Load (0.1ms) SELECT "users".* FROM "users"
394
+ Rendered users/index.html.erb within layouts/application (0.6ms)
395
+ Completed 200 OK in 145ms (Views: 144.6ms | ActiveRecord: 0.1ms)
396
+
397
+
398
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
399
+
400
+
401
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
402
+
403
+
404
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
405
+
406
+
407
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
408
+
409
+
410
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
411
+
412
+
413
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
414
+
415
+
416
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
417
+
418
+
419
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
420
+
421
+
422
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:08:59 +0800
423
+
424
+
425
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:10:06 +0800
426
+ Processing by UsersController#index as HTML
427
+ User Load (0.1ms) SELECT "users".* FROM "users"
428
+ Rendered users/index.html.erb within layouts/application (0.6ms)
429
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
430
+
431
+
432
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
433
+
434
+
435
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
436
+
437
+
438
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
439
+
440
+
441
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
442
+
443
+
444
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
445
+
446
+
447
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
448
+
449
+
450
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
451
+
452
+
453
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
454
+
455
+
456
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:07 +0800
457
+
458
+
459
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
460
+ Processing by UsersController#index as HTML
461
+ User Load (0.1ms) SELECT "users".* FROM "users"
462
+ Rendered users/index.html.erb within layouts/application (0.9ms)
463
+ Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms)
464
+
465
+
466
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
467
+
468
+
469
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
470
+
471
+
472
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
473
+
474
+
475
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
476
+
477
+
478
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
479
+
480
+
481
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
482
+
483
+
484
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
485
+
486
+
487
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
488
+
489
+
490
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:10:17 +0800
491
+
492
+
493
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
494
+ Processing by UsersController#index as HTML
495
+ User Load (0.2ms) SELECT "users".* FROM "users"
496
+ Rendered users/index.html.erb within layouts/application (2.1ms)
497
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.2ms)
498
+
499
+
500
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
501
+
502
+
503
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
504
+
505
+
506
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
507
+
508
+
509
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
510
+
511
+
512
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
513
+
514
+
515
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
516
+
517
+
518
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
519
+
520
+
521
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
522
+
523
+
524
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
525
+
526
+
527
+ Started GET "/assets/ratchicons.woff" for 127.0.0.1 at 2014-06-20 20:12:20 +0800
528
+
529
+
530
+ Started GET "/" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
531
+ Processing by UsersController#index as HTML
532
+ User Load (0.2ms) SELECT "users".* FROM "users"
533
+ Rendered users/index.html.erb within layouts/application (1.1ms)
534
+ Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.2ms)
535
+
536
+
537
+ Started GET "/assets/application.css?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
538
+
539
+
540
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
541
+
542
+
543
+ Started GET "/assets/users.css?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
544
+
545
+
546
+ Started GET "/assets/scaffold.css?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
547
+
548
+
549
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
550
+
551
+
552
+ Started GET "/assets/application.js?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
553
+
554
+
555
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
556
+
557
+
558
+ Started GET "/assets/ratchet_base.css?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
559
+
560
+
561
+ Started GET "/assets/users.js?body=1" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
562
+
563
+
564
+ Started GET "/assets/ratchicons.woff" for 192.168.1.100 at 2014-06-20 20:18:46 +0800
565
+
566
+
567
+ Started GET "/" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
568
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
569
+ Processing by UsersController#index as HTML
570
+ User Load (0.3ms) SELECT "users".* FROM "users"
571
+ Rendered users/index.html.erb within layouts/application (2.7ms)
572
+ Completed 200 OK in 67ms (Views: 65.3ms | ActiveRecord: 0.3ms)
573
+
574
+
575
+ Started GET "/assets/scaffold.css?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
576
+
577
+
578
+ Started GET "/assets/ratchet_base.css?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
579
+
580
+
581
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
582
+
583
+
584
+ Started GET "/assets/users.css?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
585
+
586
+
587
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
588
+
589
+
590
+ Started GET "/assets/application.js?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
591
+
592
+
593
+ Started GET "/assets/users.js?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
594
+
595
+
596
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
597
+
598
+
599
+ Started GET "/assets/application.css?body=1" for 192.168.1.100 at 2014-06-20 20:24:40 +0800
600
+
601
+
602
+ Started GET "/" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
603
+ Processing by UsersController#index as HTML
604
+ User Load (0.1ms) SELECT "users".* FROM "users"
605
+ Rendered users/index.html.erb within layouts/application (1.3ms)
606
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.1ms)
607
+
608
+
609
+ Started GET "/assets/application.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
610
+
611
+
612
+ Started GET "/assets/users.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
613
+
614
+
615
+ Started GET "/assets/ratchet_base.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
616
+
617
+
618
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
619
+
620
+
621
+ Started GET "/assets/scaffold.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
622
+
623
+
624
+ Started GET "/assets/users.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
625
+
626
+
627
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
628
+
629
+
630
+ Started GET "/assets/application.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
631
+
632
+
633
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:09 +0800
634
+
635
+
636
+ Started GET "/users/new" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
637
+ Processing by UsersController#new as HTML
638
+ Rendered users/_form.html.erb (22.9ms)
639
+ Rendered users/new.html.erb within layouts/application (27.0ms)
640
+ Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.3ms)
641
+
642
+
643
+ Started GET "/assets/application.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
644
+
645
+
646
+ Started GET "/assets/scaffold.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
647
+
648
+
649
+ Started GET "/assets/users.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
650
+
651
+
652
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
653
+
654
+
655
+ Started GET "/assets/ratchet_base.css?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
656
+
657
+
658
+ Started GET "/assets/users.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
659
+
660
+
661
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
662
+
663
+
664
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:10 +0800
665
+
666
+
667
+ Started GET "/assets/application.js?body=1" for 192.168.1.100 at 2014-06-20 20:25:11 +0800
668
+
669
+
670
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:25:30 +0800
671
+ Processing by UsersController#index as */*
672
+ User Load (0.1ms) SELECT "users".* FROM "users"
673
+ Rendered users/index.html.erb within layouts/application (1.2ms)
674
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.1ms)
675
+
676
+
677
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:32 +0800
678
+
679
+
680
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:35 +0800
681
+
682
+
683
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:35 +0800
684
+
685
+
686
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:35 +0800
687
+
688
+
689
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:36 +0800
690
+
691
+
692
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:25:44 +0800
693
+ Processing by UsersController#index as HTML
694
+ User Load (0.1ms) SELECT "users".* FROM "users"
695
+ Rendered users/index.html.erb within layouts/application (0.6ms)
696
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
697
+
698
+
699
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:45 +0800
700
+
701
+
702
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:45 +0800
703
+
704
+
705
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:46 +0800
706
+
707
+
708
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:47 +0800
709
+
710
+
711
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:25:47 +0800
712
+
713
+
714
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 127.0.0.1 at 2014-06-20 20:25:49 +0800
715
+
716
+
717
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:25:49 +0800
718
+
719
+
720
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 127.0.0.1 at 2014-06-20 20:25:50 +0800
721
+
722
+
723
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:25:50 +0800
724
+
725
+
726
+ Started GET "/assets/ratchicons.woff" for 127.0.0.1 at 2014-06-20 20:25:55 +0800
727
+
728
+
729
+ Started GET "/users/new" for 127.0.0.1 at 2014-06-20 20:26:01 +0800
730
+ Processing by UsersController#new as HTML
731
+ Rendered users/_form.html.erb (2.8ms)
732
+ Rendered users/new.html.erb within layouts/application (4.0ms)
733
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
734
+
735
+
736
+ Started POST "/users" for 127.0.0.1 at 2014-06-20 20:27:36 +0800
737
+ Processing by UsersController#create as HTML
738
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"wD/rhxbA+UmxRYAa5w0hawr2+0T8GnsqTT8K177IiZA=", "user"=>{"name"=>"邓怀涛", "email"=>"15"}, "commit"=>"Create User"}
739
+  (0.1ms) begin transaction
740
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-20 12:27:36.155283"], ["email", "15"], ["name", "邓怀涛"], ["updated_at", "2014-06-20 12:27:36.155283"]]
741
+  (0.5ms) commit transaction
742
+ Redirected to http://2f6dbf6c.ngrok.com/users/1
743
+ Completed 302 Found in 7ms (ActiveRecord: 1.4ms)
744
+
745
+
746
+ Started GET "/users/1" for 127.0.0.1 at 2014-06-20 20:27:43 +0800
747
+ Processing by UsersController#show as HTML
748
+ Parameters: {"id"=>"1"}
749
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
750
+ Rendered users/show.html.erb within layouts/application (1.1ms)
751
+ Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.2ms)
752
+
753
+
754
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:27:47 +0800
755
+
756
+
757
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:27:47 +0800
758
+
759
+
760
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:27:47 +0800
761
+
762
+
763
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:27:48 +0800
764
+
765
+
766
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:27:49 +0800
767
+
768
+
769
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:28:07 +0800
770
+ Processing by UsersController#index as HTML
771
+ User Load (0.1ms) SELECT "users".* FROM "users"
772
+ Rendered users/index.html.erb within layouts/application (1.3ms)
773
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.1ms)
774
+
775
+
776
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:08 +0800
777
+
778
+
779
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:08 +0800
780
+
781
+
782
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:08 +0800
783
+
784
+
785
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:09 +0800
786
+
787
+
788
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:09 +0800
789
+
790
+
791
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:11 +0800
792
+
793
+
794
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:11 +0800
795
+
796
+
797
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:11 +0800
798
+
799
+
800
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:12 +0800
801
+
802
+
803
+ Started GET "/" for 127.0.0.1 at 2014-06-20 20:28:13 +0800
804
+ Processing by UsersController#index as HTML
805
+ User Load (0.1ms) SELECT "users".* FROM "users"
806
+ Rendered users/index.html.erb within layouts/application (0.6ms)
807
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
808
+
809
+
810
+ Started GET "/assets/ratchet_base.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:14 +0800
811
+
812
+
813
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:14 +0800
814
+
815
+
816
+ Started GET "/assets/twitter_ratchet_rails/ratchet.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:14 +0800
817
+
818
+
819
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:14 +0800
820
+
821
+
822
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-20 20:28:15 +0800
823
+
824
+
825
+ Started GET "/assets/twitter_ratchet_rails/ratchet.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:15 +0800
826
+
827
+
828
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:15 +0800
829
+
830
+
831
+ Started GET "/assets/twitter_ratchet_rails.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:15 +0800
832
+
833
+
834
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-20 20:28:19 +0800