adminish 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/lib/adminish.rb +58 -0
  6. data/lib/adminish/version.rb +3 -0
  7. data/lib/tasks/adminish_tasks.rake +4 -0
  8. data/test/adminish_test.rb +11 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/javascripts/categories.js +2 -0
  13. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/test/dummy/app/assets/stylesheets/categories.css +4 -0
  16. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  17. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  18. data/test/dummy/app/controllers/application_controller.rb +9 -0
  19. data/test/dummy/app/controllers/categories_controller.rb +58 -0
  20. data/test/dummy/app/controllers/posts_controller.rb +58 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/helpers/categories_helper.rb +2 -0
  23. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  24. data/test/dummy/app/models/category.rb +2 -0
  25. data/test/dummy/app/models/post.rb +2 -0
  26. data/test/dummy/app/views/categories/_form.html.erb +21 -0
  27. data/test/dummy/app/views/categories/edit.html.erb +6 -0
  28. data/test/dummy/app/views/categories/index.html.erb +27 -0
  29. data/test/dummy/app/views/categories/new.html.erb +5 -0
  30. data/test/dummy/app/views/categories/show.html.erb +9 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/app/views/posts/_form.html.erb +25 -0
  33. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  34. data/test/dummy/app/views/posts/index.html.erb +29 -0
  35. data/test/dummy/app/views/posts/new.html.erb +5 -0
  36. data/test/dummy/app/views/posts/show.html.erb +14 -0
  37. data/test/dummy/bin/bundle +3 -0
  38. data/test/dummy/bin/rails +4 -0
  39. data/test/dummy/bin/rake +4 -0
  40. data/test/dummy/bin/setup +29 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/config/application.rb +26 -0
  43. data/test/dummy/config/boot.rb +5 -0
  44. data/test/dummy/config/database.yml +25 -0
  45. data/test/dummy/config/environment.rb +5 -0
  46. data/test/dummy/config/environments/development.rb +41 -0
  47. data/test/dummy/config/environments/production.rb +79 -0
  48. data/test/dummy/config/environments/test.rb +42 -0
  49. data/test/dummy/config/initializers/assets.rb +11 -0
  50. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  51. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  52. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/test/dummy/config/initializers/inflections.rb +16 -0
  54. data/test/dummy/config/initializers/mime_types.rb +4 -0
  55. data/test/dummy/config/initializers/session_store.rb +3 -0
  56. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  57. data/test/dummy/config/locales/en.yml +23 -0
  58. data/test/dummy/config/routes.rb +59 -0
  59. data/test/dummy/config/secrets.yml +22 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20160627200642_create_posts.rb +10 -0
  62. data/test/dummy/db/migrate/20160627201854_create_categories.rb +9 -0
  63. data/test/dummy/db/schema.rb +29 -0
  64. data/test/dummy/db/test.sqlite3 +0 -0
  65. data/test/dummy/log/development.log +217 -0
  66. data/test/dummy/log/test.log +139 -0
  67. data/test/dummy/public/404.html +67 -0
  68. data/test/dummy/public/422.html +67 -0
  69. data/test/dummy/public/500.html +66 -0
  70. data/test/dummy/public/favicon.ico +0 -0
  71. data/test/dummy/test/controllers/categories_controller_test.rb +49 -0
  72. data/test/dummy/test/controllers/posts_controller_test.rb +49 -0
  73. data/test/dummy/test/fixtures/categories.yml +7 -0
  74. data/test/dummy/test/fixtures/posts.yml +9 -0
  75. data/test/dummy/test/models/category_test.rb +7 -0
  76. data/test/dummy/test/models/post_test.rb +7 -0
  77. data/test/test_helper.rb +20 -0
  78. metadata +205 -0
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,59 @@
1
+ Rails.application.routes.draw do
2
+ resources :categories
3
+ resources :posts
4
+
5
+ # The priority is based upon order of creation: first created -> highest priority.
6
+ # See how all your routes lay out with "rake routes".
7
+
8
+ # You can have the root of your site routed with "root"
9
+ root 'application#models'
10
+
11
+ # Example of regular route:
12
+ # get 'products/:id' => 'catalog#view'
13
+
14
+ # Example of named route that can be invoked with purchase_url(id: product.id)
15
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
16
+
17
+ # Example resource route (maps HTTP verbs to controller actions automatically):
18
+ # resources :products
19
+
20
+ # Example resource route with options:
21
+ # resources :products do
22
+ # member do
23
+ # get 'short'
24
+ # post 'toggle'
25
+ # end
26
+ #
27
+ # collection do
28
+ # get 'sold'
29
+ # end
30
+ # end
31
+
32
+ # Example resource route with sub-resources:
33
+ # resources :products do
34
+ # resources :comments, :sales
35
+ # resource :seller
36
+ # end
37
+
38
+ # Example resource route with more complex sub-resources:
39
+ # resources :products do
40
+ # resources :comments
41
+ # resources :sales do
42
+ # get 'recent', on: :collection
43
+ # end
44
+ # end
45
+
46
+ # Example resource route with concerns:
47
+ # concern :toggleable do
48
+ # post 'toggle'
49
+ # end
50
+ # resources :posts, concerns: :toggleable
51
+ # resources :photos, concerns: :toggleable
52
+
53
+ # Example resource route within a namespace:
54
+ # namespace :admin do
55
+ # # Directs /admin/products/* to Admin::ProductsController
56
+ # # (app/controllers/admin/products_controller.rb)
57
+ # resources :products
58
+ # end
59
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: b8e7b7f24eed65bd641d4b047763c9e598a2ee267e99e0f0006b9e675d31fd325e90a638c4b1f5ee4f01c9f9d57596f4f7ef5648d4860371979b6afd6c6585b7
15
+
16
+ test:
17
+ secret_key_base: 76f0e9ba3664ea6d68c470707116a50ce35ebfb1886d9f49bcc7a7f5e3d61b122a7824d0feba876850a3d17d032062e35f5cd352e8396b0e716e90b1cab392b5
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,10 @@
1
+ class CreatePosts < ActiveRecord::Migration
2
+ def change
3
+ create_table :posts do |t|
4
+ t.string :title
5
+ t.text :body
6
+
7
+ t.timestamps null: false
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ class CreateCategories < ActiveRecord::Migration
2
+ def change
3
+ create_table :categories do |t|
4
+ t.string :title
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,29 @@
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: 20160627201854) do
15
+
16
+ create_table "categories", force: :cascade do |t|
17
+ t.string "title"
18
+ t.datetime "created_at", null: false
19
+ t.datetime "updated_at", null: false
20
+ end
21
+
22
+ create_table "posts", force: :cascade do |t|
23
+ t.string "title"
24
+ t.text "body"
25
+ t.datetime "created_at", null: false
26
+ t.datetime "updated_at", null: false
27
+ end
28
+
29
+ end
@@ -0,0 +1,217 @@
1
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (6.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreatePosts (20160627200642)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160627200642"]]
9
+  (1.3ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ Migrating to CreateCategories (20160627201854)
13
+  (0.1ms) begin transaction
14
+  (0.4ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
15
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160627201854"]]
16
+  (1.0ms) commit transaction
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+
19
+
20
+ Started GET "/" for 127.0.0.1 at 2016-06-27 15:30:17 -0500
21
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+ Processing by ApplicationController#models as HTML
23
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
24
+
25
+ NoMethodError (undefined method `urls_for_model' for #<Adminish::Model:0x007fbc63ecb220 @title="Post", @tag="post">):
26
+ app/controllers/application_controller.rb:7:in `new'
27
+ app/controllers/application_controller.rb:7:in `models'
28
+
29
+
30
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms)
31
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
32
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (19.4ms)
33
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (57.9ms)
34
+
35
+
36
+ Started GET "/" for 127.0.0.1 at 2016-06-27 15:30:46 -0500
37
+ Processing by ApplicationController#models as HTML
38
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
39
+
40
+ NoMethodError (undefined method `urls_for_model' for #<Adminish::Model:0x007fbc65a306a0 @title="Post", @tag="post">):
41
+ app/controllers/application_controller.rb:7:in `new'
42
+ app/controllers/application_controller.rb:7:in `models'
43
+
44
+
45
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
46
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
47
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
48
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.6ms)
49
+
50
+
51
+ Started GET "/" for 127.0.0.1 at 2016-06-27 15:30:47 -0500
52
+ Processing by ApplicationController#models as HTML
53
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
54
+
55
+ NoMethodError (undefined method `urls_for_model' for #<Adminish::Model:0x007fbc63d4a090 @title="Post", @tag="post">):
56
+ app/controllers/application_controller.rb:7:in `new'
57
+ app/controllers/application_controller.rb:7:in `models'
58
+
59
+
60
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms)
61
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
62
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
63
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.0ms)
64
+
65
+
66
+ Started GET "/" for 127.0.0.1 at 2016-06-27 15:30:47 -0500
67
+ Processing by ApplicationController#models as HTML
68
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
69
+
70
+ NoMethodError (undefined method `urls_for_model' for #<Adminish::Model:0x007fbc659e3148 @title="Post", @tag="post">):
71
+ app/controllers/application_controller.rb:7:in `new'
72
+ app/controllers/application_controller.rb:7:in `models'
73
+
74
+
75
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms)
76
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
77
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
78
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.3ms)
79
+
80
+
81
+ Started GET "/" for 127.0.0.1 at 2016-06-27 15:30:47 -0500
82
+ Processing by ApplicationController#models as HTML
83
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
84
+
85
+ NoMethodError (undefined method `urls_for_model' for #<Adminish::Model:0x007fbc6417bee8 @title="Post", @tag="post">):
86
+ app/controllers/application_controller.rb:7:in `new'
87
+ app/controllers/application_controller.rb:7:in `models'
88
+
89
+
90
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
91
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
92
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
93
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.5ms)
94
+
95
+
96
+ Started GET "/" for 127.0.0.1 at 2016-06-27 15:30:56 -0500
97
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
98
+ Processing by ApplicationController#models as HTML
99
+ Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.4ms)
100
+
101
+
102
+ Started GET "/api/admin" for 127.0.0.1 at 2016-06-27 16:12:09 -0500
103
+
104
+ ActionController::RoutingError (No route matches [GET] "/api/admin"):
105
+ actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
106
+ actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
107
+ railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app'
108
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call'
109
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
110
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged'
111
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged'
112
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `call'
113
+ actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
114
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
115
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
116
+ activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
117
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
118
+ actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
119
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
120
+ railties (4.2.6) lib/rails/engine.rb:518:in `call'
121
+ railties (4.2.6) lib/rails/application.rb:165:in `call'
122
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
123
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
124
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
125
+ /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
126
+ /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
127
+ /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
128
+
129
+
130
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
131
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
132
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (21.8ms)
133
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (21.4ms)
134
+ Rendered /Users/t332j375/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.1ms)
135
+
136
+
137
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:12:13 -0500
138
+ Processing by ApplicationController#models as HTML
139
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
140
+
141
+
142
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:12:14 -0500
143
+ Processing by ApplicationController#models as HTML
144
+ Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.0ms)
145
+
146
+
147
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:14:31 -0500
148
+ Processing by ApplicationController#models as HTML
149
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
150
+
151
+
152
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:14:33 -0500
153
+ Processing by ApplicationController#models as HTML
154
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
155
+
156
+
157
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:14:33 -0500
158
+ Processing by ApplicationController#models as HTML
159
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
160
+
161
+
162
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:14:34 -0500
163
+ Processing by ApplicationController#models as HTML
164
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
165
+
166
+
167
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:14:42 -0500
168
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
169
+ Processing by ApplicationController#models as HTML
170
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.3ms)
171
+
172
+
173
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:14 -0500
174
+ Processing by ApplicationController#models as HTML
175
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
176
+
177
+
178
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:25 -0500
179
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
180
+ Processing by ApplicationController#models as HTML
181
+ Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.2ms)
182
+
183
+
184
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:26 -0500
185
+ Processing by ApplicationController#models as HTML
186
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
187
+
188
+
189
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:38 -0500
190
+ Processing by ApplicationController#models as HTML
191
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
192
+
193
+
194
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:39 -0500
195
+ Processing by ApplicationController#models as HTML
196
+ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
197
+
198
+
199
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:40 -0500
200
+ Processing by ApplicationController#models as HTML
201
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
202
+
203
+
204
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:54 -0500
205
+ Processing by ApplicationController#models as HTML
206
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
207
+
208
+
209
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:16:56 -0500
210
+ Processing by ApplicationController#models as HTML
211
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
212
+
213
+
214
+ Started GET "/" for 127.0.0.1 at 2016-06-27 16:17:05 -0500
215
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
216
+ Processing by ApplicationController#models as HTML
217
+ Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)