Code Monkey home page Code Monkey logo

i4u's Introduction

Insignia Official Site

Dependencies

  • Ruby 1.9.3 (pathlevel 545)
  • Bundler 1.5.3
  • Rails 3.2.18
  • SQLite3
  • Imagemagick

Quick start

If you satisfy all the dependencies you can clone the repository via git:

$ git clone [email protected]:insignia4u/i4u.git

And then go to your project folder and run:

$ bundle install

You also have to set up all environment variables and config your database settings, you can do it creating the following files (we have created sample files inside config folder as an example):

i4u/
└── config/
    └── database.yml   -> Default connection to DB.

Populate the database:

$ rake db:seed
$ rake db:populator:load

Now you can start the server:

$ rails s

Then point your browser to http://localhost:3000, and start using the app!

Install Dependencies

  • Ruby & Rails

    If you don't have Ruby or Rails, I recommend you to use rvm to manage your Ruby versions and gems; you can follow instructions based on your operating system here.

Coding Style

  • Use two spaces for indentation, not tabs.
  • Avoid trailing spaces.
  • Be sure all your specs are passing before pushing any commits to origin.

Testing

We are using Capybara and Rspec for tests, both works out of the box once you run the bundle command. There is only one thing to consider: test files are under the spec/ directory.

It's worth to mention that all features must provide a feature spec and model specs, all at green state.

This application is set up to skip the generation of controller specs, assets and helpers.

Contributing

If you are going to contribute, clone the repo and make a pull request.

i4u's People

Contributors

adrianturbay avatar andreuscafe avatar augustopedraza avatar ckozus avatar dan1d avatar diegopaz avatar emanuelcadems avatar erylopez avatar ezekielriva avatar fabianvelizok avatar jmax avatar lediegue avatar lizardoceliz avatar marianaloran avatar matiasmoya avatar nacho87 avatar nicocedron avatar pablodv avatar sarriagada avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

i4u's Issues

Implementar la sección de novedades en el Home

Las novedades deberán poder tener los siguientes campos:

  • title
  • subtitle
  • summary
  • content
  • publication_date
  • publication_state (draft / published)

En el home sólo deberán listarse aquellas novedades que estén en estado published y cuya fecha de publicación ya haya llegado.

No establecer límite de caracteres para ninguno de los campos.

Permitir el uso de elementos H1 y H2 en la extended_description de los proyectos

Actualmente al incluir elementos h1 y h2 en la extended description de los proyectos, el texto queda "muy grande". Si bien no está contemplado en los diseños originales, deberíamos adaptar dicho texto de tal modo que esos textos no queden con un tamaño desproporcionados.

Es decir, deberían tener un tamaño intermedio entre el título principal de la página y el texto de la descripción.

Generar archivos JPG a partir de los PSD

Actualmente yo estoy utilizando los JPG creados inicialmente por AbraCreativa para comparar el diseño, por ejemplo este:

http://www.abracreativa.com/clientes/insignia/02/

Me dijeron que los PSD no son exactamente iguales, así que necesitaría poder ver los diseños finales exportados en JPG para comprar realmente con lo que está implementado.

Por ejemplo, veo que en el Home Page, el texto tiene un título que dice "Brief", pero si nos fijate en el diseño (el link de arriba), vemos que no tiene que haber un título para ese texto. (ahora quisiera saber como está en el PSD para poder saber realmente si se trata de un bug o un cambio en el diseño).

Mobile: Los botones de navegación no deben ser flotantes

Dado que la implementación no funciona correctamente en todos los dispositivos, sería conveniente no hacerlos flotante sino que sean parte de la navegación normal.

Además de esta forma, al no estar presentes todo el tiempo en pantalla, van a dar más lugar de visibilidad para el contenido.

Implementar múltiples faviconos íconos para las distintas plataformas

Ver como se hace en http://www.lostanfaun.com.ar y http://github.com por ejemplo:

    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-114.png" />
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114.png" />
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-144.png" />
    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144.png" />

Corregir styles para usar RedCloth sin problemas

Cuando se usa una palabra en mayúsculas (API por ejemplo), al "textalizarla" Textilize la encierra con el siguiente span:

<span class="caps">API</span>

Se tienen que actualizar los styles para que no afecte al diseño ya definido.

Desnormalizar el Title

Actualmente el Title de cada persona en el staff está en una tabla. Me parece una "exageración" que complica las cosas.

Hacer que el title sea directamente un campo tipo string que se asigne a cada persona directamente.

Quitar sección "More Works" en el Portfolio

Actualmente no tenemos confeccionado un PDF con los proyectos en el portfolio (ni lo vamos a tener), así que estaría bueno quitar por el momento esa sección de la página, así como tambíen el link a "Full list of works"

Cargar assets en el CMS

Permitir la carga de archivos del tipo assets que puedan ser referenciados desde fuera de la aplicación.

Por ejemplo, yo quiero subir un archivo PDF, para poder mandarles un mail a los clientes con un link a ese archivo y que apunte al dominio de Insignia, por ejemplo:

http://www.insignia4u.com/a/brief.pdf

En el listado de assets en el CMS, una de las columnas debería tener un widget para poder copiar la URL del assets en el clipboard con un click.

Incluir ícono de github.

Al lado de los íconos de facebook y twitter que apuntas a las páginas de Insignia, tambíen tenemos que agregar un botón similar, pero con el ícono de github que apunte a la página de proyectos de Insignia.

Los uploaded assets deben almacenarse en S3

Heroku tiene un file system de solo lectura y no persistente. Por lo tanto, del modo que está configurado paperclip para almacenar los assets, causa que los archivos subidos se pierdas luego de un nuevo deployment.

Mejorar descripción de los proyectos

Actualmente la longitud de la descripción es de 380 caracteres, que básicamente es "casi tres tweets", es muy poco texto para escribir nada relevante. Quitar la restricción de caracteres para la descripción.

Tambíen aplicar textilize o markdown (el que estemos usando en el proyecto) para las description y extended_description de los proyectos.

La página de portfolio no coincide con los diseños

La referencia que tomo es la siguiente:

http://www.abracreativa.com/clientes/insignia/02/portfolio_caso.htm

(Verificar si mi referencia es correcta o el PSD realmente fue cambiado tanto)

Algunos puntos:

  • El diseño tiene un sólo título, en la implementación tenemos dos lineas de título, mostrando el name y la url del proyecto.
  • En el diseño, el tamaño del texto de descripcion es mayor que el de la extended_description.
  • Ambos textos, description y extended_description tienen una tipografía menor que el tamaño utilizado en los diseños.

[production][admin/text_snippets#show] NoMethodError: undefined method `name' for nil:NilClass

See this exception on Errbit

NoMethodError: undefined method `name' for nil:NilClass

Summary

URL

http://i4u.herokuapp.com/admin/text_snippets/main-content-service"

Where

admin/text_snippets#show

Occured

Nov 29 6:45pm

Similar

2

Params

{
  "action" => "show",
  "controller" => "admin/text_snippets",
  "id" => "main-content-service"
}

Session

{
  "_csrf_token" => "NXSk8wpJGeYWoUHeiUbKcgZguu31Co5suPXxFsoJP18=",
  "flash" => {
    "notice" => "Text snippet was successfully created."
  },
  "session_id" => "3c4fe18c9bbd3ccc211f17c81c82d948",
  "warden_user_admin_user_key" => "[\"AdminUser\", [\"1\"], \"$2a$10$PqjHTPCwJCOv56SlvBQzQe\"]"
}

Backtrace

22:  app/admin/text_snippets.rb -> **block (4 levels) in <top (required)>**
48:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/components/attributes_table.rb -> **call**
48:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/components/attributes_table.rb -> **content_for**
26:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/components/attributes_table.rb -> **block (2 levels) in row**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **td**
25:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/components/attributes_table.rb -> **block in row**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **tr**
21:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/components/attributes_table.rb -> **row**
41:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **method_missing**
21:  app/admin/text_snippets.rb -> **block (3 levels) in <top (required)>**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **attributes_table_for**
32:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/show.rb -> **block in attributes_table**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **panel**
31:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/show.rb -> **attributes_table**
20:  app/admin/text_snippets.rb -> **block (2 levels) in <top (required)>**
24:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/show.rb -> **instance_exec**
24:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/show.rb -> **main_content**
117:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **block (2 levels) in build_main_content_wrapper**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **div**
116:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **block in build_main_content_wrapper**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **div**
115:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **build_main_content_wrapper**
99:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **block in build_page_content**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **div**
98:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **build_page_content**
42:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **block (2 levels) in build_page**
68:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **block in build_tag**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
67:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
17:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/html/element.rb -> **div**
39:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **block in build_page**
96:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **with_current_dom_context**
38:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **build_page**
10:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/views/pages/base.rb -> **build**
63:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **build_tag**
77:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **insert_tag**
41:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/arbre/builder.rb -> **method_missing**
21:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/view_helpers/renderer_helper.rb -> **render**
1:  [GEM_ROOT]/gems/activeadmin-0.4.4/app/views/active_admin/resource/show.html.arb -> **_vendor_bundle_ruby_______gems_activeadmin_______app_views_active_admin_resource_show_html_arb__FRAGMENT__**
145:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **block in render**
125:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
143:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **render**
47:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **block (2 levels) in render_template**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **block in instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **instrument**
46:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **block in render_template**
54:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render_with_layout**
45:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render_template**
18:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render**
36:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render_template**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render**
110:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **_render_template**
225:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb -> **_render_template**
103:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **render_to_body**
28:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb -> **render_to_body**
50:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb -> **render_to_body**
88:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **render**
16:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb -> **render**
40:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block (2 levels) in render**
5:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb -> **block in ms**
295:  [PROJECT_ROOT]/vendor/ruby-1.9.3/lib/ruby/1.9.1/benchmark.rb -> **realtime**
5:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb -> **ms**
40:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block in render**
83:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **cleanup_view_runtime**
24:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb -> **cleanup_view_runtime**
39:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **render**
26:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/resource_controller/actions.rb -> **block (2 levels) in show**
230:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **call**
230:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **default_render**
160:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **to_html**
104:  [GEM_ROOT]/gems/responders-0.9.1/lib/responders/flash_responder.rb -> **to_html**
153:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **respond**
146:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **call**
239:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb -> **respond_with**
13:  [GEM_ROOT]/gems/inherited_resources-1.3.1/lib/inherited_resources/actions.rb -> **show**
24:  [GEM_ROOT]/gems/activeadmin-0.4.4/lib/active_admin/resource_controller/actions.rb -> **show**
4:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb -> **send_action**
167:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/base.rb -> **process_action**
10:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb -> **process_action**
18:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb -> **block in process_action**
458:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__process_action__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_process_action_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb -> **process_action**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb -> **process_action**
30:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block in process_action**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **process_action**
207:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb -> **process_action**
18:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb -> **process_action**
121:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/base.rb -> **process**
45:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **process**
203:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **dispatch**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb -> **dispatch**
246:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **block in action**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **dispatch**
36:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
68:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **block in call**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **each**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **call**
600:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
54:  [GEM_ROOT]/gems/sass-3.2.0/lib/sass/plugin/rack.rb -> **call**
164:  [GEM_ROOT]/gems/rack-mobile-detect-0.4.0/lib/rack/mobile-detect.rb -> **call**
35:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **block in call**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **catch**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **call**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb -> **call**
23:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/etag.rb -> **call**
25:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/conditionalget.rb -> **call**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb -> **call**
21:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb -> **call**
242:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb -> **call**
205:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **context**
200:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **call**
339:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb -> **call**
64:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/query_cache.rb -> **call**
473:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb -> **call**
28:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **block in call**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__call__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_call_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
27:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **call**
31:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb -> **call**
16:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb -> **call**
56:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb -> **call**
26:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call_app**
16:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call**
22:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb -> **call**
21:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/methodoverride.rb -> **call**
17:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/runtime.rb -> **call**
72:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb -> **call**
15:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/lock.rb -> **call**
62:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb -> **call**
136:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **forward**
245:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **fetch**
185:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **lookup**
66:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **call!**
51:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **call**
479:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/engine.rb -> **call**
223:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/application.rb -> **call**
30:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/railtie/configurable.rb -> **method_missing**
81:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **block in pre_process**
79:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **catch**
79:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **pre_process**
54:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **process**
39:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **receive_data**
187:  [GEM_ROOT]/gems/eventmachine-1.0.0/lib/eventmachine.rb -> **run_machine**
187:  [GEM_ROOT]/gems/eventmachine-1.0.0/lib/eventmachine.rb -> **run**
63:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/backends/base.rb -> **start**
159:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/server.rb -> **start**
86:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/controllers/controller.rb -> **start**
187:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/runner.rb -> **run_command**
152:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/runner.rb -> **run!**
6:  [GEM_ROOT]/gems/thin-1.5.0/bin/thin -> **<top (required)>**
23:  [PROJECT_ROOT]/vendor/bundle/ruby/1.9.1/bin/thin -> **load**
23:  [PROJECT_ROOT]/vendor/bundle/ruby/1.9.1/bin/thin -> **<main>**

Environment

SERVER_SOFTWARE: thin 1.5.0 codename Knife
SERVER_NAME: i4u.herokuapp.com
rack_input: #
rack_version: ["1", "0"]
rack_errors: #
rack_multithread: false
rack_multiprocess: false
rack_run_once: false
REQUEST_METHOD: GET
REQUEST_PATH: /admin/text_snippets/main-content-service
PATH_INFO: /admin/text_snippets/main-content-service
REQUEST_URI: /admin/text_snippets/main-content-service
HTTP_VERSION: HTTP/1.1
HTTP_X_FORWARDED_PROTO: http
HTTP_X_FORWARDED_PORT: 80
HTTP_X_FORWARDED_FOR: 186.108.221.65
HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.91 Safari/537.11
HTTP_REFERER: http://i4u.herokuapp.com/admin/text_snippets/new
HTTP_HOST: i4u.herokuapp.com
HTTP_COOKIE: k_visit=1; __unam=6396d69-13895a9eda7-23457f06-9; __utma=57187698.2135631982.1353599280.1354220563.1354223702.21; __utmb=57187698.17.10.1354223702; __utmc=57187698; __utmz=57187698.1353599280.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _i4u_session=BAh7CUkiD3Nlc3Npb25faWQGOgZFRkkiJTNjNGZlMThjOWJiZDNjY2MyMTFmMTdjODFjODJkOTQ4BjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMU5YU2s4d3BKR2VZV29VSGVpVWJLY2daZ3V1MzFDbzVzdVBYeEZzb0pQMTg9BjsARkkiH3dhcmRlbi51c2VyLmFkbWluX3VzZXIua2V5BjsAVFsISSIOQWRtaW5Vc2VyBjsARlsGaQZJIiIkMmEkMTAkUHFqSFRQQ3dKQ092NTZTbHZCUXpRZQY7AFRJIgpmbGFzaAY7AEZvOiVBY3Rpb25EaXNwYXRjaDo6Rmxhc2g6OkZsYXNoSGFzaAk6CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6DUBmbGFzaGVzewY6C25vdGljZUlDOh5BY3RpdmVTdXBwb3J0OjpTYWZlQnVmZmVyIitUZXh0IHNuaXBwZXQgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgc7AFQ6D0BodG1sX3NhZmVUOglAbm93MA%3D%3D--4415b23a53ce7836b21c4c4315f10b611f62bbd6
HTTP_CONNECTION: keep-alive
HTTP_CACHE_CONTROL: max-age=0
HTTP_ACCEPT_LANGUAGE: en-US,en;q=0.8
HTTP_ACCEPT_ENCODING: gzip,deflate,sdch
HTTP_ACCEPT_CHARSET: ISO-8859-1,utf-8;q=0.7,*;q=0.3
HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_X_HEROKU_QUEUE_WAIT_TIME: 30
HTTP_X_HEROKU_QUEUE_DEPTH: 0
HTTP_X_HEROKU_DYNOS_IN_USE: 1
HTTP_X_REQUEST_START: 1354225497783
GATEWAY_INTERFACE: CGI/1.2
SERVER_PORT: 80
key: action_dispatch.request.query_parameters
SERVER_PROTOCOL: HTTP/1.1
rack_url_scheme: http
REMOTE_ADDR: 10.97.26.109
async_callback: #
async_close: #
ORIGINAL_FULLPATH: /admin/text_snippets/main-content-service
action_dispatch_routes: #
action_dispatch_parameter_filter: ["password"]
action_dispatch_secret_token: c1ecb7bbe6935070aa8180334f59e3c471e0e4a6c2988585a98cebea07b6dd82e75e28445bff1ebda600a73a277c3ff71cefe53dc2eb7dca4d2c1eb0431174e9
action_dispatch_show_exceptions: true
action_dispatch_show_detailed_exceptions: false
action_dispatch_logger: #
action_dispatch_backtrace_cleaner: #
rack-cache_cache_key: Rack::Cache::Key
rack-cache_verbose: false
rack-cache_storage: #
rack-cache_metastore: rails:/
rack-cache_entitystore: rails:/
rack-cache_default_ttl: 0
rack-cache_ignore_headers: ["Set-Cookie"]
rack-cache_private_headers: ["Authorization", "Cookie"]
rack-cache_allow_reload: false
rack-cache_allow_revalidate: false
rack-cache_use_native_ttl: false
action_dispatch_request_id: 9472f71ab533089ec1c48e1ab14ae57d
action_dispatch_remote_ip: 186.108.221.65
rack_session: {"session_id"=>"3c4fe18c9bbd3ccc211f17c81c82d948", "_csrf_token"=>"NXSk8wpJGeYWoUHeiUbKcgZguu31Co5suPXxFsoJP18=", "warden_user_admin_user_key"=>"[\"AdminUser\", [\"1\"], \"$2a$10$PqjHTPCwJCOv56SlvBQzQe\"]", "flash"=>{"notice"=>"Text snippet was successfully created."}}
rack_session_options: {"path"=>"/", "key"=>"expire_after", "secure"=>"false", "httponly"=>"true", "defer"=>"false", "renew"=>"false", "coder"=>"#", "id"=>"3c4fe18c9bbd3ccc211f17c81c82d948"}
rack_request_cookie_hash: {"k_visit"=>"1", "__unam"=>"6396d69-13895a9eda7-23457f06-9", "__utma"=>"57187698.2135631982.1353599280.1354220563.1354223702.21", "__utmb"=>"57187698.17.10.1354223702", "__utmc"=>"57187698", "__utmz"=>"57187698.1353599280.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)", "_i4u_session"=>"BAh7CUkiD3Nlc3Npb25faWQGOgZFRkkiJTNjNGZlMThjOWJiZDNjY2MyMTFmMTdjODFjODJkOTQ4BjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMU5YU2s4d3BKR2VZV29VSGVpVWJLY2daZ3V1MzFDbzVzdVBYeEZzb0pQMTg9BjsARkkiH3dhcmRlbi51c2VyLmFkbWluX3VzZXIua2V5BjsAVFsISSIOQWRtaW5Vc2VyBjsARlsGaQZJIiIkMmEkMTAkUHFqSFRQQ3dKQ092NTZTbHZCUXpRZQY7AFRJIgpmbGFzaAY7AEZvOiVBY3Rpb25EaXNwYXRjaDo6Rmxhc2g6OkZsYXNoSGFzaAk6CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6DUBmbGFzaGVzewY6C25vdGljZUlDOh5BY3RpdmVTdXBwb3J0OjpTYWZlQnVmZmVyIitUZXh0IHNuaXBwZXQgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgc7AFQ6D0BodG1sX3NhZmVUOglAbm93MA==--4415b23a53ce7836b21c4c4315f10b611f62bbd6"}
rack_request_cookie_string: k_visit=1; __unam=6396d69-13895a9eda7-23457f06-9; __utma=57187698.2135631982.1353599280.1354220563.1354223702.21; __utmb=57187698.17.10.1354223702; __utmc=57187698; __utmz=57187698.1353599280.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _i4u_session=BAh7CUkiD3Nlc3Npb25faWQGOgZFRkkiJTNjNGZlMThjOWJiZDNjY2MyMTFmMTdjODFjODJkOTQ4BjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMU5YU2s4d3BKR2VZV29VSGVpVWJLY2daZ3V1MzFDbzVzdVBYeEZzb0pQMTg9BjsARkkiH3dhcmRlbi51c2VyLmFkbWluX3VzZXIua2V5BjsAVFsISSIOQWRtaW5Vc2VyBjsARlsGaQZJIiIkMmEkMTAkUHFqSFRQQ3dKQ092NTZTbHZCUXpRZQY7AFRJIgpmbGFzaAY7AEZvOiVBY3Rpb25EaXNwYXRjaDo6Rmxhc2g6OkZsYXNoSGFzaAk6CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6DUBmbGFzaGVzewY6C25vdGljZUlDOh5BY3RpdmVTdXBwb3J0OjpTYWZlQnVmZmVyIitUZXh0IHNuaXBwZXQgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgc7AFQ6D0BodG1sX3NhZmVUOglAbm93MA%3D%3D--4415b23a53ce7836b21c4c4315f10b611f62bbd6
action_dispatch_cookies: #
action_dispatch_request_unsigned_session_cookie: {"session_id"=>"3c4fe18c9bbd3ccc211f17c81c82d948", "_csrf_token"=>"NXSk8wpJGeYWoUHeiUbKcgZguu31Co5suPXxFsoJP18=", "warden_user_admin_user_key"=>"[\"AdminUser\", [\"1\"], \"$2a$10$PqjHTPCwJCOv56SlvBQzQe\"]", "flash"=>{"notice"=>"Text snippet was successfully created."}}
warden: Warden::Proxy:42563380 @config={:default_scope=>:admin_user, :scope_defaults=>{}, :default_strategies=>{:admin_user=>[:rememberable, :database_authenticatable]}, :intercept_401=>false, :failure_app=>#}
action_dispatch_request_path_parameters: {"action"=>"show", "controller"=>"admin/text_snippets", "id"=>"main-content-service"}
action_controller_instance: #
action_dispatch_request_parameters: {"action"=>"show", "controller"=>"admin/text_snippets", "id"=>"main-content-service"}
action_dispatch_request_formats: ["text/html"]
action_dispatch_request_flash_hash: {"notice"=>"Text snippet was successfully created."}

[production][people#index] NoMethodError: undefined method `title' for #<Person:0x000000042bbac0>

See this exception on Errbit

NoMethodError: undefined method `title' for #Person:0x0000000594b8a8

Summary

URL

http://i4u.herokuapp.com/people"

Where

people#index

Occured

Dec 07 4:57pm

Similar

12

Params

{
  "action" => "index",
  "controller" => "people"
}

Session

{
  "_csrf_token" => "aFlskuQhEZiMPQ0vyf7Diy9rcxnSahpYZWBbtKnF5/I=",
  "session_id" => "21ff66a3d5915546c96845784c3fa0fa"
}

Backtrace

407:  [GEM_ROOT]/gems/activemodel-3.2.8/lib/active_model/attribute_methods.rb -> **method_missing**
149:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/attribute_methods.rb -> **method_missing**
13:  app/views/people/modules/_people_list.slim -> **block in _app_views_people_modules__people_list_slim__FRAGMENT__**
6:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/relation/delegation.rb -> **each**
6:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/relation/delegation.rb -> **each**
5:  app/views/people/modules/_people_list.slim -> **_app_views_people_modules__people_list_slim__FRAGMENT__**
145:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **block in render**
125:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
143:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **render**
265:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/partial_renderer.rb -> **render_partial**
238:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/partial_renderer.rb -> **block in render**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **block in instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **instrument**
237:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/partial_renderer.rb -> **render**
41:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render_partial**
27:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/helpers/rendering_helper.rb -> **render**
39:  app/views/people/index.html.slim -> **_app_views_people_index_html_slim__FRAGMENT__**
145:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **block in render**
125:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
143:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **render**
47:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **block (2 levels) in render_template**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **block in instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **instrument**
46:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **block in render_template**
54:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render_with_layout**
45:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render_template**
18:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render**
36:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render_template**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render**
110:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **_render_template**
225:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb -> **_render_template**
103:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **render_to_body**
28:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb -> **render_to_body**
50:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb -> **render_to_body**
88:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **render**
16:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb -> **render**
40:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block (2 levels) in render**
5:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb -> **block in ms**
295:  [PROJECT_ROOT]/vendor/ruby-1.9.3/lib/ruby/1.9.1/benchmark.rb -> **realtime**
5:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb -> **ms**
40:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block in render**
83:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **cleanup_view_runtime**
24:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb -> **cleanup_view_runtime**
39:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **render**
10:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb -> **default_render**
232:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **default_render**
160:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **to_html**
104:  [GEM_ROOT]/gems/responders-0.9.1/lib/responders/flash_responder.rb -> **to_html**
153:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **respond**
146:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **call**
239:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb -> **respond_with**
7:  [GEM_ROOT]/gems/inherited_resources-1.3.1/lib/inherited_resources/actions.rb -> **index**
6:  app/controllers/people_controller.rb -> **index**
4:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb -> **send_action**
167:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/base.rb -> **process_action**
10:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb -> **process_action**
18:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb -> **block in process_action**
425:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__process_action__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_process_action_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb -> **process_action**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb -> **process_action**
30:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block in process_action**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **process_action**
207:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb -> **process_action**
18:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb -> **process_action**
121:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/base.rb -> **process**
45:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **process**
203:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **dispatch**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb -> **dispatch**
246:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **block in action**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **dispatch**
36:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
68:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **block in call**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **each**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **call**
600:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
54:  [GEM_ROOT]/gems/sass-3.2.0/lib/sass/plugin/rack.rb -> **call**
164:  [GEM_ROOT]/gems/rack-mobile-detect-0.4.0/lib/rack/mobile-detect.rb -> **call**
35:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **block in call**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **catch**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **call**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb -> **call**
23:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/etag.rb -> **call**
25:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/conditionalget.rb -> **call**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb -> **call**
21:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb -> **call**
242:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb -> **call**
205:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **context**
200:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **call**
339:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb -> **call**
64:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/query_cache.rb -> **call**
473:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb -> **call**
28:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **block in call**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__call__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_call_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
27:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **call**
31:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb -> **call**
16:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb -> **call**
56:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb -> **call**
26:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call_app**
16:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call**
22:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb -> **call**
21:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/methodoverride.rb -> **call**
17:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/runtime.rb -> **call**
72:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb -> **call**
15:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/lock.rb -> **call**
62:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb -> **call**
136:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **forward**
245:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **fetch**
185:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **lookup**
66:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **call!**
51:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **call**
479:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/engine.rb -> **call**
223:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/application.rb -> **call**
30:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/railtie/configurable.rb -> **method_missing**
13:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/deflater.rb -> **call**
81:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **block in pre_process**
79:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **catch**
79:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **pre_process**
54:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **process**
39:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **receive_data**
187:  [GEM_ROOT]/gems/eventmachine-1.0.0/lib/eventmachine.rb -> **run_machine**
187:  [GEM_ROOT]/gems/eventmachine-1.0.0/lib/eventmachine.rb -> **run**
63:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/backends/base.rb -> **start**
159:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/server.rb -> **start**
86:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/controllers/controller.rb -> **start**
187:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/runner.rb -> **run_command**
152:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/runner.rb -> **run!**
6:  [GEM_ROOT]/gems/thin-1.5.0/bin/thin -> **<top (required)>**
23:  [PROJECT_ROOT]/vendor/bundle/ruby/1.9.1/bin/thin -> **load**
23:  [PROJECT_ROOT]/vendor/bundle/ruby/1.9.1/bin/thin -> **<main>**

Environment

SERVER_SOFTWARE: thin 1.5.0 codename Knife
SERVER_NAME: i4u.herokuapp.com
rack_input: #
rack_version: ["1", "0"]
rack_errors: #
rack_multithread: false
rack_multiprocess: false
rack_run_once: false
REQUEST_METHOD: GET
REQUEST_PATH: /people
PATH_INFO: /people
REQUEST_URI: /people
HTTP_VERSION: HTTP/1.1
HTTP_X_FORWARDED_PROTO: http
HTTP_X_FORWARDED_PORT: 80
HTTP_X_FORWARDED_FOR: 186.108.221.65
HTTP_USER_AGENT: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11
HTTP_REFERER: http://i4u.herokuapp.com/
HTTP_IF_NONE_MATCH: "9ae303e203ff9487bf88c7bddea113f4"
HTTP_HOST: i4u.herokuapp.com
HTTP_COOKIE: _i4u_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJTIxZmY2NmEzZDU5MTU1NDZjOTY4NDU3ODRjM2ZhMGZhBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWFGbHNrdVFoRVppTVBRMHZ5ZjdEaXk5cmN4blNhaHBZWldCYnRLbkY1L0k9BjsARg%3D%3D--12afb735e55a9033bd02863e086325ab10c9fcfc; __utma=57187698.2062995069.1354904188.1354904188.1354909416.2; __utmb=57187698.2.10.1354909416; __utmc=57187698; __utmz=57187698.1354904188.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP_CONNECTION: keep-alive
HTTP_ACCEPT_LANGUAGE: es-ES,es;q=0.8
HTTP_ACCEPT_ENCODING: gzip,deflate,sdch
HTTP_ACCEPT_CHARSET: ISO-8859-1,utf-8;q=0.7,*;q=0.3
HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_X_HEROKU_QUEUE_WAIT_TIME: 5
HTTP_X_HEROKU_QUEUE_DEPTH: 0
HTTP_X_HEROKU_DYNOS_IN_USE: 1
HTTP_X_REQUEST_START: 1354910254522
GATEWAY_INTERFACE: CGI/1.2
SERVER_PORT: 80
key: action_dispatch.request.query_parameters
SERVER_PROTOCOL: HTTP/1.1
rack_url_scheme: http
REMOTE_ADDR: 10.92.71.253
async_callback: #
async_close: #
ORIGINAL_FULLPATH: /people
action_dispatch_routes: #
action_dispatch_parameter_filter: ["password"]
action_dispatch_secret_token: c1ecb7bbe6935070aa8180334f59e3c471e0e4a6c2988585a98cebea07b6dd82e75e28445bff1ebda600a73a277c3ff71cefe53dc2eb7dca4d2c1eb0431174e9
action_dispatch_show_exceptions: true
action_dispatch_show_detailed_exceptions: false
action_dispatch_logger: #
action_dispatch_backtrace_cleaner: #
rack-cache_cache_key: Rack::Cache::Key
rack-cache_verbose: false
rack-cache_storage: #
rack-cache_metastore: rails:/
rack-cache_entitystore: rails:/
rack-cache_default_ttl: 0
rack-cache_ignore_headers: ["Set-Cookie"]
rack-cache_private_headers: ["Authorization", "Cookie"]
rack-cache_allow_reload: false
rack-cache_allow_revalidate: false
rack-cache_use_native_ttl: false
action_dispatch_request_id: 648f33c957d3dc0cea6dc560623800e6
action_dispatch_remote_ip: 186.108.221.65
rack_session: {"session_id"=>"21ff66a3d5915546c96845784c3fa0fa", "_csrf_token"=>"aFlskuQhEZiMPQ0vyf7Diy9rcxnSahpYZWBbtKnF5/I="}
rack_session_options: {"path"=>"/", "key"=>"expire_after", "secure"=>"false", "httponly"=>"true", "defer"=>"false", "renew"=>"false", "coder"=>"#", "id"=>"21ff66a3d5915546c96845784c3fa0fa"}
rack_request_cookie_hash: {"_i4u_session"=>"BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJTIxZmY2NmEzZDU5MTU1NDZjOTY4NDU3ODRjM2ZhMGZhBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWFGbHNrdVFoRVppTVBRMHZ5ZjdEaXk5cmN4blNhaHBZWldCYnRLbkY1L0k9BjsARg==--12afb735e55a9033bd02863e086325ab10c9fcfc", "__utma"=>"57187698.2062995069.1354904188.1354904188.1354909416.2", "__utmb"=>"57187698.2.10.1354909416", "__utmc"=>"57187698", "__utmz"=>"57187698.1354904188.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)"}
rack_request_cookie_string: _i4u_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJTIxZmY2NmEzZDU5MTU1NDZjOTY4NDU3ODRjM2ZhMGZhBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWFGbHNrdVFoRVppTVBRMHZ5ZjdEaXk5cmN4blNhaHBZWldCYnRLbkY1L0k9BjsARg%3D%3D--12afb735e55a9033bd02863e086325ab10c9fcfc; __utma=57187698.2062995069.1354904188.1354904188.1354909416.2; __utmb=57187698.2.10.1354909416; __utmc=57187698; __utmz=57187698.1354904188.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
action_dispatch_cookies: #
action_dispatch_request_unsigned_session_cookie: {"session_id"=>"21ff66a3d5915546c96845784c3fa0fa", "_csrf_token"=>"aFlskuQhEZiMPQ0vyf7Diy9rcxnSahpYZWBbtKnF5/I="}
warden: Warden::Proxy:40428740 @config={:default_scope=>:admin_user, :scope_defaults=>{}, :default_strategies=>{:admin_user=>[:rememberable, :database_authenticatable]}, :intercept_401=>false, :failure_app=>#}
action_dispatch_request_path_parameters: {"action"=>"index", "controller"=>"people"}
action_controller_instance: #
action_dispatch_request_parameters: {"action"=>"index", "controller"=>"people"}
action_dispatch_request_formats: ["text/html"]

Cargar contenidos en inglés

Utilizar las traducciones provistas y cargar los contenidos completos del sitio en inglés.

No olvidas listado del staff, proyectos, servicios, el proceso, etc.

[production][people#index] NoMethodError: undefined method `name' for "Managing Partner":String

See this exception on Errbit

NoMethodError: undefined method `name' for "Managing Partner":String

Summary

URL

http://i4u.herokuapp.com/people"

Where

people#index

Occured

Dec 10 12:38pm

Similar

0

Params

{
  "action" => "index",
  "controller" => "people"
}

Session

{
  "_csrf_token" => "jE7EwctP9jwbkoVriT/8Nhe+X/B/2YJe+X2VKXjq9V8=",
  "session_id" => "35f207e203a82bb4138ce59901e84b83",
  "warden_user_admin_user_key" => "[\"AdminUser\", [\"1\"], \"$2a$10$PqjHTPCwJCOv56SlvBQzQe\"]"
}

Backtrace

13:  app/views/people/modules/_people_list.slim -> **block in _app_views_people_modules__people_list_slim__FRAGMENT__**
6:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/relation/delegation.rb -> **each**
6:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/relation/delegation.rb -> **each**
5:  app/views/people/modules/_people_list.slim -> **_app_views_people_modules__people_list_slim__FRAGMENT__**
145:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **block in render**
125:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
143:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **render**
265:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/partial_renderer.rb -> **render_partial**
238:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/partial_renderer.rb -> **block in render**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **block in instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **instrument**
237:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/partial_renderer.rb -> **render**
41:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render_partial**
27:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/helpers/rendering_helper.rb -> **render**
39:  app/views/people/index.html.slim -> **_app_views_people_index_html_slim__FRAGMENT__**
145:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **block in render**
125:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
143:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/template.rb -> **render**
47:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **block (2 levels) in render_template**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **block in instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
38:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb -> **instrument**
46:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **block in render_template**
54:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render_with_layout**
45:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render_template**
18:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb -> **render**
36:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render_template**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb -> **render**
110:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **_render_template**
225:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb -> **_render_template**
103:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **render_to_body**
28:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb -> **render_to_body**
50:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb -> **render_to_body**
88:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **render**
16:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb -> **render**
40:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block (2 levels) in render**
5:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb -> **block in ms**
295:  [PROJECT_ROOT]/vendor/ruby-1.9.3/lib/ruby/1.9.1/benchmark.rb -> **realtime**
5:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb -> **ms**
40:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block in render**
83:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **cleanup_view_runtime**
24:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb -> **cleanup_view_runtime**
39:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **render**
10:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb -> **default_render**
232:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **default_render**
160:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **to_html**
104:  [GEM_ROOT]/gems/responders-0.9.1/lib/responders/flash_responder.rb -> **to_html**
153:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **respond**
146:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/responder.rb -> **call**
239:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb -> **respond_with**
7:  [GEM_ROOT]/gems/inherited_resources-1.3.1/lib/inherited_resources/actions.rb -> **index**
6:  app/controllers/people_controller.rb -> **index**
4:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb -> **send_action**
167:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/base.rb -> **process_action**
10:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb -> **process_action**
18:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb -> **block in process_action**
425:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__process_action__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_process_action_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb -> **process_action**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb -> **process_action**
30:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block in process_action**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **process_action**
207:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb -> **process_action**
18:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb -> **process_action**
121:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/base.rb -> **process**
45:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **process**
203:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **dispatch**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb -> **dispatch**
246:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **block in action**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **dispatch**
36:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
68:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **block in call**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **each**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **call**
600:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
54:  [GEM_ROOT]/gems/sass-3.2.0/lib/sass/plugin/rack.rb -> **call**
164:  [GEM_ROOT]/gems/rack-mobile-detect-0.4.0/lib/rack/mobile-detect.rb -> **call**
35:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **block in call**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **catch**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **call**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb -> **call**
23:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/etag.rb -> **call**
25:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/conditionalget.rb -> **call**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb -> **call**
21:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb -> **call**
242:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb -> **call**
205:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **context**
200:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **call**
339:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb -> **call**
64:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/query_cache.rb -> **call**
473:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb -> **call**
28:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **block in call**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__call__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_call_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
27:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **call**
31:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb -> **call**
16:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb -> **call**
56:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb -> **call**
26:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call_app**
16:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call**
22:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb -> **call**
21:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/methodoverride.rb -> **call**
17:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/runtime.rb -> **call**
72:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb -> **call**
15:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/lock.rb -> **call**
62:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb -> **call**
136:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **forward**
245:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **fetch**
185:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **lookup**
66:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **call!**
51:  [GEM_ROOT]/gems/rack-cache-1.2/lib/rack/cache/context.rb -> **call**
479:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/engine.rb -> **call**
223:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/application.rb -> **call**
30:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/railtie/configurable.rb -> **method_missing**
13:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/deflater.rb -> **call**
81:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **block in pre_process**
79:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **catch**
79:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **pre_process**
54:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **process**
39:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/connection.rb -> **receive_data**
187:  [GEM_ROOT]/gems/eventmachine-1.0.0/lib/eventmachine.rb -> **run_machine**
187:  [GEM_ROOT]/gems/eventmachine-1.0.0/lib/eventmachine.rb -> **run**
63:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/backends/base.rb -> **start**
159:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/server.rb -> **start**
86:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/controllers/controller.rb -> **start**
187:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/runner.rb -> **run_command**
152:  [GEM_ROOT]/gems/thin-1.5.0/lib/thin/runner.rb -> **run!**
6:  [GEM_ROOT]/gems/thin-1.5.0/bin/thin -> **<top (required)>**
23:  [PROJECT_ROOT]/vendor/bundle/ruby/1.9.1/bin/thin -> **load**
23:  [PROJECT_ROOT]/vendor/bundle/ruby/1.9.1/bin/thin -> **<main>**

Environment

SERVER_SOFTWARE: thin 1.5.0 codename Knife
SERVER_NAME: i4u.herokuapp.com
rack_input: #
rack_version: ["1", "0"]
rack_errors: #
rack_multithread: false
rack_multiprocess: false
rack_run_once: false
REQUEST_METHOD: GET
REQUEST_PATH: /people
PATH_INFO: /people
REQUEST_URI: /people
HTTP_VERSION: HTTP/1.1
HTTP_X_FORWARDED_PROTO: http
HTTP_X_FORWARDED_PORT: 80
HTTP_X_FORWARDED_FOR: 186.108.221.65
HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11
HTTP_REFERER: http://i4u.herokuapp.com/
HTTP_IF_NONE_MATCH: "2af5d10be42e5444400ae36dc543e9a0"
HTTP_HOST: i4u.herokuapp.com
HTTP_COOKIE: _i4u_session=BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTM1ZjIwN2UyMDNhODJiYjQxMzhjZTU5OTAxZTg0YjgzBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWpFN0V3Y3RQOWp3YmtvVnJpVC84TmhlK1gvQi8yWUplK1gyVktYanE5Vjg9BjsARkkiH3dhcmRlbi51c2VyLmFkbWluX3VzZXIua2V5BjsAVFsISSIOQWRtaW5Vc2VyBjsARlsGaQZJIiIkMmEkMTAkUHFqSFRQQ3dKQ092NTZTbHZCUXpRZQY7AFQ%3D--0f2f6b8679278223f510daf41fc47914b5049f73; __utma=57187698.1510765430.1354714949.1355151751.1355153921.6; __utmb=57187698.1.10.1355153921; __utmc=57187698; __utmz=57187698.1354714949.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP_CONNECTION: keep-alive
HTTP_ACCEPT_LANGUAGE: en-US,en;q=0.8
HTTP_ACCEPT_ENCODING: gzip,deflate,sdch
HTTP_ACCEPT_CHARSET: ISO-8859-1,utf-8;q=0.7,*;q=0.3
HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_X_HEROKU_QUEUE_WAIT_TIME: 2
HTTP_X_HEROKU_QUEUE_DEPTH: 0
HTTP_X_HEROKU_DYNOS_IN_USE: 1
HTTP_X_REQUEST_START: 1355153923420
GATEWAY_INTERFACE: CGI/1.2
SERVER_PORT: 80
key: action_dispatch.request.query_parameters
SERVER_PROTOCOL: HTTP/1.1
rack_url_scheme: http
REMOTE_ADDR: 10.117.19.85
async_callback: #
async_close: #
ORIGINAL_FULLPATH: /people
action_dispatch_routes: #
action_dispatch_parameter_filter: ["password"]
action_dispatch_secret_token: c1ecb7bbe6935070aa8180334f59e3c471e0e4a6c2988585a98cebea07b6dd82e75e28445bff1ebda600a73a277c3ff71cefe53dc2eb7dca4d2c1eb0431174e9
action_dispatch_show_exceptions: true
action_dispatch_show_detailed_exceptions: false
action_dispatch_logger: #
action_dispatch_backtrace_cleaner: #
rack-cache_cache_key: Rack::Cache::Key
rack-cache_verbose: false
rack-cache_storage: #
rack-cache_metastore: rails:/
rack-cache_entitystore: rails:/
rack-cache_default_ttl: 0
rack-cache_ignore_headers: ["Set-Cookie"]
rack-cache_private_headers: ["Authorization", "Cookie"]
rack-cache_allow_reload: false
rack-cache_allow_revalidate: false
rack-cache_use_native_ttl: false
action_dispatch_request_id: e2d750e51643154327187ea57e17b27c
action_dispatch_remote_ip: 186.108.221.65
rack_session: {"session_id"=>"35f207e203a82bb4138ce59901e84b83", "_csrf_token"=>"jE7EwctP9jwbkoVriT/8Nhe+X/B/2YJe+X2VKXjq9V8=", "warden_user_admin_user_key"=>"[\"AdminUser\", [\"1\"], \"$2a$10$PqjHTPCwJCOv56SlvBQzQe\"]"}
rack_session_options: {"path"=>"/", "key"=>"expire_after", "secure"=>"false", "httponly"=>"true", "defer"=>"false", "renew"=>"false", "coder"=>"#", "id"=>"35f207e203a82bb4138ce59901e84b83"}
rack_request_cookie_hash: {"_i4u_session"=>"BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTM1ZjIwN2UyMDNhODJiYjQxMzhjZTU5OTAxZTg0YjgzBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWpFN0V3Y3RQOWp3YmtvVnJpVC84TmhlK1gvQi8yWUplK1gyVktYanE5Vjg9BjsARkkiH3dhcmRlbi51c2VyLmFkbWluX3VzZXIua2V5BjsAVFsISSIOQWRtaW5Vc2VyBjsARlsGaQZJIiIkMmEkMTAkUHFqSFRQQ3dKQ092NTZTbHZCUXpRZQY7AFQ=--0f2f6b8679278223f510daf41fc47914b5049f73", "__utma"=>"57187698.1510765430.1354714949.1355151751.1355153921.6", "__utmb"=>"57187698.1.10.1355153921", "__utmc"=>"57187698", "__utmz"=>"57187698.1354714949.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)"}
rack_request_cookie_string: _i4u_session=BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTM1ZjIwN2UyMDNhODJiYjQxMzhjZTU5OTAxZTg0YjgzBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWpFN0V3Y3RQOWp3YmtvVnJpVC84TmhlK1gvQi8yWUplK1gyVktYanE5Vjg9BjsARkkiH3dhcmRlbi51c2VyLmFkbWluX3VzZXIua2V5BjsAVFsISSIOQWRtaW5Vc2VyBjsARlsGaQZJIiIkMmEkMTAkUHFqSFRQQ3dKQ092NTZTbHZCUXpRZQY7AFQ%3D--0f2f6b8679278223f510daf41fc47914b5049f73; __utma=57187698.1510765430.1354714949.1355151751.1355153921.6; __utmb=57187698.1.10.1355153921; __utmc=57187698; __utmz=57187698.1354714949.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
action_dispatch_cookies: #
action_dispatch_request_unsigned_session_cookie: {"session_id"=>"35f207e203a82bb4138ce59901e84b83", "_csrf_token"=>"jE7EwctP9jwbkoVriT/8Nhe+X/B/2YJe+X2VKXjq9V8=", "warden_user_admin_user_key"=>"[\"AdminUser\", [\"1\"], \"$2a$10$PqjHTPCwJCOv56SlvBQzQe\"]"}
warden: Warden::Proxy:33189240 @config={:default_scope=>:admin_user, :scope_defaults=>{}, :default_strategies=>{:admin_user=>[:rememberable, :database_authenticatable]}, :intercept_401=>false, :failure_app=>#}
action_dispatch_request_path_parameters: {"action"=>"index", "controller"=>"people"}
action_controller_instance: #
action_dispatch_request_parameters: {"action"=>"index", "controller"=>"people"}
action_dispatch_request_formats: ["text/html"]

[development][application#verify] AirbrakeTestingException: Testing airbrake via "rake airbrake:test". If you can see this, it works.

See this exception on Errbit

AirbrakeTestingException: Testing airbrake via "rake airbrake:test". If you can see this, it works.

Summary

URL

http://example.org/verify"

Where

application#verify

Occured

Nov 27 2:33pm

Similar

0

Params

{
  "action" => "verify",
  "controller" => "application"
}

Session

{
}

Backtrace

407:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__process_action__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_process_action_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb -> **process_action**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb -> **process_action**
30:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **block in process_action**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **block in instrument**
20:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb -> **instrument**
123:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/notifications.rb -> **instrument**
29:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb -> **process_action**
207:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb -> **process_action**
18:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb -> **process_action**
121:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/base.rb -> **process**
45:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb -> **process**
203:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **dispatch**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb -> **dispatch**
246:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_controller/metal.rb -> **block in action**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
73:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **dispatch**
36:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
68:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **block in call**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **each**
56:  [GEM_ROOT]/gems/journey-1.0.4/lib/journey/router.rb -> **call**
600:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb -> **call**
54:  [GEM_ROOT]/gems/sass-3.2.0/lib/sass/plugin/rack.rb -> **call**
164:  [GEM_ROOT]/gems/rack-mobile-detect-0.4.0/lib/rack/mobile-detect.rb -> **call**
35:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **block in call**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **catch**
34:  [GEM_ROOT]/gems/warden-1.1.1/lib/warden/manager.rb -> **call**
17:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb -> **call**
23:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/etag.rb -> **call**
25:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/conditionalget.rb -> **call**
14:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb -> **call**
21:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb -> **call**
242:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb -> **call**
205:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **context**
200:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/session/abstract/id.rb -> **call**
339:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb -> **call**
64:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/query_cache.rb -> **call**
473:  [GEM_ROOT]/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb -> **call**
28:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **block in call**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run__FRAGMENT__call__FRAGMENT__callbacks**
405:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **__run_callback**
385:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **_run_call_callbacks**
81:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/callbacks.rb -> **run_callbacks**
27:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb -> **call**
65:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb -> **call**
31:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb -> **call**
16:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb -> **call**
56:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb -> **call**
26:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call_app**
16:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/rack/logger.rb -> **call**
22:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb -> **call**
21:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/methodoverride.rb -> **call**
17:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/runtime.rb -> **call**
72:  [GEM_ROOT]/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb -> **call**
15:  [GEM_ROOT]/gems/rack-1.4.1/lib/rack/lock.rb -> **call**
62:  [GEM_ROOT]/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb -> **call**
479:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/engine.rb -> **call**
223:  [GEM_ROOT]/gems/railties-3.2.8/lib/rails/application.rb -> **call**
227:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/task.rb -> **call**
227:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/task.rb -> **block in execute**
222:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/task.rb -> **each**
222:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/task.rb -> **execute**
166:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/task.rb -> **block in invoke_with_call_chain**
211:  /Users/insigniamini/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/monitor.rb -> **mon_synchronize**
159:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/task.rb -> **invoke_with_call_chain**
152:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/task.rb -> **invoke**
140:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **invoke_task**
98:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **block (2 levels) in top_level**
98:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **each**
98:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **block in top_level**
107:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **run_with_threads**
92:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **top_level**
70:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **block in run**
157:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **standard_exception_handling**
67:  [GEM_ROOT]/gems/rake-10.0.0/lib/rake/application.rb -> **run**
37:  [GEM_ROOT]/gems/rake-10.0.0/bin/rake -> **<top (required)>**
19:  [GEM_ROOT]/bin/rake -> **load**
19:  [GEM_ROOT]/bin/rake -> **<main>**

Environment

rack_version: ["1", "1"]
rack_input: #
rack_errors: #
rack_multithread: false
rack_multiprocess: true
rack_run_once: false
REQUEST_METHOD: GET
SERVER_NAME: example.org
SERVER_PORT: 80
key: action_dispatch.request.query_parameters
PATH_INFO: /verify
rack_url_scheme: http
HTTPS: off
CONTENT_LENGTH: 0
ORIGINAL_FULLPATH: /verify
action_dispatch_routes: #
action_dispatch_parameter_filter: ["password"]
action_dispatch_secret_token: c1ecb7bbe6935070aa8180334f59e3c471e0e4a6c2988585a98cebea07b6dd82e75e28445bff1ebda600a73a277c3ff71cefe53dc2eb7dca4d2c1eb0431174e9
action_dispatch_show_exceptions: true
action_dispatch_show_detailed_exceptions: true
action_dispatch_logger: #
action_dispatch_backtrace_cleaner: #
action_dispatch_request_id: c4a593715225988b8b47dc803b171b7f
rack_session_options: {"path"=>"/", "key"=>"id", "secure"=>"false", "httponly"=>"true", "defer"=>"false", "renew"=>"false", "coder"=>"#"}
action_dispatch_cookies: #
warden: Warden::Proxy:70093385565320 @config={:default_scope=>:admin_user, :scope_defaults=>{}, :default_strategies=>{:admin_user=>[:rememberable, :database_authenticatable]}, :intercept_401=>false, :failure_app=>#}
action_dispatch_request_path_parameters: {"action"=>"verify", "controller"=>"application"}
action_controller_instance: #
action_dispatch_request_parameters: {"action"=>"verify", "controller"=>"application"}
action_dispatch_request_formats: ["text/html"]

Subscribe to our newsletter Mobile

El campo para ingresar el mail ocupa todo el ancho de la pantalla, lo cual es correcto.

Pero cuando toco el campo para poder escribir ahi, extrañamente cambia el formato y se "achica".

Definir styles para los mensajes asociados a la subscripción del newsletter

Cuando se realiza una subscripción, se agrega una lista con los mensajes al div #messages (ver app/views/shared/_footer.slim). Para diferenciar los tipos de mensajes de éxito o error se utilizan las clases "succesfull-subscription" y "failed-subscription" respectivamente.

Para poder mostrar un mensaje de error, probar realizar la subscripción con el email "[email protected]" (email existente). Y para ver un mensaje de éxito, probar con un email que no está ya dado de alta.

El staff debe estar ordenado.

Actualmente el staff se presenta en un orden indefinido (o irrelevante).

Debería poder ordenarse el staff dentro de un Site para que se muestren en ese mismo orden en la página.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.