paginas 0.1.0

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 (115) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/paginas.js +1 -0
  6. data/app/assets/javascripts/paginas/application.js +13 -0
  7. data/app/assets/javascripts/paginas/pages.js +2 -0
  8. data/app/assets/stylesheets/paginas/application.css +15 -0
  9. data/app/assets/stylesheets/paginas/pages.css +4 -0
  10. data/app/assets/stylesheets/scaffold.css +56 -0
  11. data/app/controllers/paginas/application_controller.rb +3 -0
  12. data/app/controllers/paginas/pages_controller.rb +61 -0
  13. data/app/helpers/paginas/application_helper.rb +11 -0
  14. data/app/helpers/paginas/pages_helper.rb +4 -0
  15. data/app/models/paginas/page.rb +5 -0
  16. data/app/views/paginas/pages/_form.html.erb +30 -0
  17. data/app/views/paginas/pages/display.html.erb +2 -0
  18. data/app/views/paginas/pages/edit.html.erb +6 -0
  19. data/app/views/paginas/pages/featured.html.erb +5 -0
  20. data/app/views/paginas/pages/index.html.erb +29 -0
  21. data/app/views/paginas/pages/new.html.erb +5 -0
  22. data/app/views/paginas/pages/show.html.erb +8 -0
  23. data/config/routes.rb +6 -0
  24. data/db/migrate/20150212133316_create_paginas_pages.rb +11 -0
  25. data/lib/generators/paginas/view_generator.rb +91 -0
  26. data/lib/paginas.rb +4 -0
  27. data/lib/paginas/engine.rb +5 -0
  28. data/lib/paginas/version.rb +3 -0
  29. data/lib/tasks/paginas_tasks.rake +4 -0
  30. data/test/controllers/paginas/pages_controller_test.rb +51 -0
  31. data/test/dummy/README.rdoc +28 -0
  32. data/test/dummy/Rakefile +6 -0
  33. data/test/dummy/app/assets/javascripts/application.js +14 -0
  34. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  35. data/test/dummy/app/controllers/application_controller.rb +5 -0
  36. data/test/dummy/app/helpers/application_helper.rb +2 -0
  37. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  38. data/test/dummy/bin/bundle +3 -0
  39. data/test/dummy/bin/rails +4 -0
  40. data/test/dummy/bin/rake +4 -0
  41. data/test/dummy/bin/setup +29 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/dummy/config/application.rb +26 -0
  44. data/test/dummy/config/boot.rb +5 -0
  45. data/test/dummy/config/database.yml +25 -0
  46. data/test/dummy/config/environment.rb +5 -0
  47. data/test/dummy/config/environments/development.rb +41 -0
  48. data/test/dummy/config/environments/production.rb +79 -0
  49. data/test/dummy/config/environments/test.rb +42 -0
  50. data/test/dummy/config/initializers/assets.rb +11 -0
  51. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  52. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  53. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  54. data/test/dummy/config/initializers/inflections.rb +16 -0
  55. data/test/dummy/config/initializers/mime_types.rb +4 -0
  56. data/test/dummy/config/initializers/session_store.rb +3 -0
  57. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  58. data/test/dummy/config/locales/en.yml +23 -0
  59. data/test/dummy/config/routes.rb +4 -0
  60. data/test/dummy/config/secrets.yml +22 -0
  61. data/test/dummy/db/development.sqlite3 +0 -0
  62. data/test/dummy/db/schema.rb +24 -0
  63. data/test/dummy/log/development.log +674 -0
  64. data/test/dummy/public/404.html +67 -0
  65. data/test/dummy/public/422.html +67 -0
  66. data/test/dummy/public/500.html +66 -0
  67. data/test/dummy/public/favicon.ico +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/005bd567a7d66421fbef453fe21291ef +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/0af4c8229b96d670ece643ab86d847fc +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/0b561bb0f5e27b0811d8f78da0b0a961 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/0d13d323f5ada0f6982ed7004e7b7956 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/0d47ad626385700d816d2237b60e4405 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/0f9097e7e4fe024b14ad4ae2a74ac107 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/2335821218ad3f7fb88a7e033bd928d3 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/2a6137c114f81313e7f4d24aabf5f742 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/31007be9c9b15ceb79a3575e593f1666 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/34c30def6edca7cd4ccc028324e69732 +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/3ccca1a97ac09ec192a60c94fa00adb3 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/41485660f2da3e5246495eca44b5d586 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/43a987fa7ec0cbb1e8a6bd5e3a4e4b8d +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/4ccd723c93040294ae2c7d4bdd241927 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/5549bda2a1379ba359a508ac6eef4fed +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/591767e1239aceceb8eae71f91d40c2c +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/5ca1d924e33e6d2326ea666473d1b957 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/614d6dfbd87dfef1f5409cdf648b4ef8 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/6870a0f5e39c9a385cd7d42d1eacc23a +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/6aff79b1163157bafd663772e01e02b9 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/6ff1394e29e0bf6efa5e2aaaa5599857 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/79f273cae0828923dde1ef8c2398a097 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/7e4eb3e4ae47796be38b017098742457 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/9245581aa4bb65f432f558fab76a6394 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/a056f25be69aad65535c6119795b97a7 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/a0a7a60c30730860ddb157961fa79cc6 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/a4f760a14b35ee198d29bdc6657a6d61 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/a9cc70badbab7d39abf8d96de550f53d +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/abc2c4b52cfa5dec5d6d5f5bac7f7d7f +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/bac590af4a9c32bd96a7954f161597fd +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/cb0b8f15d2f703e80dad62daa69e27b1 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/cd7fd8f917317ac993444f56a0dd0259 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/d05c052069448c7d8dce96727613e470 +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/ec454ae07815a55a5b9bb5d5eb9de78b +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/f0089f75e018e7d19b6fe81ab885cd8e +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  109. data/test/dummy/tmp/pids/server.pid +1 -0
  110. data/test/fixtures/paginas/pages.yml +11 -0
  111. data/test/integration/navigation_test.rb +10 -0
  112. data/test/models/paginas/page_test.rb +9 -0
  113. data/test/paginas_test.rb +7 -0
  114. data/test/test_helper.rb +19 -0
  115. metadata +286 -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,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Paginas::Engine => "/paginas"
4
+ 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: 58777a51b909ff142408dfffface358e72e28c49966079aecb008bffa94442b523dbf2532f8e7dd0270e4c5071a8cd09af465fd2042a21920bf13a7dab2156dc
15
+
16
+ test:
17
+ secret_key_base: 70a6784c72fed6f870cd611973d2eccad8cc3502b42eb829cbb25bd99dffa24f46a5fd69c9a8f01e8cc99406f3b444c1e97dfcd9cfe07a0efe3e7429acb58ef2
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,24 @@
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: 20150212133316) do
15
+
16
+ create_table "paginas_pages", force: :cascade do |t|
17
+ t.string "title"
18
+ t.text "text"
19
+ t.boolean "featured", default: false
20
+ t.datetime "created_at", null: false
21
+ t.datetime "updated_at", null: false
22
+ end
23
+
24
+ end
@@ -0,0 +1,674 @@
1
+
2
+
3
+ Started GET "/assets/apples-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/assets/apples-dfa7b291102a59957590b4e00e20f1c8.css"):
6
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
10
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
11
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
12
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
13
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
14
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
16
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
17
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
18
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
19
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
20
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
21
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
22
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
23
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
24
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
25
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
26
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
27
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
28
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
29
+
30
+
31
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
32
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
33
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms)
34
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms)
35
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.9ms)
36
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (27.7ms)
37
+
38
+
39
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
40
+
41
+
42
+ Started GET "/assets/application-c53de2312fdd3a9bff18fdab691868a2.js?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
43
+
44
+
45
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
46
+
47
+
48
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
49
+
50
+
51
+ Started GET "/assets/apples-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
52
+
53
+ ActionController::RoutingError (No route matches [GET] "/assets/apples-46c9a194bd0668e67d57241f94473dc8.js"):
54
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
55
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
56
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
57
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
58
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
59
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
60
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
61
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
62
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
63
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
64
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
65
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
66
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
67
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
68
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
69
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
70
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
71
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
72
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
73
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
74
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
75
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
76
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
77
+
78
+
79
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
80
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
81
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
82
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
83
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
84
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.8ms)
85
+
86
+
87
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
88
+
89
+
90
+ Started GET "/assets/simple_pages-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 08:49:11 -0500
91
+
92
+ ActionController::RoutingError (No route matches [GET] "/assets/simple_pages-e980a571e524ad97ae6a17dcc57d29bd.js"):
93
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
94
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
95
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
96
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
97
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
98
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
99
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
100
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
101
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
102
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
103
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
104
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
105
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
106
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
107
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
108
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
109
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
110
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
111
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
112
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
113
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
114
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
115
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
116
+
117
+
118
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
119
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
120
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
121
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
122
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
123
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.7ms)
124
+
125
+
126
+ Started GET "/sp/display/1" for 127.0.0.1 at 2015-02-12 08:49:16 -0500
127
+
128
+ ActionController::RoutingError (No route matches [GET] "/sp/display/1"):
129
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
130
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
131
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
132
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
133
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
134
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
135
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
136
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
137
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
138
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
139
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
140
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
141
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
142
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
143
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
144
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
145
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
146
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
147
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
148
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
149
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
150
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
151
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
152
+
153
+
154
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
155
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
156
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
157
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
158
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
159
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (25.6ms)
160
+
161
+
162
+ Started GET "/" for 127.0.0.1 at 2015-02-12 08:49:23 -0500
163
+ Processing by Rails::WelcomeController#index as HTML
164
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.8ms)
165
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
166
+
167
+
168
+ Started GET "/paginas" for 127.0.0.1 at 2015-02-12 08:49:28 -0500
169
+ Processing by Paginas::PagesController#index as HTML
170
+ Paginas::Page Load (0.4ms) SELECT "paginas_pages".* FROM "paginas_pages"
171
+ SQLite3::SQLException: no such table: paginas_pages: SELECT "paginas_pages".* FROM "paginas_pages"
172
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/index.html.erb within layouts/paginas/application (2.8ms)
173
+ Completed 500 Internal Server Error in 28ms
174
+
175
+ ActionView::Template::Error (SQLite3::SQLException: no such table: paginas_pages: SELECT "paginas_pages".* FROM "paginas_pages"):
176
+ 12: </thead>
177
+ 13:
178
+ 14: <tbody>
179
+ 15: <% @pages.each do |page| %>
180
+ 16: <tr>
181
+ 17: <td><%= page.title %></td>
182
+ 18: <td><%= page.featured %></td>
183
+ sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
184
+ sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
185
+ sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
186
+ activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:300:in `block in exec_query'
187
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:466:in `block in log'
188
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
189
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:460:in `log'
190
+ activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:297:in `exec_query'
191
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:336:in `select'
192
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
193
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
194
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
195
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
196
+ activerecord (4.2.0) lib/active_record/querying.rb:39:in `find_by_sql'
197
+ activerecord (4.2.0) lib/active_record/relation.rb:638:in `exec_queries'
198
+ activerecord (4.2.0) lib/active_record/relation.rb:514:in `load'
199
+ activerecord (4.2.0) lib/active_record/relation.rb:243:in `to_a'
200
+ activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each'
201
+ /home/carlos/RailsApps/paginas/app/views/paginas/pages/index.html.erb:15:in `__home_carlos__ails_pps_paginas_app_views_paginas_pages_index_html_erb___4445972617002741869_40776800'
202
+ actionview (4.2.0) lib/action_view/template.rb:145:in `block in render'
203
+ activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument'
204
+ actionview (4.2.0) lib/action_view/template.rb:333:in `instrument'
205
+ actionview (4.2.0) lib/action_view/template.rb:143:in `render'
206
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
207
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
208
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
209
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
210
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
211
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
212
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
213
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
214
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
215
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
216
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
217
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
218
+ actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
219
+ actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
220
+ actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
221
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
222
+ actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
223
+ actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render'
224
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
225
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
226
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
227
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
228
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
229
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
230
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
231
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
232
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
233
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
234
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
235
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
236
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
237
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
238
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
239
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
240
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
241
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
242
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
243
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
244
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
245
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
246
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
247
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
248
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
249
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
250
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
251
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
252
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
253
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
254
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
255
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
256
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
257
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
258
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
259
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
260
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
261
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
262
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
263
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
264
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
265
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
266
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
267
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
268
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
269
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
270
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
271
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
272
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
273
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
274
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
275
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
276
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
277
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
278
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
279
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
280
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
281
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
282
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
283
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
284
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
285
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
286
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
287
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
288
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
289
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
290
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
291
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
292
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
293
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
294
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
295
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
296
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
297
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
298
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
299
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
300
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
301
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
302
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
303
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
304
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
305
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
306
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
307
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
308
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
309
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
310
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
311
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
312
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
313
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
314
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
315
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
316
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
317
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
318
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
319
+ /home/carlos/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
320
+
321
+
322
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
323
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
324
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
325
+ Rendered /home/carlos/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.6ms)
326
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
327
+  (0.1ms) select sqlite_version(*)
328
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
329
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
330
+ Migrating to CreatePaginasPages (20150212133316)
331
+  (0.0ms) begin transaction
332
+  (0.2ms) CREATE TABLE "paginas_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "featured" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
333
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150212133316"]]
334
+  (0.8ms) commit transaction
335
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
336
+
337
+
338
+ Started GET "/paginas" for 127.0.0.1 at 2015-02-12 08:54:41 -0500
339
+ Processing by Paginas::PagesController#index as HTML
340
+ Paginas::Page Load (0.8ms) SELECT "paginas_pages".* FROM "paginas_pages"
341
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/index.html.erb within layouts/paginas/application (4.3ms)
342
+ Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.9ms)
343
+
344
+
345
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:54:41 -0500
346
+
347
+
348
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:54:41 -0500
349
+
350
+
351
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:54:41 -0500
352
+
353
+
354
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:54:41 -0500
355
+
356
+
357
+ Started GET "/paginas/featured" for 127.0.0.1 at 2015-02-12 08:54:50 -0500
358
+ Processing by Paginas::PagesController#index as HTML
359
+ Parameters: {"featured"=>true}
360
+ Paginas::Page Load (0.1ms) SELECT "paginas_pages".* FROM "paginas_pages" WHERE "paginas_pages"."featured" = 't'
361
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/featured.html.erb within layouts/paginas/application (3.9ms)
362
+ Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.2ms)
363
+
364
+
365
+ Started GET "/paginas/" for 127.0.0.1 at 2015-02-12 08:54:54 -0500
366
+ Processing by Paginas::PagesController#index as HTML
367
+ Paginas::Page Load (0.6ms) SELECT "paginas_pages".* FROM "paginas_pages"
368
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/index.html.erb within layouts/paginas/application (1.3ms)
369
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.6ms)
370
+
371
+
372
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:54:56 -0500
373
+ Processing by Paginas::PagesController#new as HTML
374
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (155.1ms)
375
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (156.1ms)
376
+ Completed 200 OK in 167ms (Views: 164.7ms | ActiveRecord: 0.1ms)
377
+
378
+
379
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:55:41 -0500
380
+ Processing by Paginas::PagesController#new as HTML
381
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (1.8ms)
382
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (2.4ms)
383
+ Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
384
+
385
+
386
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:55:41 -0500
387
+
388
+
389
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:55:41 -0500
390
+
391
+
392
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:55:41 -0500
393
+
394
+
395
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:55:41 -0500
396
+
397
+
398
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:56:18 -0500
399
+ Processing by Paginas::PagesController#new as HTML
400
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (2.1ms)
401
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (2.9ms)
402
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
403
+
404
+
405
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:18 -0500
406
+
407
+
408
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:18 -0500
409
+
410
+
411
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:18 -0500
412
+
413
+
414
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:18 -0500
415
+
416
+
417
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:56:19 -0500
418
+ Processing by Paginas::PagesController#new as HTML
419
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (1.9ms)
420
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (2.4ms)
421
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
422
+
423
+
424
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:19 -0500
425
+
426
+
427
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:19 -0500
428
+
429
+
430
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:19 -0500
431
+
432
+
433
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:19 -0500
434
+
435
+
436
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:56:20 -0500
437
+ Processing by Paginas::PagesController#new as HTML
438
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (1.7ms)
439
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (2.1ms)
440
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
441
+
442
+
443
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:20 -0500
444
+
445
+
446
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:20 -0500
447
+
448
+
449
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:20 -0500
450
+
451
+
452
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:20 -0500
453
+
454
+
455
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:56:31 -0500
456
+ Processing by Paginas::PagesController#new as HTML
457
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (18.7ms)
458
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (21.2ms)
459
+ Completed 200 OK in 85ms (Views: 42.5ms | ActiveRecord: 1.0ms)
460
+
461
+
462
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:32 -0500
463
+
464
+
465
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:56:32 -0500
466
+
467
+
468
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:32 -0500
469
+
470
+
471
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:56:32 -0500
472
+
473
+
474
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:57:13 -0500
475
+ Processing by Paginas::PagesController#new as HTML
476
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (2.2ms)
477
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (2.7ms)
478
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
479
+
480
+
481
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:57:13 -0500
482
+
483
+
484
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:57:13 -0500
485
+
486
+
487
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:57:13 -0500
488
+
489
+
490
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:57:13 -0500
491
+
492
+
493
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:58:30 -0500
494
+ Processing by Paginas::PagesController#new as HTML
495
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (2.3ms)
496
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/paginas/application (2.9ms)
497
+ Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms)
498
+
499
+
500
+ Started GET "/assets/paginas/pages-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-02-12 08:58:30 -0500
501
+
502
+
503
+ Started GET "/assets/paginas/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-02-12 08:58:30 -0500
504
+
505
+
506
+ Started GET "/assets/paginas/pages-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-02-12 08:58:30 -0500
507
+
508
+
509
+ Started GET "/assets/paginas/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-02-12 08:58:30 -0500
510
+
511
+
512
+ Started GET "/paginas/pages/new" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
513
+ Processing by Paginas::PagesController#new as HTML
514
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (2.8ms)
515
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/new.html.erb within layouts/application (3.4ms)
516
+ Completed 200 OK in 98ms (Views: 98.1ms | ActiveRecord: 0.0ms)
517
+
518
+
519
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
520
+
521
+
522
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
523
+
524
+
525
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
526
+
527
+
528
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
529
+
530
+
531
+ Started GET "/assets/application-de382b581b3046be52de5227d93d116b.js?body=1" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
532
+
533
+
534
+ Started GET "/assets/paginas-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
535
+
536
+
537
+ Started GET "/assets/tinymce/themes/modern/theme.js" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
538
+
539
+
540
+ Started GET "/assets/tinymce/skins/lightgray/skin.min.css" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
541
+
542
+
543
+ Started GET "/assets/tinymce/skins/lightgray/content.min.css" for 127.0.0.1 at 2015-02-12 08:59:30 -0500
544
+
545
+
546
+ Started GET "/assets/tinymce/skins/lightgray/fonts/tinymce.woff" for 127.0.0.1 at 2015-02-12 08:59:31 -0500
547
+
548
+
549
+ Started POST "/paginas/pages" for 127.0.0.1 at 2015-02-12 09:00:11 -0500
550
+ Processing by Paginas::PagesController#create as HTML
551
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"prm0tPCPITBsvnMbCiQpg+rKkrCjU/3hu/3H5UEGmBHocSnmJ1nxsieVjkUkataEtmmMwo3NVXpnfGrPza5yDg==", "page"=>{"title"=>"This is a sample page", "featured"=>"1", "text"=>"<p><em><strong>some sample text</strong></em></p>"}, "commit"=>"Create Page"}
552
+  (0.1ms) begin transaction
553
+ SQL (0.2ms) INSERT INTO "paginas_pages" ("title", "text", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "This is a sample page"], ["text", "<p><em><strong>some sample text</strong></em></p>"], ["featured", "t"], ["created_at", "2015-02-12 14:00:11.828576"], ["updated_at", "2015-02-12 14:00:11.828576"]]
554
+  (69.2ms) commit transaction
555
+ Redirected to http://localhost:3000/paginas/pages/1
556
+ Completed 302 Found in 74ms (ActiveRecord: 69.6ms)
557
+
558
+
559
+ Started GET "/paginas/pages/1" for 127.0.0.1 at 2015-02-12 09:00:11 -0500
560
+ Processing by Paginas::PagesController#show as HTML
561
+ Parameters: {"id"=>"1"}
562
+ Paginas::Page Load (0.2ms) SELECT "paginas_pages".* FROM "paginas_pages" WHERE "paginas_pages"."id" = ? LIMIT 1 [["id", 1]]
563
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/show.html.erb within layouts/application (1.0ms)
564
+ Completed 200 OK in 29ms (Views: 22.2ms | ActiveRecord: 0.2ms)
565
+
566
+
567
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:11 -0500
568
+
569
+
570
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:11 -0500
571
+
572
+
573
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:11 -0500
574
+
575
+
576
+ Started GET "/paginas/pages" for 127.0.0.1 at 2015-02-12 09:00:13 -0500
577
+ Processing by Paginas::PagesController#index as HTML
578
+ Paginas::Page Load (0.1ms) SELECT "paginas_pages".* FROM "paginas_pages"
579
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/index.html.erb within layouts/application (2.3ms)
580
+ Completed 200 OK in 49ms (Views: 48.4ms | ActiveRecord: 0.1ms)
581
+
582
+
583
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:13 -0500
584
+
585
+
586
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:13 -0500
587
+
588
+
589
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:13 -0500
590
+
591
+
592
+ Started GET "/paginas/pages/1/edit" for 127.0.0.1 at 2015-02-12 09:00:15 -0500
593
+ Processing by Paginas::PagesController#edit as HTML
594
+ Parameters: {"id"=>"1"}
595
+ Paginas::Page Load (0.1ms) SELECT "paginas_pages".* FROM "paginas_pages" WHERE "paginas_pages"."id" = ? LIMIT 1 [["id", 1]]
596
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/_form.html.erb (3.3ms)
597
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/edit.html.erb within layouts/application (4.3ms)
598
+ Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.1ms)
599
+
600
+
601
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:15 -0500
602
+
603
+
604
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:15 -0500
605
+
606
+
607
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:15 -0500
608
+
609
+
610
+ Started GET "/paginas/pages" for 127.0.0.1 at 2015-02-12 09:00:17 -0500
611
+ Processing by Paginas::PagesController#index as HTML
612
+ Paginas::Page Load (0.1ms) SELECT "paginas_pages".* FROM "paginas_pages"
613
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/index.html.erb within layouts/application (1.1ms)
614
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms)
615
+
616
+
617
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:17 -0500
618
+
619
+
620
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:17 -0500
621
+
622
+
623
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:17 -0500
624
+
625
+
626
+ Started GET "/paginas/pages/1" for 127.0.0.1 at 2015-02-12 09:00:19 -0500
627
+ Processing by Paginas::PagesController#show as HTML
628
+ Parameters: {"id"=>"1"}
629
+ Paginas::Page Load (0.1ms) SELECT "paginas_pages".* FROM "paginas_pages" WHERE "paginas_pages"."id" = ? LIMIT 1 [["id", 1]]
630
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/show.html.erb within layouts/application (0.6ms)
631
+ Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.1ms)
632
+
633
+
634
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:19 -0500
635
+
636
+
637
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:19 -0500
638
+
639
+
640
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:19 -0500
641
+
642
+
643
+ Started GET "/paginas/display/1" for 127.0.0.1 at 2015-02-12 09:00:28 -0500
644
+ Processing by Paginas::PagesController#show as HTML
645
+ Parameters: {"display_only"=>true, "id"=>"1"}
646
+ Paginas::Page Load (0.1ms) SELECT "paginas_pages".* FROM "paginas_pages" WHERE "paginas_pages"."id" = ? LIMIT 1 [["id", 1]]
647
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/display.html.erb within layouts/application (0.3ms)
648
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms)
649
+
650
+
651
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:28 -0500
652
+
653
+
654
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:28 -0500
655
+
656
+
657
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:28 -0500
658
+
659
+
660
+ Started GET "/paginas/featured" for 127.0.0.1 at 2015-02-12 09:00:34 -0500
661
+ Processing by Paginas::PagesController#index as HTML
662
+ Parameters: {"featured"=>true}
663
+ Paginas::Page Load (0.2ms) SELECT "paginas_pages".* FROM "paginas_pages" WHERE "paginas_pages"."featured" = 't'
664
+ Rendered /home/carlos/RailsApps/paginas/app/views/paginas/pages/featured.html.erb within layouts/application (0.9ms)
665
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.2ms)
666
+
667
+
668
+ Started GET "/assets/tinymce/preinit-f8ab295b9f7ef6fc6df732d409be754f.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:34 -0500
669
+
670
+
671
+ Started GET "/assets/tinymce/tinymce-b30abbd7b32d836c0a3e382959d700ee.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:34 -0500
672
+
673
+
674
+ Started GET "/assets/tinymce-e980a571e524ad97ae6a17dcc57d29bd.js?body=1" for 127.0.0.1 at 2015-02-12 09:00:34 -0500