cambios 1.0.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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/cambios/application.js +13 -0
- data/app/assets/javascripts/cambios/main.js +2 -0
- data/app/assets/stylesheets/cambios/application.css +15 -0
- data/app/assets/stylesheets/cambios/main.css +4 -0
- data/app/controllers/cambios/application_controller.rb +4 -0
- data/app/controllers/cambios/main_controller.rb +16 -0
- data/app/helpers/cambios/application_helper.rb +4 -0
- data/app/helpers/cambios/main_helper.rb +4 -0
- data/app/views/cambios/main/index.html.erb +29 -0
- data/app/views/layouts/cambios/application.html.erb +14 -0
- data/config/routes.rb +4 -0
- data/lib/cambios/engine.rb +5 -0
- data/lib/cambios/version.rb +3 -0
- data/lib/cambios.rb +4 -0
- data/lib/tasks/cambios_tasks.rake +4 -0
- data/test/cambios_test.rb +7 -0
- data/test/controllers/cambios/main_controller_test.rb +15 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/c.yml +8 -0
- data/test/dummy/config/cambios.yml +8 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +814 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3XLcCRqCnsrMdhkzc4F9Noa3CpSpa5q7o-oTFeBp6sE.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/65PpaUnDtlR0I4yqf6MzI2Xnsm4INgFBzah46sgQwt4.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9WhJuBg5NUtyShV6C5HfEgRNm_ch8VNsajGYzq6YTB8.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EIHjCFmi3StJXlQc2gEdvCtha8kWcoyXv4gujsBAZOg.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/F4KjdQrYSMusxnfiWWiakKwGdoc6YHDg_JpeY6IfsjE.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FsNQMyuDGAl35rKCgYCxFc1sDvgnMqpwJKAS4FOpw4c.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IxdnK9o9KitwGgbsqV0AOl-daTIJW11_nGgzT9HFErc.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KAx4PuN-tlT4iLjQU1EPIs3wfvOvgMCVXQ4HtuZXo24.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OPFobpYgQRvlr_WN3jsakU7gQrlReCmPquUCzXzK0Tc.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QAlEvoFlTWxnbSuBBv6JCi5EOx6mFPgO17bNEeohsvU.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Rx7uuB_E5XJxkYC9kSoxJguiP7QJBd7sHSbp0dm1Eg8.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ToZKPihQ8jzatBtBTeMH6-xKZwCLu6MzFA55_MPSW_s.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VTluDhL-WutgGCZ5q8XxQJjgJQcdYdtEOZKBgz5bzsk.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VrDH3joCLs_JEmQ0IYVzrGg7fYCxyIDEXO1J1QI0LDw.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XxU33c-NPeiEDtIPoeUjikWYfnogwhM7WEfr3CCts3E.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YwubSbAcf1815XDZFOwwS569uepQoKN0MG1wwLsUMP4.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_OCLk2SLMNVWNZKtaWpVg7QuOQQKMjtehgVmvGzYpUM.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/__XPmx15UIgdzJEDyQnbSPt77GJ3JSZmaIQarmHBcVo.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_j7PgUnnIHGx1H10toQiiJfFK8Dg1nENxA3bQski38E.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cCb039FF-nTXgiS6om9UXi0umOmZu29IkHUL-Vw4x_k.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cz1yDAq-lj8py73C1vNLEhVrk5HByi6qI66JkKgNKLU.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ebVMcTwbEiJRFP9m2903EvYE7bbQbSOhGuOC05fX-R8.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fYadTWJXNOoo8RLWbz0ewnBEE48M52slxrmy-fwuvWw.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gBu1KIKRdk-qZzKzdrs0sxRmpiArzc8KYQHzVJeSrt8.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hJZ6ca2lHskNTUwf7sh4_4Tu4QtaDu7URciiANm2ZXw.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hWhal1LbRbIXxlOeicpxrqEue5deW5JOfImAj_9MzH0.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kDs5qUipQHf-Md2zPAlzqJDik2hlDRZl8WW8IBWgV9I.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kS06s-mMQrmKzcjKzRY70zO7LiKt5D4OllgF5xDW_Uk.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qsiZvE3XMY-5uBLuhxIMlKdFrN2Es2yFZcR__InPAGc.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/roXEV19KJFJfMzlpRD9VyfPHpXFVsn4lRGMrG3TSXFg.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uCtL4sX6IZW1msFmAV_78g1eaxdgnjb7wc9nt50Mf_8.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uDyxMLJG1dGOrAuzUkzMIHgdg-jsS6DLoFs6cj80_Dc.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vY8cE8DSSlETxPGtG7PnyaBjSEptpVMIiGBXM5s6VGo.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/whOaxMapOoTKeK8XSVl7uInq_YSbeoP_ksD8sG3UZeg.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y2eEDU2aMcwXGnXc8oyP7ZJI4jH5D7DdC5_4_hPPrEc.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yoZss7Yt0EugR9K5dnqtqdmMvhcb2kd5rkECfcjGMos.cache +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +19 -0
- metadata +240 -0
@@ -0,0 +1,814 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2015-08-04 13:25:20 -0700
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
5
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/railties-4.2.3/lib/rails/templates/rails/welcome/index.html.erb (1.4ms)
|
6
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
7
|
+
|
8
|
+
|
9
|
+
Started GET "/cambios" for 127.0.0.1 at 2015-08-04 13:25:28 -0700
|
10
|
+
|
11
|
+
ActionController::RoutingError (No route matches [GET] "/cambios"):
|
12
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
13
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
14
|
+
railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
|
15
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
|
16
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
17
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
|
18
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
|
19
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
|
20
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
21
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
22
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
23
|
+
activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
24
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
25
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
|
26
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
27
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
28
|
+
railties (4.2.3) lib/rails/application.rb:165:in `call'
|
29
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
30
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
31
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
32
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
33
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
34
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
35
|
+
|
36
|
+
|
37
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
38
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
|
39
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
|
40
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms)
|
41
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.7ms)
|
42
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.5ms)
|
43
|
+
|
44
|
+
|
45
|
+
Started GET "/cambios" for 127.0.0.1 at 2015-08-04 13:29:21 -0700
|
46
|
+
|
47
|
+
ActionController::RoutingError (No route matches [GET] "/cambios"):
|
48
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
49
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
50
|
+
railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
|
51
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
|
52
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
53
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
|
54
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
|
55
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
|
56
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
57
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
58
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
59
|
+
activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
60
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
61
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
|
62
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
63
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
64
|
+
railties (4.2.3) lib/rails/application.rb:165:in `call'
|
65
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
66
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
67
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
68
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
69
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
70
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
71
|
+
|
72
|
+
|
73
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
74
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
|
75
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
|
76
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
|
77
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
78
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (52.6ms)
|
79
|
+
|
80
|
+
|
81
|
+
Started GET "/cambios" for 127.0.0.1 at 2015-08-04 13:38:05 -0700
|
82
|
+
DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: 'index'` to `controller: 'index'`. (called from block in <top (required)> at /Users/rob/projects/cambios/config/routes.rb:2)
|
83
|
+
|
84
|
+
ArgumentError (Missing :action key on routes definition, please check your routes.):
|
85
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:275:in `check_part'
|
86
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:264:in `check_controller_and_action'
|
87
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:178:in `normalize_options!'
|
88
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:100:in `initialize'
|
89
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:78:in `new'
|
90
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:78:in `build'
|
91
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1559:in `add_route'
|
92
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1536:in `decomposed_match'
|
93
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1517:in `block in match'
|
94
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1507:in `each'
|
95
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1507:in `match'
|
96
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:387:in `root'
|
97
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1580:in `root'
|
98
|
+
/Users/rob/projects/cambios/config/routes.rb:2:in `block in <top (required)>'
|
99
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:601:in `instance_exec'
|
100
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:601:in `block in with_default_scope'
|
101
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:816:in `scope'
|
102
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:600:in `with_default_scope'
|
103
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:432:in `eval_block'
|
104
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:412:in `draw'
|
105
|
+
/Users/rob/projects/cambios/config/routes.rb:1:in `<top (required)>'
|
106
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `load'
|
107
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `block in load'
|
108
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:240:in `load_dependency'
|
109
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `load'
|
110
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
|
111
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `each'
|
112
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `load_paths'
|
113
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:16:in `reload!'
|
114
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:26:in `block in updater'
|
115
|
+
activesupport (4.2.3) lib/active_support/file_update_checker.rb:75:in `call'
|
116
|
+
activesupport (4.2.3) lib/active_support/file_update_checker.rb:75:in `execute'
|
117
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:7:in `execute'
|
118
|
+
railties (4.2.3) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
|
119
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:444:in `instance_exec'
|
120
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:444:in `block in make_lambda'
|
121
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:190:in `call'
|
122
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:190:in `block in simple'
|
123
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
|
124
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `block in call'
|
125
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `each'
|
126
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
|
127
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
|
128
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
|
129
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:71:in `call'
|
130
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
131
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
132
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
133
|
+
railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
|
134
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
|
135
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
136
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
|
137
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
|
138
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
|
139
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
140
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
141
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
142
|
+
activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
143
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
144
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
|
145
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
146
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
147
|
+
railties (4.2.3) lib/rails/application.rb:165:in `call'
|
148
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
149
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
150
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
151
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
152
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
153
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
154
|
+
|
155
|
+
|
156
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms)
|
157
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
158
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
159
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.7ms)
|
160
|
+
|
161
|
+
|
162
|
+
Started GET "/cambios" for 127.0.0.1 at 2015-08-04 13:38:29 -0700
|
163
|
+
DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: 'index'` to `controller: 'index'`. (called from block in <top (required)> at /Users/rob/projects/cambios/config/routes.rb:4)
|
164
|
+
|
165
|
+
ArgumentError (Missing :action key on routes definition, please check your routes.):
|
166
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:275:in `check_part'
|
167
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:264:in `check_controller_and_action'
|
168
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:178:in `normalize_options!'
|
169
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:100:in `initialize'
|
170
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:78:in `new'
|
171
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:78:in `build'
|
172
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1559:in `add_route'
|
173
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1536:in `decomposed_match'
|
174
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1517:in `block in match'
|
175
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1507:in `each'
|
176
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1507:in `match'
|
177
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:387:in `root'
|
178
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1580:in `root'
|
179
|
+
/Users/rob/projects/cambios/config/routes.rb:4:in `block in <top (required)>'
|
180
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:601:in `instance_exec'
|
181
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:601:in `block in with_default_scope'
|
182
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:816:in `scope'
|
183
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:600:in `with_default_scope'
|
184
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:432:in `eval_block'
|
185
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:412:in `draw'
|
186
|
+
/Users/rob/projects/cambios/config/routes.rb:1:in `<top (required)>'
|
187
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `load'
|
188
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `block in load'
|
189
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:240:in `load_dependency'
|
190
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `load'
|
191
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
|
192
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `each'
|
193
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `load_paths'
|
194
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:16:in `reload!'
|
195
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:26:in `block in updater'
|
196
|
+
activesupport (4.2.3) lib/active_support/file_update_checker.rb:75:in `call'
|
197
|
+
activesupport (4.2.3) lib/active_support/file_update_checker.rb:75:in `execute'
|
198
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:7:in `execute'
|
199
|
+
railties (4.2.3) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
|
200
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:444:in `instance_exec'
|
201
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:444:in `block in make_lambda'
|
202
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:190:in `call'
|
203
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:190:in `block in simple'
|
204
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
|
205
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `block in call'
|
206
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `each'
|
207
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
|
208
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
|
209
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
|
210
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:71:in `call'
|
211
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
212
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
213
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
214
|
+
railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
|
215
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
|
216
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
217
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
|
218
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
|
219
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
|
220
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
222
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
223
|
+
activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
224
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
225
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
|
226
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
227
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
228
|
+
railties (4.2.3) lib/rails/application.rb:165:in `call'
|
229
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
230
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
231
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
232
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
233
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
234
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
235
|
+
|
236
|
+
|
237
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms)
|
238
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
239
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
|
240
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (29.2ms)
|
241
|
+
|
242
|
+
|
243
|
+
Started GET "/cambios" for 127.0.0.1 at 2015-08-04 13:38:41 -0700
|
244
|
+
DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: 'main/index'` to `controller: 'main/index'`. (called from block in <top (required)> at /Users/rob/projects/cambios/config/routes.rb:3)
|
245
|
+
|
246
|
+
ArgumentError (Missing :action key on routes definition, please check your routes.):
|
247
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:275:in `check_part'
|
248
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:264:in `check_controller_and_action'
|
249
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:178:in `normalize_options!'
|
250
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:100:in `initialize'
|
251
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:78:in `new'
|
252
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:78:in `build'
|
253
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1559:in `add_route'
|
254
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1536:in `decomposed_match'
|
255
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1517:in `block in match'
|
256
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1507:in `each'
|
257
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1507:in `match'
|
258
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:387:in `root'
|
259
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:1580:in `root'
|
260
|
+
/Users/rob/projects/cambios/config/routes.rb:3:in `block in <top (required)>'
|
261
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:601:in `instance_exec'
|
262
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:601:in `block in with_default_scope'
|
263
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:816:in `scope'
|
264
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:600:in `with_default_scope'
|
265
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:432:in `eval_block'
|
266
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:412:in `draw'
|
267
|
+
/Users/rob/projects/cambios/config/routes.rb:1:in `<top (required)>'
|
268
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `load'
|
269
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `block in load'
|
270
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:240:in `load_dependency'
|
271
|
+
activesupport (4.2.3) lib/active_support/dependencies.rb:268:in `load'
|
272
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
|
273
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `each'
|
274
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:40:in `load_paths'
|
275
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:16:in `reload!'
|
276
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:26:in `block in updater'
|
277
|
+
activesupport (4.2.3) lib/active_support/file_update_checker.rb:75:in `call'
|
278
|
+
activesupport (4.2.3) lib/active_support/file_update_checker.rb:75:in `execute'
|
279
|
+
railties (4.2.3) lib/rails/application/routes_reloader.rb:7:in `execute'
|
280
|
+
railties (4.2.3) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
|
281
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:444:in `instance_exec'
|
282
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:444:in `block in make_lambda'
|
283
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:190:in `call'
|
284
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:190:in `block in simple'
|
285
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
|
286
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `block in call'
|
287
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `each'
|
288
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
|
289
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
|
290
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
|
291
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:71:in `call'
|
292
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
293
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
294
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
295
|
+
railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
|
296
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
|
297
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
298
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
|
299
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
|
300
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
|
301
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
302
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
303
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
304
|
+
activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
305
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
306
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
|
307
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
308
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
309
|
+
railties (4.2.3) lib/rails/application.rb:165:in `call'
|
310
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
311
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
312
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
313
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
314
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
315
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
316
|
+
|
317
|
+
|
318
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms)
|
319
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
320
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
|
321
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.6ms)
|
322
|
+
DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: 'main/index'` to `controller: 'main/index'`. (called from block in <top (required)> at /Users/rob/projects/cambios/config/routes.rb:3)
|
323
|
+
|
324
|
+
|
325
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:39:19 -0700
|
326
|
+
Processing by Cambios::MainController#index as HTML
|
327
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (1.4ms)
|
328
|
+
Completed 200 OK in 146ms (Views: 145.7ms | ActiveRecord: 0.0ms)
|
329
|
+
|
330
|
+
|
331
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:39:19 -0700
|
332
|
+
|
333
|
+
|
334
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:39:19 -0700
|
335
|
+
|
336
|
+
|
337
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:39:19 -0700
|
338
|
+
|
339
|
+
|
340
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:39:19 -0700
|
341
|
+
|
342
|
+
|
343
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:41:25 -0700
|
344
|
+
Processing by Cambios::MainController#index as HTML
|
345
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
346
|
+
|
347
|
+
Errno::ENOENT (No such file or directory @ rb_sysopen - /Users/rob/projects/cambios/test/dummy/config/cambios.yml):
|
348
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/psych.rb:464:in `initialize'
|
349
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/psych.rb:464:in `open'
|
350
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/psych.rb:464:in `load_file'
|
351
|
+
/Users/rob/projects/cambios/app/controllers/cambios/main_controller.rb:8:in `index'
|
352
|
+
actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
353
|
+
actionpack (4.2.3) lib/abstract_controller/base.rb:198:in `process_action'
|
354
|
+
actionpack (4.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
355
|
+
actionpack (4.2.3) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
356
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
|
357
|
+
actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
358
|
+
actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
359
|
+
actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
360
|
+
activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
|
361
|
+
activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
362
|
+
activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
|
363
|
+
actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
364
|
+
actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
365
|
+
activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
366
|
+
actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
|
367
|
+
actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
|
368
|
+
actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
|
369
|
+
actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
370
|
+
actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
|
371
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
|
372
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
|
373
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
|
374
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
375
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
|
376
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
|
377
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
378
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
379
|
+
railties (4.2.3) lib/rails/railtie.rb:194:in `public_send'
|
380
|
+
railties (4.2.3) lib/rails/railtie.rb:194:in `method_missing'
|
381
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
382
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
383
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
|
384
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
|
385
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
386
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
387
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
388
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
389
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
390
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
391
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
392
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
393
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
394
|
+
activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
|
395
|
+
activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
396
|
+
activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
|
397
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
398
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
|
399
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
400
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
401
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
402
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
403
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
404
|
+
railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
|
405
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
|
406
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
407
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
|
408
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
|
409
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
|
410
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
411
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
412
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
413
|
+
activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
414
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
415
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
|
416
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
417
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
418
|
+
railties (4.2.3) lib/rails/application.rb:165:in `call'
|
419
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
420
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
421
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
422
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
423
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
424
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
425
|
+
|
426
|
+
|
427
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms)
|
428
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
429
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
|
430
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (29.8ms)
|
431
|
+
|
432
|
+
|
433
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:42:16 -0700
|
434
|
+
Processing by Cambios::MainController#index as HTML
|
435
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.2ms)
|
436
|
+
Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
437
|
+
|
438
|
+
|
439
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:42:16 -0700
|
440
|
+
|
441
|
+
|
442
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:42:16 -0700
|
443
|
+
|
444
|
+
|
445
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:42:16 -0700
|
446
|
+
|
447
|
+
|
448
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:42:16 -0700
|
449
|
+
|
450
|
+
|
451
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:43:06 -0700
|
452
|
+
Processing by Cambios::MainController#index as HTML
|
453
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
454
|
+
|
455
|
+
Errno::ENOENT (No such file or directory @ rb_sysopen - /Users/rob/projects/cambios/test/dummy/config/cambios.yml):
|
456
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/psych.rb:464:in `initialize'
|
457
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/psych.rb:464:in `open'
|
458
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/psych.rb:464:in `load_file'
|
459
|
+
/Users/rob/projects/cambios/app/controllers/cambios/main_controller.rb:8:in `index'
|
460
|
+
actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
461
|
+
actionpack (4.2.3) lib/abstract_controller/base.rb:198:in `process_action'
|
462
|
+
actionpack (4.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
463
|
+
actionpack (4.2.3) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
464
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
|
465
|
+
actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
466
|
+
actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
467
|
+
actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
468
|
+
activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
|
469
|
+
activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
470
|
+
activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
|
471
|
+
actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
472
|
+
actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
473
|
+
activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
474
|
+
actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
|
475
|
+
actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
|
476
|
+
actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
|
477
|
+
actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
478
|
+
actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
|
479
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
|
480
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
|
481
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
|
482
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
483
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
|
484
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
|
485
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
486
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
487
|
+
railties (4.2.3) lib/rails/railtie.rb:194:in `public_send'
|
488
|
+
railties (4.2.3) lib/rails/railtie.rb:194:in `method_missing'
|
489
|
+
actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
490
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
491
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
|
492
|
+
actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
|
493
|
+
actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
494
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
495
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
496
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
497
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
498
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
499
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
500
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
501
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
502
|
+
activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
|
503
|
+
activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
504
|
+
activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
|
505
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
506
|
+
activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
|
507
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
508
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
509
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
510
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
511
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
512
|
+
railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
|
513
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
|
514
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
515
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
|
516
|
+
activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
|
517
|
+
railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
|
518
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
519
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
520
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
521
|
+
activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
522
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
523
|
+
actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
|
524
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
525
|
+
railties (4.2.3) lib/rails/engine.rb:518:in `call'
|
526
|
+
railties (4.2.3) lib/rails/application.rb:165:in `call'
|
527
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
528
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
529
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
530
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
531
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
532
|
+
/Users/rob/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
533
|
+
|
534
|
+
|
535
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms)
|
536
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
537
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
538
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.2.2@demo_emails/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.7ms)
|
539
|
+
|
540
|
+
|
541
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:46:14 -0700
|
542
|
+
Processing by Cambios::MainController#index as HTML
|
543
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.1ms)
|
544
|
+
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
545
|
+
|
546
|
+
|
547
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:46:14 -0700
|
548
|
+
|
549
|
+
|
550
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:46:14 -0700
|
551
|
+
|
552
|
+
|
553
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:46:14 -0700
|
554
|
+
|
555
|
+
|
556
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:46:14 -0700
|
557
|
+
|
558
|
+
|
559
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:48:33 -0700
|
560
|
+
Processing by Cambios::MainController#index as HTML
|
561
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.7ms)
|
562
|
+
Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
|
563
|
+
|
564
|
+
|
565
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:48:33 -0700
|
566
|
+
|
567
|
+
|
568
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:48:33 -0700
|
569
|
+
|
570
|
+
|
571
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:48:33 -0700
|
572
|
+
|
573
|
+
|
574
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:48:33 -0700
|
575
|
+
|
576
|
+
|
577
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:49:10 -0700
|
578
|
+
Processing by Cambios::MainController#index as HTML
|
579
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.7ms)
|
580
|
+
Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
|
581
|
+
|
582
|
+
|
583
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:49:11 -0700
|
584
|
+
|
585
|
+
|
586
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:49:11 -0700
|
587
|
+
|
588
|
+
|
589
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:49:11 -0700
|
590
|
+
|
591
|
+
|
592
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:49:11 -0700
|
593
|
+
|
594
|
+
|
595
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:51:25 -0700
|
596
|
+
Processing by Cambios::MainController#index as HTML
|
597
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.1ms)
|
598
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
599
|
+
|
600
|
+
|
601
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:51:25 -0700
|
602
|
+
|
603
|
+
|
604
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:51:25 -0700
|
605
|
+
|
606
|
+
|
607
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:51:25 -0700
|
608
|
+
|
609
|
+
|
610
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:51:25 -0700
|
611
|
+
|
612
|
+
|
613
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:51:38 -0700
|
614
|
+
Processing by Cambios::MainController#index as HTML
|
615
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.4ms)
|
616
|
+
Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
617
|
+
|
618
|
+
|
619
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:51:43 -0700
|
620
|
+
Processing by Cambios::MainController#index as HTML
|
621
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.3ms)
|
622
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
623
|
+
|
624
|
+
|
625
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:51:43 -0700
|
626
|
+
|
627
|
+
|
628
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:51:43 -0700
|
629
|
+
|
630
|
+
|
631
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:51:43 -0700
|
632
|
+
|
633
|
+
|
634
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:51:43 -0700
|
635
|
+
|
636
|
+
|
637
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:52:15 -0700
|
638
|
+
Processing by Cambios::MainController#index as HTML
|
639
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.1ms)
|
640
|
+
Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
641
|
+
|
642
|
+
|
643
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:52:15 -0700
|
644
|
+
|
645
|
+
|
646
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:52:15 -0700
|
647
|
+
|
648
|
+
|
649
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:52:15 -0700
|
650
|
+
|
651
|
+
|
652
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:52:15 -0700
|
653
|
+
|
654
|
+
|
655
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:52:18 -0700
|
656
|
+
Processing by Cambios::MainController#index as HTML
|
657
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.1ms)
|
658
|
+
Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
659
|
+
|
660
|
+
|
661
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:52:18 -0700
|
662
|
+
|
663
|
+
|
664
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:52:18 -0700
|
665
|
+
|
666
|
+
|
667
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:52:18 -0700
|
668
|
+
|
669
|
+
|
670
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:52:18 -0700
|
671
|
+
|
672
|
+
|
673
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:52:59 -0700
|
674
|
+
Processing by Cambios::MainController#index as HTML
|
675
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (1.7ms)
|
676
|
+
Completed 200 OK in 143ms (Views: 141.9ms | ActiveRecord: 0.0ms)
|
677
|
+
|
678
|
+
|
679
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:52:59 -0700
|
680
|
+
|
681
|
+
|
682
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:52:59 -0700
|
683
|
+
|
684
|
+
|
685
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:52:59 -0700
|
686
|
+
|
687
|
+
|
688
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:52:59 -0700
|
689
|
+
|
690
|
+
|
691
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:53:01 -0700
|
692
|
+
Processing by Cambios::MainController#index as HTML
|
693
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.1ms)
|
694
|
+
Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
|
695
|
+
|
696
|
+
|
697
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:53:01 -0700
|
698
|
+
|
699
|
+
|
700
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:53:01 -0700
|
701
|
+
|
702
|
+
|
703
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:53:01 -0700
|
704
|
+
|
705
|
+
|
706
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:53:01 -0700
|
707
|
+
|
708
|
+
|
709
|
+
Started GET "/cambios" for ::1 at 2015-08-04 13:54:23 -0700
|
710
|
+
Processing by Cambios::MainController#index as HTML
|
711
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (1.2ms)
|
712
|
+
Completed 200 OK in 135ms (Views: 134.5ms | ActiveRecord: 0.0ms)
|
713
|
+
|
714
|
+
|
715
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 13:54:24 -0700
|
716
|
+
|
717
|
+
|
718
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 13:54:24 -0700
|
719
|
+
|
720
|
+
|
721
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 13:54:24 -0700
|
722
|
+
|
723
|
+
|
724
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 13:54:24 -0700
|
725
|
+
|
726
|
+
|
727
|
+
Started GET "/cambios" for ::1 at 2015-08-04 14:01:05 -0700
|
728
|
+
Processing by Cambios::MainController#index as HTML
|
729
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.5ms)
|
730
|
+
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
731
|
+
|
732
|
+
|
733
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 14:01:05 -0700
|
734
|
+
|
735
|
+
|
736
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 14:01:05 -0700
|
737
|
+
|
738
|
+
|
739
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 14:01:05 -0700
|
740
|
+
|
741
|
+
|
742
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 14:01:05 -0700
|
743
|
+
|
744
|
+
|
745
|
+
Started GET "/cambios" for ::1 at 2015-08-04 14:04:08 -0700
|
746
|
+
Processing by Cambios::MainController#index as HTML
|
747
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.1ms)
|
748
|
+
Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
749
|
+
|
750
|
+
|
751
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 14:04:08 -0700
|
752
|
+
|
753
|
+
|
754
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 14:04:08 -0700
|
755
|
+
|
756
|
+
|
757
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 14:04:08 -0700
|
758
|
+
|
759
|
+
|
760
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 14:04:08 -0700
|
761
|
+
|
762
|
+
|
763
|
+
Started GET "/cambios" for ::1 at 2015-08-04 14:04:14 -0700
|
764
|
+
Processing by Cambios::MainController#index as HTML
|
765
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.1ms)
|
766
|
+
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
767
|
+
|
768
|
+
|
769
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 14:04:14 -0700
|
770
|
+
|
771
|
+
|
772
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 14:04:14 -0700
|
773
|
+
|
774
|
+
|
775
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 14:04:14 -0700
|
776
|
+
|
777
|
+
|
778
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 14:04:14 -0700
|
779
|
+
|
780
|
+
|
781
|
+
Started GET "/cambios" for ::1 at 2015-08-04 14:04:23 -0700
|
782
|
+
Processing by Cambios::MainController#index as HTML
|
783
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.0ms)
|
784
|
+
Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
785
|
+
|
786
|
+
|
787
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 14:04:23 -0700
|
788
|
+
|
789
|
+
|
790
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 14:04:23 -0700
|
791
|
+
|
792
|
+
|
793
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 14:04:23 -0700
|
794
|
+
|
795
|
+
|
796
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 14:04:23 -0700
|
797
|
+
|
798
|
+
|
799
|
+
Started GET "/cambios" for ::1 at 2015-08-04 14:04:36 -0700
|
800
|
+
Processing by Cambios::MainController#index as HTML
|
801
|
+
Rendered /Users/rob/projects/cambios/app/views/cambios/main/index.html.erb within layouts/cambios/application (0.0ms)
|
802
|
+
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
803
|
+
|
804
|
+
|
805
|
+
Started GET "/assets/cambios/main.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-08-04 14:04:36 -0700
|
806
|
+
|
807
|
+
|
808
|
+
Started GET "/assets/cambios/main.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-08-04 14:04:36 -0700
|
809
|
+
|
810
|
+
|
811
|
+
Started GET "/assets/cambios/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-08-04 14:04:36 -0700
|
812
|
+
|
813
|
+
|
814
|
+
Started GET "/assets/cambios/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-08-04 14:04:36 -0700
|