carnival 0.0.59 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/images/carnival/avatar.png +0 -0
- data/app/assets/images/carnival/loadingGif.gif +0 -0
- data/app/assets/images/carnival/missing.png +0 -0
- data/app/assets/images/carnival/novo.png +0 -0
- data/app/assets/images/carnival/search-button.png +0 -0
- data/app/assets/{stylesheets → images}/carnival/select2-spinner.gif +0 -0
- data/app/assets/{stylesheets → images}/carnival/select2.png +0 -0
- data/app/assets/{stylesheets → images}/carnival/select2x2.png +0 -0
- data/app/assets/images/carnival/sort_asc.png +0 -0
- data/app/assets/images/carnival/sort_asc_disabled.png +0 -0
- data/app/assets/images/carnival/sort_both.png +0 -0
- data/app/assets/images/carnival/sort_desc.png +0 -0
- data/app/assets/images/carnival/sort_desc_disabled.png +0 -0
- data/app/assets/images/carnival/sprites-active.png +0 -0
- data/app/assets/images/carnival/voltar.png +0 -0
- data/app/assets/javascripts/carnival/admin.js +2 -5
- data/app/assets/javascripts/carnival/advanced_search.js +25 -25
- data/app/assets/javascripts/carnival/batch_action.js +24 -0
- data/app/assets/javascripts/carnival/external/jquery.datetimepicker.js +1462 -0
- data/app/assets/javascripts/carnival/vizir_admin.js +150 -7
- data/app/assets/stylesheets/carnival/actions.css.scss +140 -0
- data/app/assets/stylesheets/carnival/admin.css +17 -8
- data/app/assets/stylesheets/carnival/carnival-grid.css +48 -0
- data/app/assets/stylesheets/carnival/carnival-list.css +39 -0
- data/app/assets/stylesheets/carnival/carnival-table.css.scss +104 -0
- data/app/assets/stylesheets/carnival/colorbox.css.scss +69 -0
- data/app/assets/stylesheets/carnival/external/jquery.datetimepicker.css +306 -0
- data/app/assets/stylesheets/carnival/footer.css +31 -0
- data/app/assets/stylesheets/carnival/forms.css.scss +319 -0
- data/app/assets/stylesheets/carnival/grid.css +724 -0
- data/app/assets/stylesheets/carnival/header.css.scss +146 -0
- data/app/assets/stylesheets/carnival/listing-tools.css +17 -0
- data/app/assets/stylesheets/carnival/menu.css.scss +330 -0
- data/app/assets/stylesheets/carnival/modal.css.scss +75 -0
- data/app/assets/stylesheets/carnival/pagination.css.scss +28 -0
- data/app/assets/stylesheets/carnival/period.css.scss +127 -0
- data/app/assets/stylesheets/carnival/scope.css +30 -0
- data/app/assets/stylesheets/carnival/search.css.scss +151 -0
- data/app/assets/stylesheets/carnival/select2.css.scss +704 -0
- data/app/assets/stylesheets/carnival/structure.css.scss +238 -0
- data/app/controllers/carnival/base_admin_controller.rb +48 -45
- data/app/datatable/carnival/generic_datatable/column_sorter.rb +12 -0
- data/app/datatable/carnival/generic_datatable/column_sorter_creator.rb +12 -0
- data/app/datatable/carnival/generic_datatable/relation_column_sorter.rb +9 -0
- data/app/helpers/carnival/base_admin_helper.rb +181 -45
- data/app/helpers/carnival/field_renderers/field_renderer.rb +12 -0
- data/app/helpers/carnival/field_renderers/many_relation_renderer.rb +17 -0
- data/app/helpers/carnival/field_renderers/renderer_creator.rb +16 -0
- data/app/helpers/carnival/field_renderers/single_relation_renderer.rb +15 -0
- data/app/inputs/admin_date_input.rb +3 -2
- data/app/inputs/admin_enum_input.rb +1 -1
- data/app/inputs/admin_previewable_file_input.rb +9 -0
- data/app/inputs/admin_relationship_select_input.rb +1 -1
- data/app/models/carnival/action.rb +31 -9
- data/app/models/carnival/batch_action.rb +26 -0
- data/app/models/carnival/field.rb +56 -9
- data/app/models/carnival/query_form.rb +36 -0
- data/app/models/carnival/scope.rb +10 -1
- data/app/presenters/carnival/base_admin_presenter.rb +199 -133
- data/app/presenters/carnival/presenter_validators/field_validator.rb +39 -0
- data/app/services/carnival/klass_service.rb +83 -0
- data/app/services/carnival/presenters/advanced_search_parser.rb +95 -0
- data/app/services/carnival/query_form_creator.rb +32 -0
- data/app/services/carnival/query_service.rb +106 -0
- data/app/services/carnival/renderer/html.rb +15 -0
- data/app/view_objects/carnival/nested_form_options.rb +19 -2
- data/app/view_objects/carnival/paginator.rb +59 -0
- data/app/view_objects/carnival/thead_renderer.rb +52 -0
- data/app/views/carnival/base_admin/_index_as_grid.html.haml +12 -0
- data/app/views/carnival/base_admin/_index_as_list.html.haml +12 -0
- data/app/views/carnival/base_admin/_index_as_table.html.haml +19 -0
- data/app/views/carnival/base_admin/_inner_form.html.haml +5 -0
- data/app/views/carnival/base_admin/edit.html.haml +2 -2
- data/app/views/carnival/base_admin/home.html.haml +2 -0
- data/app/views/carnival/base_admin/index.csv.haml +6 -0
- data/app/views/carnival/base_admin/index.html.haml +67 -80
- data/app/views/carnival/base_admin/index.pdf.haml +11 -3
- data/app/views/carnival/base_admin/new.html.haml +3 -3
- data/app/views/carnival/base_admin/render_inner_form.js.erb +1 -0
- data/app/views/carnival/base_admin/show.html.haml +11 -9
- data/app/views/carnival/shared/_action_default.html.haml +1 -1
- data/app/views/carnival/shared/_action_delete.html.haml +1 -1
- data/app/views/carnival/shared/_action_remote.html.haml +10 -0
- data/app/views/carnival/shared/_advanced_search.html.haml +26 -26
- data/app/views/carnival/shared/_advanced_search_field.html.haml +12 -8
- data/app/views/carnival/shared/_application_modal_partial.html.haml +33 -0
- data/app/views/carnival/shared/_extra_item.html.haml +1 -1
- data/app/views/carnival/shared/_item_buttons.html.haml +5 -1
- data/app/views/carnival/shared/_period_filter.html.haml +25 -27
- data/app/views/carnival/shared/_photo_field.html.haml +2 -0
- data/app/views/carnival/shared/_scope.html.haml +8 -65
- data/app/views/carnival/shared/form/_field.html.haml +10 -4
- data/app/views/carnival/shared/form/_form.html.haml +12 -18
- data/app/views/carnival/shared/form/_nested_form.html.haml +31 -16
- data/app/views/carnival/shared/form/_nested_form_options.html.haml +16 -5
- data/app/views/carnival/shared/render_popup.js.erb +3 -2
- data/app/views/layouts/carnival/_menu.html.haml +12 -27
- data/app/views/layouts/carnival/admin.html.haml +18 -23
- data/config/initializers/wicked_pdf.rb +5 -0
- data/config/locales/carnival.en.yml +24 -0
- data/config/locales/carnival.pt-br.yml +35 -23
- data/config/routes.rb +1 -6
- data/lib/carnival.rb +2 -3
- data/lib/carnival/config.rb +11 -6
- data/lib/carnival/routes.rb +3 -9
- data/lib/carnival/version.rb +1 -1
- data/lib/generators/carnival/install_generator.rb +0 -3
- data/lib/generators/carnival/templates/carnival_initializer.rb +4 -13
- data/lib/tasks/carnival_tasks.rake +8 -4
- data/test/carnival-sample-application/Gemfile +61 -0
- data/test/carnival-sample-application/Gemfile.lock +217 -0
- data/test/carnival-sample-application/LICENSE +201 -0
- data/test/{dummy → carnival-sample-application}/README.rdoc +0 -0
- data/test/carnival-sample-application/Rakefile +6 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-regular-webfont.eot +0 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-regular-webfont.svg +252 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-regular-webfont.ttf +0 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-regular-webfont.woff +0 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-semibold-webfont.eot +0 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-semibold-webfont.svg +251 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-semibold-webfont.ttf +0 -0
- data/test/carnival-sample-application/app/assets/images/fonts/opensans-semibold-webfont.woff +0 -0
- data/test/carnival-sample-application/app/assets/images/fonts/up-not.png +0 -0
- data/test/carnival-sample-application/app/assets/images/missing.png +0 -0
- data/test/carnival-sample-application/app/assets/javascripts/application.js +16 -0
- data/test/carnival-sample-application/app/assets/stylesheets/application.css +15 -0
- data/test/carnival-sample-application/app/assets/stylesheets/carnival_devise_views.css +258 -0
- data/test/carnival-sample-application/app/controllers/application_controller.rb +6 -0
- data/test/carnival-sample-application/app/controllers/blog_controller.rb +20 -0
- data/test/carnival-sample-application/app/controllers/comments_controller.rb +8 -0
- data/test/carnival-sample-application/app/controllers/people_controller.rb +11 -0
- data/test/carnival-sample-application/app/controllers/photos_controller.rb +7 -0
- data/test/carnival-sample-application/app/controllers/post_files_controller.rb +9 -0
- data/test/carnival-sample-application/app/controllers/posts_controller.rb +8 -0
- data/test/carnival-sample-application/app/controllers/tags_controller.rb +8 -0
- data/test/{dummy → carnival-sample-application}/app/helpers/application_helper.rb +0 -0
- data/test/carnival-sample-application/app/models/city.rb +10 -0
- data/test/carnival-sample-application/app/models/ckeditor/asset.rb +4 -0
- data/test/carnival-sample-application/app/models/ckeditor/attachment_file.rb +13 -0
- data/test/carnival-sample-application/app/models/ckeditor/picture.rb +14 -0
- data/test/carnival-sample-application/app/models/comment.rb +6 -0
- data/test/carnival-sample-application/app/models/person.rb +11 -0
- data/test/carnival-sample-application/app/models/photo.rb +7 -0
- data/test/carnival-sample-application/app/models/post.rb +26 -0
- data/test/carnival-sample-application/app/models/post_file.rb +9 -0
- data/test/carnival-sample-application/app/models/tag.rb +6 -0
- data/test/carnival-sample-application/app/models/user.rb +7 -0
- data/test/carnival-sample-application/app/presenters/comment_presenter.rb +34 -0
- data/test/carnival-sample-application/app/presenters/person_presenter.rb +44 -0
- data/test/carnival-sample-application/app/presenters/photo_presenter.rb +33 -0
- data/test/carnival-sample-application/app/presenters/post_file_presenter.rb +26 -0
- data/test/carnival-sample-application/app/presenters/post_presenter.rb +60 -0
- data/test/carnival-sample-application/app/presenters/tag_presenter.rb +25 -0
- data/test/carnival-sample-application/app/views/blog/_item.html.haml +4 -0
- data/test/carnival-sample-application/app/views/blog/index.html.haml +8 -0
- data/test/carnival-sample-application/app/views/blog/show_post.html.haml +1 -0
- data/test/carnival-sample-application/app/views/carnival/_extra_header.html.haml +7 -0
- data/test/carnival-sample-application/app/views/carnival/base_admin/home.html.haml +17 -0
- data/test/carnival-sample-application/app/views/devise/confirmations/new.html.haml +9 -0
- data/test/carnival-sample-application/app/views/devise/mailer/confirmation_instructions.html.haml +8 -0
- data/test/carnival-sample-application/app/views/devise/mailer/reset_password_instructions.html.haml +14 -0
- data/test/carnival-sample-application/app/views/devise/mailer/unlock_instructions.html.haml +11 -0
- data/test/carnival-sample-application/app/views/devise/passwords/edit.html.haml +15 -0
- data/test/carnival-sample-application/app/views/devise/passwords/new.html.haml +13 -0
- data/test/carnival-sample-application/app/views/devise/registrations/edit.html.haml +32 -0
- data/test/carnival-sample-application/app/views/devise/registrations/new.html.haml +12 -0
- data/test/carnival-sample-application/app/views/devise/sessions/new.html.haml +14 -0
- data/test/carnival-sample-application/app/views/devise/shared/_links.html.haml +14 -0
- data/{app/views/admin_users → test/carnival-sample-application/app/views/devise}/unlocks/new.html.erb +0 -0
- data/test/carnival-sample-application/app/views/layouts/application.html.erb +14 -0
- data/test/{dummy → carnival-sample-application}/bin/bundle +0 -0
- data/test/carnival-sample-application/bin/rails +8 -0
- data/test/carnival-sample-application/bin/rake +8 -0
- data/test/carnival-sample-application/bin/spring +18 -0
- data/test/{dummy → carnival-sample-application}/config.ru +0 -0
- data/test/carnival-sample-application/config/application.rb +25 -0
- data/test/carnival-sample-application/config/boot.rb +4 -0
- data/test/carnival-sample-application/config/database.yml +25 -0
- data/test/carnival-sample-application/config/environment.rb +5 -0
- data/test/carnival-sample-application/config/environments/development.rb +59 -0
- data/test/carnival-sample-application/config/environments/production.rb +82 -0
- data/test/carnival-sample-application/config/environments/test.rb +39 -0
- data/test/carnival-sample-application/config/initializers/assets.rb +8 -0
- data/test/{dummy → carnival-sample-application}/config/initializers/backtrace_silencers.rb +0 -0
- data/test/carnival-sample-application/config/initializers/carnival_initializer.rb +37 -0
- data/test/carnival-sample-application/config/initializers/ckeditor.rb +39 -0
- data/test/carnival-sample-application/config/initializers/cookies_serializer.rb +3 -0
- data/test/carnival-sample-application/config/initializers/devise.rb +256 -0
- data/test/{dummy → carnival-sample-application}/config/initializers/filter_parameter_logging.rb +0 -0
- data/test/{dummy → carnival-sample-application}/config/initializers/inflections.rb +0 -0
- data/test/carnival-sample-application/config/initializers/mime_types.rb +4 -0
- data/test/carnival-sample-application/config/initializers/session_store.rb +3 -0
- data/test/{dummy → carnival-sample-application}/config/initializers/wrap_parameters.rb +0 -0
- data/test/carnival-sample-application/config/locales/carnival.en.yml +17 -0
- data/test/carnival-sample-application/config/locales/carnival.pt-br.yml +251 -0
- data/test/carnival-sample-application/config/locales/devise.carnival.en.yml +42 -0
- data/test/carnival-sample-application/config/locales/devise.carnival.pt-BR.yml +42 -0
- data/test/carnival-sample-application/config/locales/devise.en.yml +59 -0
- data/test/{dummy → carnival-sample-application}/config/locales/en.yml +0 -0
- data/test/carnival-sample-application/config/routes.rb +25 -0
- data/test/carnival-sample-application/config/secrets.yml +22 -0
- data/test/carnival-sample-application/db/csv_data/brazil.csv +9714 -0
- data/test/carnival-sample-application/db/development.sqlite3 +0 -0
- data/test/carnival-sample-application/db/migrate/20140906224643_create_people.rb +12 -0
- data/test/carnival-sample-application/db/migrate/20140906224816_devise_create_users.rb +42 -0
- data/test/carnival-sample-application/db/migrate/20140907031459_create_ckeditor_assets.rb +26 -0
- data/test/carnival-sample-application/db/migrate/20140907131441_create_photos.rb +11 -0
- data/test/carnival-sample-application/db/migrate/20140922141033_create_post.rb +11 -0
- data/test/carnival-sample-application/db/migrate/20140922142000_create_comment.rb +9 -0
- data/test/carnival-sample-application/db/migrate/20140922142154_create_post_file.rb +10 -0
- data/test/carnival-sample-application/db/migrate/20140922142755_add_columns_to_post.rb +6 -0
- data/test/carnival-sample-application/db/migrate/20140922143128_create_tag.rb +8 -0
- data/test/carnival-sample-application/db/migrate/20140922150155_create_posts_tags.rb +8 -0
- data/test/carnival-sample-application/db/migrate/20141008195345_add_column_to_comments.rb +5 -0
- data/test/carnival-sample-application/db/schema.rb +190 -0
- data/test/carnival-sample-application/db/seeds.rb +1 -0
- data/test/carnival-sample-application/db/seeds/br_states_cities.rb +5672 -0
- data/test/carnival-sample-application/db/seeds/users.rb +1 -0
- data/test/{dummy/public/favicon.ico → carnival-sample-application/db/test.sqlite3} +0 -0
- data/test/carnival-sample-application/log/bullet.log +29 -0
- data/test/carnival-sample-application/log/development.log +36766 -0
- data/test/carnival-sample-application/public/404.html +67 -0
- data/test/carnival-sample-application/public/422.html +67 -0
- data/test/carnival-sample-application/public/500.html +66 -0
- data/test/carnival-sample-application/public/ckeditor_assets/pictures/1/content_press-estadao.png +0 -0
- data/test/carnival-sample-application/public/ckeditor_assets/pictures/1/original_press-estadao.png +0 -0
- data/test/carnival-sample-application/public/ckeditor_assets/pictures/1/thumb_press-estadao.png +0 -0
- data/test/carnival-sample-application/public/favicon.ico +0 -0
- data/test/carnival-sample-application/public/robots.txt +5 -0
- data/test/carnival-sample-application/public/system/countries/flags/000/000/001/medium/brasil-flag.jpg +0 -0
- data/test/carnival-sample-application/public/system/countries/flags/000/000/001/original/brasil-flag.jpg +0 -0
- data/test/carnival-sample-application/public/system/countries/flags/000/000/001/thumb/brasil-flag.jpg +0 -0
- data/test/{dummy/test/fixtures/credit_cards.yml → carnival-sample-application/test/fixtures/address_types.yml} +0 -0
- data/test/carnival-sample-application/test/fixtures/addresses.yml +23 -0
- data/test/carnival-sample-application/test/fixtures/cities.yml +9 -0
- data/test/carnival-sample-application/test/fixtures/countries.yml +9 -0
- data/test/carnival-sample-application/test/fixtures/people.yml +13 -0
- data/test/{dummy/test/fixtures/installments.yml → carnival-sample-application/test/fixtures/phone_types.yml} +0 -0
- data/test/carnival-sample-application/test/fixtures/phones.yml +13 -0
- data/test/carnival-sample-application/test/fixtures/photos.yml +9 -0
- data/test/carnival-sample-application/test/fixtures/states.yml +11 -0
- data/test/carnival-sample-application/test/fixtures/users.yml +11 -0
- data/test/carnival-sample-application/test/models/address_test.rb +7 -0
- data/test/carnival-sample-application/test/models/address_type_test.rb +7 -0
- data/test/carnival-sample-application/test/models/city_test.rb +7 -0
- data/test/carnival-sample-application/test/models/country_test.rb +7 -0
- data/test/carnival-sample-application/test/models/person_test.rb +7 -0
- data/test/carnival-sample-application/test/models/phone_test.rb +7 -0
- data/test/carnival-sample-application/test/models/phone_type_test.rb +7 -0
- data/test/carnival-sample-application/test/models/photo_test.rb +7 -0
- data/test/carnival-sample-application/test/models/state_test.rb +7 -0
- data/test/carnival-sample-application/test/models/user_test.rb +7 -0
- data/test/carnival-sample-application/test/test_helper.rb +10 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/actions.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/carnival-table.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/colorbox.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/forms.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/header.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/menu.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/modal.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/pagination.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/period.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/search.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/select2.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sass/59eec23b6d547bfcc7051ddd93c63b5c1f3a15d5/structure.css.scssc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/018a93c2452c8104980bcd5778c4f903 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/01c1d1cbb942f60130f0aa01d50c98d2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/01f19102632822ff5cdfcff062e33fd3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/02b691bcf7570e21acab45d320ac92cf +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/03e09a9ecd941455c0e31148eab8df5e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/049c6f2079e2e93f96fd228df8c265ba +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/05105d4559bcca2093e060a0d34d1f65 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/06df70ed2a18a7f7e61e5e5f742223be +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/0771f824a0b668f566e7c11953b6065e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/084948922cc1747cfb23c0952d5c37b5 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/091b593743b4c33e0345d748a05c7e5c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/09510abe4df3355818340eb3b8a28e96 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/0ae25be43ded3caa13267987a3c02a64 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/0b679bb13ad6d98790b151c7cd9a7d6c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/0c7a0e21a49864b0149886bfd5c14335 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/0d9971c4a3b5017a7d2122508b66bb12 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/0db7b13576bab943e1e0671983183987 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/0f7b5da581fb3730800607447951008a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/108a7cb039b978b98566e9fff07a0f07 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/12497e9ab7079369e357a77da6d7039d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/1367e1fa08f1b8c7abd298d4bbe85c1a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/141987f5d019e60604cd75d2e340942f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/143b611537849cb466b4b79072384d45 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/147e4215ac96fd8b8d373567ae00ed47 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/14e33c9fd976fc33464f6baba05977b7 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/15e999c3ae5c6ac597e408162039eaa6 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/15eb72ff29cc04a670e18be7a6dbc427 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/1634e1287a9914e738e710919b7cd6e4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/1687e7d4f0e4df2cdd5c0178e3d6cc9c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/16c6027bc506317d8266573d0ae1b510 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/16e4094498947b5f36bfbb490b94d025 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/172700150bce76305d35d30489390680 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/17fa674269d6114754cfc4dc486165f5 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/1b0db65de79b14aa6ac3872922f41633 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/1b655022b4097841a91cea79a36974c4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/1b8c19ccc1a52499663ed5fcf9bb8ae7 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/1d5faf65e97207f813a58f8ebeaf1274 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2109e2acf993625dc0a3f05e7e0af523 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2130115c3744b656f872e86fd4c0d1f7 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/21e89993e0f6f1b465e0de70e76b77f3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/225a16368e8f0173b98f369eba7f9613 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/25535751f391b2dc80557410485125f1 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2684dad966b304ec2aee0149dc77c657 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2727150f5e0042285fb92b55da04edd9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2908a36318747c72030e94441a2579c4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2a79a452390cf96806cf8a4b1e714ebd +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2a85e7b776e55125671b84c4ed5a9f56 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2a9e426eae42e7139cb4c232f594dfdc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2cc3cebf148ed79d98289a2fb3f47f11 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2d28c83a0599282f7e908f446dccbfee +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2d5498b3600418e3afcea21b9fa2fd8e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2d5e4a595026b401151bfcc08025f402 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/303669e7b690d62971c0ca2641cb8484 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/30c8c2e6ca355103a267133f6b45b0ce +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/31177aaa32db75be241353c5819450b4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/31a6581dfe5a788b2b450403959a97c5 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/321e966b8da12dddd7790c0f8f101a94 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3268cc5ee8caa05df8bd112fb3c8dd4d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/32daf8a3bfd9da8ab261f5002f66389f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/33dfbc7bdde795abfd1031ceaa315dc8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3418bacb62ef0e7dac3d52f0cf321da2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/343273dfc4b3c46044826bad5310ff80 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/34dba06ee0eb7a742ecdfcba69edb56e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/35b7594e3d30557791db926b59288142 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/37ada358264ec5353b7eadd17671b00c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/39d34c0caaa6f36d684fac1898a7f88f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3a2fdd82041ab4b5ce8a082ec9b270fb +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3ac0f4fad0d3e6d3d13d4ed2189dcabe +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3af8e5bf0689a50b7e2dcfa46ac07997 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3b77d48e418c4e729d1d3116f6fe7659 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3b9b5a2c6fcba1ccdbb867ab1e5083c3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3be8982b1a579bda46fff8458c2e9650 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3d6df89f8e1c82df52b84bd7cf0d3ee5 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3d8100b6e405407290dcf994ef05e0b7 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3e1c6afba0853ba8442c1e95145bc69f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3f89739d959e11df6c20fa6ea13c1044 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/3fd8a2a00bb4ebd69a3ecac257dbe536 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/41249a08e767749660864b8a126871e4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/42896688ac25fb507f558b65338ae506 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4289a401467bbd1ac6301c15e461a0fe +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/42f831ab37be530e23b3fecde31d395a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4423cb4765f66f187ffcb3be911c3600 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4591822100d594651b903737585c19b2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/45b86c586ed942b09cec2190b3c45c5a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/47093ffdd83bfa6e3ca929451935b678 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/47ce692a80d5b075614c2489d7e3a142 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4854037352be1432855ab1fd84807257 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4a7a4dcd9fea9bd2e287771c51f96631 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4ac7e6502d2b0f0d483822c0228534ce +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4b14e3880798048b183b2e5b92678eff +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4b6e6db955179fabe966a77cecb884fc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4bd7e9214a07840040d269fdbf523e97 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4c36f4196d9df171251bea6f3b587fe3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4c3a807ec26c8f525878961cc2d4f92e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4dfac2955cf5c82b17ecdb26684b3158 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/4e4b1f24c5e69f2f305f6d6483a1605c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5090d7ea741c7f63994eb7b62e757f8f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/50feb6970bcc6793e38e49490aeea379 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/531aeb4dd50524508fb60b5344c73327 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/536648929c703c8c5e964b502b2095ff +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/55577a64927ea3a4490e6b7a548ebd5a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/55665c9d91af8cad1b707c010279afa8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5639af2f1b104eeb7a6c22d30792605a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5644ad965098c5b865233d32caa78fa2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/565023fdd3960225e817ec043b2d9474 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5678384977b25b7fc157337ee4b5174d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/56a682a9df1f53c8d67f2467389995b2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/56d4662283412fe0470616ede5b280fe +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/577f4d9c0b4703cbfffd7159a232e60e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/57de947320c9e58e3701a3d95c73d8fc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/582695322b15ca48dec5b1589fa2f25e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/584406f19bdfbbf7326e3fc9d16ab9be +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5a4d2d875f1d8ab987ab653f896d1c39 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5b0d5ead11b1996d8c04250256d5f1d4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5bfeca8910a98db2331a165c934f78d8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5c7c6435c41073325420f96a2676c251 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5c8a4c90b3525681a2173b93b9d55293 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5c9faafcc4064c90383f4660501dbf1f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5e5a6fdcb3e61c2109d93a660f523885 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5e7998a2046d512312e432aef40d3e22 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5eacf8d05b2a79f57d54ee047a51e223 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5f8e2753277abbe8175883a72dbf7438 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/5ff6c7a42ff7a4d062640d9211b42275 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/604d964a22a33e7a1dc917eb10328fb6 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/611bcab6d1ba6d887fc27c1b9f6f2ac4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/62fa287ce2f69f873b52855ac2c5b5f6 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/64a72e49519814297a127b83cbc48de8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/659ec74b366d82a17c61368c075f5b1a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/668cf07336af8cb5e5901689f71536dc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6808736d34ec24fb10203097ff009a4d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6b57b684590d7c01cfa80052144dd2df +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6c257cb7126b2e5bda4c42d414e39786 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6c685c03c79a2ce102e400e8109e09ec +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6cd842e10596552904bcf2ca54c86bf5 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6ce5945ed85a31ec875a9973b5a3d3bc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6d806eaa317f200bbf2832a0abf1c1cc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6dbcb09bb8b13a79ba150908ac8a5491 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6e33cac5196fd70fb730018566bfb2be +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6e6e4eaedc6398f0557ca2fe922c970d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6ebd06491e132b3907c33181ba6455d8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6f451103d8e7e4ba11d49ee3df3a42c3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/6fa274b2ef1957dcfb4e4a8bd54a4381 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/706dcf8ec253808fea35ae06a4b408b1 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/731bc726ec469e8d2b1d7ef98a8e7ee9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/73e72dcf4e4a38d470d010ab1253c892 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/756a442d8910ebcd9a7ef8034be65c7b +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/765121abadb667d0fa6baaef3eaf0c7d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/76e6805c86c571a29b06672370b4bcfb +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/77b28be036ea85006732caba3c0007e0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/78e286ff931fc83ce9661538ebe97d71 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/79758a97faef6e7c6e9f4d344439ce7e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/79f249600921bff9906cd4f6418852d6 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7a5d26a333ef57f4cb3f6148d201aabd +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7b535ac8ba2c6993c4021b1a18552b3a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7bd794f5cf51e8215837008d68ebaa20 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7c6ceae39bcc047d6b23f709d960a3b8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7cfe3fa955d677396ed9e22193559a64 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7d0355c8c87edb9dc1e1aba686419c05 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7d0c084a1ccef1179a0e1fc17197b4e0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7e154ca951644e8aa1a2c6221f08db4f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7e226010b7d864fd46f9c139db6ee19f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7e5edf3310288c5a41661d88f493545c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7ed3de752abe4ea5296a68ae89dba4fb +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/7ff27066ece4e910f15a327b72618e2a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/822d6436044fe88b0b3fbc6f3458ff88 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/82fd352455b911d98e1accebb788546c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/83e8d19d8f5a88dd50ebdffbdc9bdb47 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/84da0568ae0b1c81a11a3ab71d73d2d5 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/84e8613605f81892aadf36354a323111 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/84f5849f69922256c500f248249cfbc9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/8576d7c22dbd8222ab27a6c47f56a65c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/87384674433c1cf32782cbfb6fc5ebb9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/8738c6d1986f576db3b6334b2121e7c8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/89f58cf8e369c7bf9f0e84ef524028e0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/8a4b32386b5d8554473df478badd6ef9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/8a4c42ae1d504541e92a72a4a44eb24e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/8afea7cbd0e8e3af68698c969bdbbbda +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/8bc60f31f479cd0263d897aa45b88750 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/8d6e04028d79b29cf8f5eee980aa18f1 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/91407834f351bc5cd237ea4eb08f6001 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/918ab452d9c4634682ff94ffbd89e16f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9270e87d327f8fe8ea12ca5db897c4bd +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/92aa75e1ab12614c7b3ad012d4728a04 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9406ab6f0dd16a8cd5802c3c74df86ce +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/943be6013403fbd034b6d562cc4f87f9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9455de99a5c68705427bbec9e50865ce +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/94f27a2e1ecc02f5ef535b374e2c4379 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9505d4a68da37fa3fced10c38d4d5ddb +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/958dd41e5252627471b2b65116401512 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9658141bfa282274f1da9155c32ae206 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/967fe853baea514059d9be2097f38d1d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9816f754c86f3b94a446420c1ff2233d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/98ceab3f773f98e1d816ad52a043a924 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/992534485dbe06ba4a2040e7d6948eae +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/996ac001c901711cabb64b7e1940c54a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9a6cad808b2b044a920529363a8d7724 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9a7b59bbe51444bef5055e2363a59803 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9acb34d05b27f4e67372a7dc26a5d3b1 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9aec27b5fa2afdfa28068452ece0e6f0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9b0e3fe12201714b8050bb8ab5749318 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9db7e75f3fa621ef08ade7ffda96e39f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9dc853d92b5d774afadacc451965059c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/9e2bb6b24803c47f6aa1c91bdb31ba18 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a125dd8e84a82fc90705bd3710fb93c2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a1c5386d742fb4d01bea977ed28f4a96 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a2ea0bd40e08492898f032af3756ebf9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a30288f737d428b0feb2a78b3aab9c69 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a36ee5f5103c78a2dc8d8e29656dc327 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a4041d09b752d37c974e1a69b5b6e0a3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a40d723f9a6ad5b541009b8f05ce6533 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a4193986c619cd53dfbdd8ae54f549af +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a51029e7775f64fd76c30547b0413bfa +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a515ea5e8aa465597bf897e31735b32d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a5446137dcafeefdb796925812088e16 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a5a0ff858f21d52e10e704debac81447 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a648d40682eb5b9e1b016ee800905b55 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a7508c645f08516557476f03a916f19a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/a908448dd851cae431aa2b4bde9b5a98 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/aa5708f6fbe7528d49c127a7f89a2511 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ac17fbd3743c6531f10a0dec5679e59a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ac8b3cb3e383bf8abb758c3f1c095828 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/acfe6b4873e5e819e6a4633f295da3d0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ad7b50123ad008ac0730bbbdf76a6bfe +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ad9c3dc49b6b046bb8f83fb8bad27b6c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/aec6142fc0766d2df84237d1ec9ddc1e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/af3696bc749e9ad941d3575ace2792e7 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b099ceca430f080e03f02bf57c42a7b7 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b20004b4dfef0ed505d45aa175900a55 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b30c0565fa2370ebc5d01c6221b16733 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b4aaca4110498e9cca185aa92bb3f864 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b5b115d46b544fadf48210ad91d0e456 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b68b79caccd9e70a7665677cf55b0b0f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b71158f0e41b0276c991f0c16a5f9e78 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b7800bbb5e52a1a3603a827e6c06b0a3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/b9c512143f808801a22fdb4313aa12f0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ba891185d4fda83f4c16e6bb8139359b +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/baba9524e2e81d3c28f384bd554c77c2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/bad58ffcc30d048671fcbd0b594df02c +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/bb62c22d794b3668d8ac23c5b7492a54 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/bc3645c652c8b378b7a9560165cdb70a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/bc6f0129e2243027cdf57314b0b65b1f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/bcd49a939f0e4eb2a50d9ac2d17b649e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/be46fbc28bcde36ef88a140c4bca78fa +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/bea8fc4b9fc9ae163aa3e82041be2542 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/bf313b342653b1b3e509da03d61866e2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c14a06ee359f4c825ddcc3ad58c973e8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c1548bed3e7ca5b4ad8dc9472cf8097e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c2e37f777f1400763cac8e527f8ceb08 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c478a27fa6f430744d156961f88dc051 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c610a61bdbdb48559d090ad987266674 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c6117627845def042231e06f166f7651 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c72101732682999b6ca050f007fc6467 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c8927e934e7960fc7907b6fc02ea7f08 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/c980544b5828a643ecaa8e784897c2c2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ca0e1997bc6c40f955a42ee777299750 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/cb180d1ba68a565b8373b22576170eb8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/cc496253c79be9ff297c737388e02d38 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/cfe1b01977a2aadf4ad302ec1cbd4a1f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d08175c5e1a0538c37bc862f241bc2d6 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d0b1b5db15effcc8d82713072a1203eb +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d15c83ac7c1a333df56d270d2d3867a3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d16461dfcae4b782f721ebd81e4f8740 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d4d0d46a6c2d6aa9bd0e4c086a8acfcc +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d6327a0916e2e516fcf7ab7c5520c7a0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d73ac23504860006ee8365d9031bd98b +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d7f26bb285c55663ca59d1696e3b0937 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d81122f6f2520c8f0785425936756e20 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d898b9616827fd80958147d449bba0f4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/d947e874bbdbfa61aff2ea12e32855f1 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/daf428b2f08afc738dfcd85d872d49c4 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/dbf160a6439a8d0b792ff46cf0a612f6 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/dc5a6e1e848dfc338a281846eb757ef2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/dc829340258cc36c0df423725df54649 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/dcedf863f6acc3e1f21ec11434a77bf7 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/dd326f3f4fd1c7fd075b58d6cb623a25 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/de060f82711b4b5c465f17b140eb2a61 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/de2e1a0e467f573a53b2ceab5249596d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/dfa83cee1a740ff2f77a2d18bcb339e1 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e0352d0f97751491adbe6a94832772af +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e0ab4219be08f117bd6a3b170fe72364 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e1d6efce94e71965434d2dde64fd8410 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e420fc40cf29fd9bcd106b832aa0a302 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e4298973f799acdce289752c24bfddf2 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e4900a6e69f874e98b87c7c7b23f7f5a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e62e56f99e228e3467663224450f0a9b +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e6dcb3f13f2f2d137507bb18705d8f6a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e6eba2c477873b163eba18157431c746 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e79e200e687a4f37e47d31d00d02164d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e7c83bc9e88426e3db15c345d5bc029f +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e8ff894b4bda26a4238cb97920bb4f46 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/e9c81ca91323dab8977ffd8a459cab06 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ea3d2f5d2249df8566857bd55fc4c2d8 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/eb043ab8b89246c4cd0a592562ea7062 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/eb2497ce6194d026c1f56fbc42f07d10 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/eb7d39f60d584b68af01ee0b7fa59e9d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/eccab0d41d08e156ccd2f36f85949356 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f00c318a433ae79dd2a4a365dcfc5109 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f1369846635d7bfa5027814a15f8b753 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f199b36f855f450e0dd00acc4ff44cc5 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f20689beff44b65682fca335f146eda3 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f31e05a23db2e9dfc9207658cda7b799 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f58858f5bebab2939530c90ecb658808 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f5aadc9257575b9475b997dd244a6284 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f5c9348795319821f3309d4e03bb9fdb +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f631443b06d6b36e666344dbaf0b64f0 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f64c2990e1d03befb77941200b3d5b2a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f6ebc61cd63079a79754e5f71697ce60 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f71bbedf97979d3cfe44077a64d3e98a +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f795ed856980e9033fa3603aa61bac8d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f7ab949c8c6b7ef3f2b743ebd98f9f59 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/f87bd147767b581774e5b0aa43aba01d +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/fb4d79caa2fe1d1cb76bdcc75d568ea1 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/fc4b3bb94f52c27dfb87395841a7cb62 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/fc79e1609ba401a4408c71182ef89b3e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/fd1e0a44b82fc47f26c7adec9d918911 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/fe07bee8fe5d7afe5096dd27aba8ca7e +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/fe9a0ccc2a407c74780c85e66882e888 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ff28145870d176459ca917bcec4feae9 +0 -0
- data/test/carnival-sample-application/tmp/cache/assets/development/sprockets/ff3b0a569330823bd5599af14ee70cc8 +0 -0
- data/test/carnival-sample-application/tmp/pids/server.pid +1 -0
- metadata +1024 -711
- data/app/assets/images/carnival/datatables-loading.gif +0 -0
- data/app/assets/images/carnival/fancybox_loading.gif +0 -0
- data/app/assets/images/carnival/fancybox_loading@2x.gif +0 -0
- data/app/assets/images/carnival/fancybox_overlay.png +0 -0
- data/app/assets/images/carnival/fancybox_sprite.png +0 -0
- data/app/assets/images/carnival/fancybox_sprite@2x.png +0 -0
- data/app/assets/images/carnival/sprite.png +0 -0
- data/app/assets/images/carnival/up-not.png +0 -0
- data/app/assets/javascripts/carnival/admin.js.orig +0 -25
- data/app/assets/javascripts/carnival/data_tables_functions.js +0 -91
- data/app/assets/javascripts/carnival/external/chosen.jquery.js +0 -1239
- data/app/assets/javascripts/carnival/external/jquery.dataTables.min.js +0 -156
- data/app/assets/javascripts/carnival/external/jquery.fancybox.js +0 -2020
- data/app/assets/javascripts/carnival/external/perfect-scrollbar-0.4.6.min.js +0 -4
- data/app/assets/javascripts/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js +0 -4
- data/app/assets/javascripts/carnival/vizir_admin.js.orig +0 -144
- data/app/assets/stylesheets/carnival/chosen.css +0 -435
- data/app/assets/stylesheets/carnival/colorbox.css +0 -69
- data/app/assets/stylesheets/carnival/datatable.css +0 -131
- data/app/assets/stylesheets/carnival/formframe.css +0 -407
- data/app/assets/stylesheets/carnival/jquery-ui-1.8.11.custom.css +0 -573
- data/app/assets/stylesheets/carnival/jquery.fancybox.css +0 -274
- data/app/assets/stylesheets/carnival/main.css +0 -2363
- data/app/assets/stylesheets/carnival/perfect-scrollbar-0.4.6.min.css +0 -5
- data/app/assets/stylesheets/carnival/select2.css +0 -704
- data/app/assets/stylesheets/carnival/vizir-grid.css +0 -663
- data/app/controllers/carnival/admin_user_notifications_controller.rb +0 -19
- data/app/controllers/carnival/admin_users_controller.rb +0 -10
- data/app/controllers/carnival/omniauth_callbacks_controller.rb +0 -34
- data/app/controllers/carnival/sessions_controller.rb +0 -24
- data/app/datatable/carnival/generic_datatable.rb +0 -193
- data/app/helpers/carnival/admin_users_helper.rb +0 -4
- data/app/models/carnival/admin_user.rb +0 -48
- data/app/models/carnival/admin_user_notification.rb +0 -25
- data/app/models/carnival/notification.rb +0 -10
- data/app/presenters/carnival/admin_user_notification_presenter.rb +0 -5
- data/app/presenters/carnival/admin_user_presenter.rb +0 -36
- data/app/views/admin_users/confirmations/new.html.erb +0 -12
- data/app/views/admin_users/mailer/confirmation_instructions.html.erb +0 -5
- data/app/views/admin_users/mailer/reset_password_instructions.html.erb +0 -8
- data/app/views/admin_users/mailer/unlock_instructions.html.erb +0 -7
- data/app/views/admin_users/passwords/edit.html.erb +0 -16
- data/app/views/admin_users/passwords/new.html.erb +0 -12
- data/app/views/admin_users/registrations/edit.html.erb +0 -29
- data/app/views/admin_users/registrations/new.html.erb +0 -18
- data/app/views/admin_users/sessions/new.html.haml +0 -13
- data/app/views/admin_users/shared/_links.html.haml +0 -14
- data/app/views/carnival/login.html.haml +0 -20
- data/app/views/carnival/shared/_application_popup_partial.html.haml +0 -12
- data/app/views/carnival/shared/_batch_operation_checkbox.html.haml +0 -4
- data/app/views/carnival/shared/_filter_bar.html.haml +0 -3
- data/app/views/carnival/shared/_link_fields.html.haml +0 -6
- data/app/views/carnival/shared/_list_cel.html.haml +0 -9
- data/app/views/carnival/shared/form/_field.html.haml.orig +0 -32
- data/app/views/carnival/shared/form/_form.html.haml.orig +0 -120
- data/app/views/carnival/shared/form/_nested_form_options.html.haml.orig +0 -47
- data/app/views/layouts/carnival/_notifications_list.html.haml +0 -27
- data/config/initializers/devise.rb +0 -267
- data/config/locales/devise.en.yml +0 -59
- data/config/locales/devise.pt-br.yml +0 -59
- data/db/migrate/20140129211859_devise_create_admin_users.rb +0 -43
- data/db/migrate/20140129213216_create_notifications.rb +0 -10
- data/db/migrate/20140129223355_create_admin_user_notifications.rb +0 -10
- data/db/migrate/20140206144730_add_columns_to_admin_users.rb +0 -7
- data/lib/carnival/routes.rb.orig +0 -24
- data/lib/carnival/version.rb.orig +0 -7
- data/test/dummy/Rakefile +0 -6
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/assets/stylesheets/application.css +0 -13
- data/test/dummy/app/controllers/admin/cities_controller.rb +0 -9
- data/test/dummy/app/controllers/admin/countries_controller.rb +0 -10
- data/test/dummy/app/controllers/admin/credit_cards_controller.rb +0 -9
- data/test/dummy/app/controllers/admin/installments_controller.rb +0 -9
- data/test/dummy/app/controllers/admin/people_controller.rb +0 -9
- data/test/dummy/app/controllers/admin/states_controller.rb +0 -9
- data/test/dummy/app/controllers/admin/testes_controller.rb +0 -9
- data/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/dummy/app/models/admin.rb +0 -5
- data/test/dummy/app/models/admin/city.rb +0 -12
- data/test/dummy/app/models/admin/company.rb +0 -14
- data/test/dummy/app/models/admin/country.rb +0 -12
- data/test/dummy/app/models/admin/credit_card.rb +0 -13
- data/test/dummy/app/models/admin/installment.rb +0 -11
- data/test/dummy/app/models/admin/installments_credit_cads.rb +0 -7
- data/test/dummy/app/models/admin/job.rb +0 -10
- data/test/dummy/app/models/admin/person.rb +0 -17
- data/test/dummy/app/models/admin/professional_experience.rb +0 -14
- data/test/dummy/app/models/admin/state.rb +0 -17
- data/test/dummy/app/models/job.rb +0 -8
- data/test/dummy/app/presenters/admin/city_presenter.rb +0 -42
- data/test/dummy/app/presenters/admin/country_presenter.rb +0 -30
- data/test/dummy/app/presenters/admin/credit_card_presenter.rb +0 -19
- data/test/dummy/app/presenters/admin/installment_presenter.rb +0 -24
- data/test/dummy/app/presenters/admin/person_presenter.rb +0 -62
- data/test/dummy/app/presenters/admin/state_presenter.rb +0 -46
- data/test/dummy/app/presenters/admin/state_presenter.rb.orig +0 -49
- data/test/dummy/app/views/admin/cities/edit.html.haml +0 -3
- data/test/dummy/app/views/admin/cities/new.html.haml +0 -3
- data/test/dummy/app/views/admin/cities/show.html.haml +0 -3
- data/test/dummy/app/views/admin/testes/_form.html.haml +0 -17
- data/test/dummy/app/views/admin/testes/edit.html.haml +0 -3
- data/test/dummy/app/views/admin/testes/new.html.haml +0 -4
- data/test/dummy/app/views/admin/testes/show.html.haml +0 -14
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/bin/rails +0 -4
- data/test/dummy/bin/rake +0 -4
- data/test/dummy/config/application.rb +0 -22
- data/test/dummy/config/boot.rb +0 -5
- data/test/dummy/config/database.yml +0 -25
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -47
- data/test/dummy/config/environments/production.rb +0 -80
- data/test/dummy/config/environments/test.rb +0 -36
- data/test/dummy/config/initializers/carnival_initializer.rb +0 -324
- data/test/dummy/config/initializers/mime_types.rb +0 -5
- data/test/dummy/config/initializers/secret_token.rb +0 -12
- data/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/dummy/config/locales/carnival.en.yml +0 -1
- data/test/dummy/config/locales/carnival.pt-br.yml +0 -237
- data/test/dummy/config/locales/devise.en.yml +0 -59
- data/test/dummy/config/locales/devise.pt-br.yml +0 -59
- data/test/dummy/config/routes.rb +0 -16
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140206211804_create_admin_companies.rb +0 -16
- data/test/dummy/db/migrate/20140206211829_create_admin_countries.rb +0 -10
- data/test/dummy/db/migrate/20140206211850_create_admin_states.rb +0 -12
- data/test/dummy/db/migrate/20140206211923_create_admin_cities.rb +0 -11
- data/test/dummy/db/migrate/20140206212128_create_admin_people.rb +0 -19
- data/test/dummy/db/migrate/20140309013000_create_jobs.rb +0 -9
- data/test/dummy/db/migrate/20140309013019_create_professional_experiences.rb +0 -14
- data/test/dummy/db/migrate/20140323020642_devise_create_admin_users.carnival_engine.rb +0 -44
- data/test/dummy/db/migrate/20140323020643_create_notifications.carnival_engine.rb +0 -11
- data/test/dummy/db/migrate/20140323020644_create_admin_user_notifications.carnival_engine.rb +0 -11
- data/test/dummy/db/migrate/20140323020645_add_columns_to_admin_users.carnival_engine.rb +0 -8
- data/test/dummy/db/migrate/20140424142748_create_installments.rb +0 -9
- data/test/dummy/db/migrate/20140424142805_create_credit_cards.rb +0 -9
- data/test/dummy/db/migrate/20140424142835_create_installments_credit_cads.rb +0 -10
- data/test/dummy/db/schema.rb +0 -165
- data/test/dummy/db/seeds.rb +0 -15
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/bullet.log +0 -1056
- data/test/dummy/log/development.log +0 -89683
- data/test/dummy/log/test.log +0 -785
- data/test/dummy/public/404.html +0 -58
- data/test/dummy/public/422.html +0 -58
- data/test/dummy/public/500.html +0 -57
- data/test/dummy/test/fixtures/installments_credit_cads.yml +0 -9
- data/test/dummy/test/models/credit_card_test.rb +0 -7
- data/test/dummy/test/models/installment_test.rb +0 -7
- data/test/dummy/test/models/installments_credit_cads_test.rb +0 -7
- data/test/dummy/tmp/cache/assets/development/sass/509d6df7de260d7d7b30aaf213f62ecc911d86f4/select2.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/018a93c2452c8104980bcd5778c4f903 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/01c1d1cbb942f60130f0aa01d50c98d2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/02b691bcf7570e21acab45d320ac92cf +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/049c6f2079e2e93f96fd228df8c265ba +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0771f824a0b668f566e7c11953b6065e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0bbd04f3201327a4cdd08aa5beea2422 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0d9971c4a3b5017a7d2122508b66bb12 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0e538066312487cf0c93484b2a433017 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0f7b5da581fb3730800607447951008a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1205c92fa474a4de8d08f2774c450103 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/12adab320a9b9986d13ed94e39efe2e7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1367e1fa08f1b8c7abd298d4bbe85c1a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/141987f5d019e60604cd75d2e340942f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/147e4215ac96fd8b8d373567ae00ed47 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/14a446a1806cd2ee255698c10b3cd391 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1634e1287a9914e738e710919b7cd6e4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/16c6027bc506317d8266573d0ae1b510 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/16e4094498947b5f36bfbb490b94d025 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2109e2acf993625dc0a3f05e7e0af523 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/21e89993e0f6f1b465e0de70e76b77f3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/22ee6768794b3c3c55570719479481c3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/24d23fdd4c311a9447e4c8c19c97d48e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2684dad966b304ec2aee0149dc77c657 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2908a36318747c72030e94441a2579c4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/29317ab42cc07bf908f29827920b27d5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/29c571d9350b75a47945757daf5ef26f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2a85e7b776e55125671b84c4ed5a9f56 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2c4a028e3e3b137a5e49c13178239cce +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2dfdac7588010f579a833be228971375 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/30c8c2e6ca355103a267133f6b45b0ce +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/31177aaa32db75be241353c5819450b4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/31a6581dfe5a788b2b450403959a97c5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/32d06d5bee6f865ba0f92224a787a90a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/32daf8a3bfd9da8ab261f5002f66389f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/33dfbc7bdde795abfd1031ceaa315dc8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/34dba06ee0eb7a742ecdfcba69edb56e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/36ac7d3c94b129447c85c4abea55a674 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/379fa199e19b70bbee3ac80c78e0d81e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/39d34c0caaa6f36d684fac1898a7f88f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3a2fdd82041ab4b5ce8a082ec9b270fb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3aa40071fc24bbafb6d0d4d36b91be70 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3ac0f4fad0d3e6d3d13d4ed2189dcabe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3d4686d9bb627b7c725f000130c5a61d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3d8100b6e405407290dcf994ef05e0b7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3eb8fc367b74dbe8ae50e0f98feec6bb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3f89739d959e11df6c20fa6ea13c1044 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3f9e96f5004cdb0ba971394c41c76931 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3fd8a2a00bb4ebd69a3ecac257dbe536 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/41249a08e767749660864b8a126871e4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/43797547fd9a4d394bb0f7a99b2b3a94 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/43f27cc92ef38f6a01575708b2fa0e97 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4423cb4765f66f187ffcb3be911c3600 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/44dd8eb9e41f4103d9f40dfd6b4ae2ae +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/45b86c586ed942b09cec2190b3c45c5a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4771cad53166b45022c6d03cb4b8c1e2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/47ce692a80d5b075614c2489d7e3a142 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/48693f24b0d6df0cc626066ce01674e3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/499338aa610d84045d1a0f081960c6fc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4a7a4dcd9fea9bd2e287771c51f96631 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4b6e6db955179fabe966a77cecb884fc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4b8f852230d4e126ed2a8f54594bc2ca +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4bd7e9214a07840040d269fdbf523e97 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4c36f4196d9df171251bea6f3b587fe3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4e4b1f24c5e69f2f305f6d6483a1605c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4fc67dc5428a9f07a32dd1bb9e1447ae +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5090d7ea741c7f63994eb7b62e757f8f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/50b3d3fa409e82b9990432561974e533 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/51537bd5728cad7f016be9b074c4f3ee +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/51bc502ce2fcf333e1123f4b19fcf7f8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/536648929c703c8c5e964b502b2095ff +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/55d16ecf7bea794f8130ad57090cf849 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5644ad965098c5b865233d32caa78fa2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/565023fdd3960225e817ec043b2d9474 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/56a682a9df1f53c8d67f2467389995b2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/577f4d9c0b4703cbfffd7159a232e60e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5a4d2d875f1d8ab987ab653f896d1c39 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5b0d5ead11b1996d8c04250256d5f1d4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5c8a4c90b3525681a2173b93b9d55293 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5e7998a2046d512312e432aef40d3e22 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5eacf8d05b2a79f57d54ee047a51e223 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5ff6c7a42ff7a4d062640d9211b42275 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/604d964a22a33e7a1dc917eb10328fb6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/611bcab6d1ba6d887fc27c1b9f6f2ac4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/63982917dbb816db857477c2a2e7f999 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6808736d34ec24fb10203097ff009a4d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/69b3c18a3b9e45cd69a6df6c91f1807b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6b57b684590d7c01cfa80052144dd2df +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6c257cb7126b2e5bda4c42d414e39786 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6c56ac77ea3b80472eb076fda62e0259 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6c95dc85b0bd5df72197be27cb987cb0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6ce5945ed85a31ec875a9973b5a3d3bc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6d806eaa317f200bbf2832a0abf1c1cc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6dbcb09bb8b13a79ba150908ac8a5491 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6e6e4eaedc6398f0557ca2fe922c970d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6ebd06491e132b3907c33181ba6455d8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/706dcf8ec253808fea35ae06a4b408b1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/752d59d33a640efa2745467df3e2cb7b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/78b5037e05950c87864989c8fd18524a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/79938d0a132e22a9a8f9cb59799aa546 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/79f249600921bff9906cd4f6418852d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7a5d26a333ef57f4cb3f6148d201aabd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7cfe3fa955d677396ed9e22193559a64 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7e154ca951644e8aa1a2c6221f08db4f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/822d6436044fe88b0b3fbc6f3458ff88 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8576d7c22dbd8222ab27a6c47f56a65c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/874ebf15c13c8699187b0c9e5dc52175 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/88144c375f9e329812d0302be96e0eab +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8a4b32386b5d8554473df478badd6ef9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8bc60f31f479cd0263d897aa45b88750 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8bee3d374e40eec902852521ab7bb59e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/918ab452d9c4634682ff94ffbd89e16f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9285a4d2fa6444ced9a4d2775ebead57 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/929914a16eaca5537bbc9b4d33646223 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9406ab6f0dd16a8cd5802c3c74df86ce +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9455de99a5c68705427bbec9e50865ce +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/958dd41e5252627471b2b65116401512 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9658141bfa282274f1da9155c32ae206 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/996ac001c901711cabb64b7e1940c54a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9ae99eba4f0f2e46d6bd58c98d39a1f9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9aec27b5fa2afdfa28068452ece0e6f0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9db7e75f3fa621ef08ade7ffda96e39f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9dbe0a36629f740426a301876917b9d3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9dc853d92b5d774afadacc451965059c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9dcf3f13f133f78ee4595ed37117b05b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a0a55ae2ade6651b5e3a02c48eb65f88 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a104711413193d8cbfa431662760b38a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a125dd8e84a82fc90705bd3710fb93c2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a1c5386d742fb4d01bea977ed28f4a96 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a23f793f10f58c10ce34d68d181ed32f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a2ea0bd40e08492898f032af3756ebf9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a30288f737d428b0feb2a78b3aab9c69 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a40d723f9a6ad5b541009b8f05ce6533 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a515ea5e8aa465597bf897e31735b32d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a68cd2439f6cc8e7f002b1845ab3fd0c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a908448dd851cae431aa2b4bde9b5a98 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aa5708f6fbe7528d49c127a7f89a2511 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ad7b50123ad008ac0730bbbdf76a6bfe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/adafe641ec176fcf476a9a200f7d561f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ae269fb1b4129501c9b8ca317b0cd7e7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b271e3537645a42480b3ba7bca2342f4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b740fd10a7de993ae4db7f1f5df909d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b9089c33a95ef4a20cce25cc95ce5d25 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ba891185d4fda83f4c16e6bb8139359b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bc4c8f727196d1e399090596cae4a85b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bea8fc4b9fc9ae163aa3e82041be2542 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bf313b342653b1b3e509da03d61866e2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bf81a479ccdf9a6ba78ef5a5647d8e16 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bfae304b927120a1b379c8dfdcf03cbb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c34cb2d9c5caf3927f220b9e43f6762d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c5e6bcf3743cc436e9c5e728e7968918 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c72101732682999b6ca050f007fc6467 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c753ab5855fa7322e298f05684a45d0f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c8927e934e7960fc7907b6fc02ea7f08 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c980544b5828a643ecaa8e784897c2c2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ca0e1997bc6c40f955a42ee777299750 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/caa549dc4bdcddd64e487a5827e64a80 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cae24edceb694d087d7a1547f551ee34 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cb180d1ba68a565b8373b22576170eb8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cc2c3f8b87c5b787305412a3076058db +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d0f105bf22b1327c9d92c8695d4eb9cd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d16461dfcae4b782f721ebd81e4f8740 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d30e267e67b877123ca48b32ba67d0b3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d5a920fbfad1410d8ec2dbc5029bbaf6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d6327a0916e2e516fcf7ab7c5520c7a0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d73ac23504860006ee8365d9031bd98b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d81122f6f2520c8f0785425936756e20 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/daf428b2f08afc738dfcd85d872d49c4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dbf160a6439a8d0b792ff46cf0a612f6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dc5a6e1e848dfc338a281846eb757ef2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dc829340258cc36c0df423725df54649 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dcedf863f6acc3e1f21ec11434a77bf7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dd326f3f4fd1c7fd075b58d6cb623a25 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/de060f82711b4b5c465f17b140eb2a61 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e0352d0f97751491adbe6a94832772af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e1d6efce94e71965434d2dde64fd8410 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e4298973f799acdce289752c24bfddf2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e4900a6e69f874e98b87c7c7b23f7f5a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e62e56f99e228e3467663224450f0a9b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e9c81ca91323dab8977ffd8a459cab06 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ea4b1e470711396062a4dba82f0823e6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eb7d39f60d584b68af01ee0b7fa59e9d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eccab0d41d08e156ccd2f36f85949356 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ef5b9ae70f88795292472efad672fc1b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f035bed7351cb6f6e2bf1250125d3d4b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f1e75c209067b23f5c0c7bf2006c43d0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f31e05a23db2e9dfc9207658cda7b799 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f4428df54ac764385fa3d1c156fd8430 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f5c9348795319821f3309d4e03bb9fdb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f631443b06d6b36e666344dbaf0b64f0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f69e8aafb38584272cbcbca08f3085d3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f6b09a5a33ecad520452011007930e0e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f71bbedf97979d3cfe44077a64d3e98a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f795ed856980e9033fa3603aa61bac8d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7ab949c8c6b7ef3f2b743ebd98f9f59 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fc4b3bb94f52c27dfb87395841a7cb62 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fc79e1609ba401a4408c71182ef89b3e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fd1e0a44b82fc47f26c7adec9d918911 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fe9a0ccc2a407c74780c85e66882e888 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ff3b0a569330823bd5599af14ee70cc8 +0 -0
- data/test/fixtures/notifications.yml +0 -11
- data/test/models/notification_test.rb +0 -7
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
class CreateAdminPeople < ActiveRecord::Migration
|
|
2
|
-
def change
|
|
3
|
-
create_table :people do |t|
|
|
4
|
-
t.string :name
|
|
5
|
-
t.string :email
|
|
6
|
-
t.datetime :dob
|
|
7
|
-
t.references :country, index: true
|
|
8
|
-
t.references :state, index: true
|
|
9
|
-
t.references :city, index: true
|
|
10
|
-
t.string :address
|
|
11
|
-
t.string :address_complement
|
|
12
|
-
t.string :number
|
|
13
|
-
t.integer :zipcode
|
|
14
|
-
t.boolean :employed
|
|
15
|
-
|
|
16
|
-
t.timestamps
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
end
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
class CreateProfessionalExperiences < ActiveRecord::Migration
|
|
2
|
-
def change
|
|
3
|
-
create_table :professional_experiences do |t|
|
|
4
|
-
t.references :people, index: true
|
|
5
|
-
t.references :company, index: true
|
|
6
|
-
t.references :job, index: true
|
|
7
|
-
t.datetime :started_at
|
|
8
|
-
t.datetime :finished_at
|
|
9
|
-
t.integer :finished_status
|
|
10
|
-
|
|
11
|
-
t.timestamps
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# This migration comes from carnival_engine (originally 20140129211859)
|
|
2
|
-
class DeviseCreateAdminUsers < ActiveRecord::Migration
|
|
3
|
-
def change
|
|
4
|
-
create_table(:admin_users) do |t|
|
|
5
|
-
## Database authenticatable
|
|
6
|
-
t.string :name, :null => false, :default => ""
|
|
7
|
-
t.string :email, :null => false, :default => ""
|
|
8
|
-
t.string :encrypted_password, :null => false, :default => ""
|
|
9
|
-
|
|
10
|
-
## Recoverable
|
|
11
|
-
t.string :reset_password_token
|
|
12
|
-
t.datetime :reset_password_sent_at
|
|
13
|
-
|
|
14
|
-
## Rememberable
|
|
15
|
-
t.datetime :remember_created_at
|
|
16
|
-
|
|
17
|
-
## Trackable
|
|
18
|
-
t.integer :sign_in_count, :default => 0, :null => false
|
|
19
|
-
t.datetime :current_sign_in_at
|
|
20
|
-
t.datetime :last_sign_in_at
|
|
21
|
-
t.string :current_sign_in_ip
|
|
22
|
-
t.string :last_sign_in_ip
|
|
23
|
-
|
|
24
|
-
## Confirmable
|
|
25
|
-
# t.string :confirmation_token
|
|
26
|
-
# t.datetime :confirmed_at
|
|
27
|
-
# t.datetime :confirmation_sent_at
|
|
28
|
-
# t.string :unconfirmed_email # Only if using reconfirmable
|
|
29
|
-
|
|
30
|
-
## Lockable
|
|
31
|
-
# t.integer :failed_attempts, :default => 0, :null => false # Only if lock strategy is :failed_attempts
|
|
32
|
-
# t.string :unlock_token # Only if unlock strategy is :email or :both
|
|
33
|
-
# t.datetime :locked_at
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
t.timestamps
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
add_index :admin_users, :email, :unique => true
|
|
40
|
-
add_index :admin_users, :reset_password_token, :unique => true
|
|
41
|
-
# add_index :admin_users, :confirmation_token, :unique => true
|
|
42
|
-
# add_index :admin_users, :unlock_token, :unique => true
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# This migration comes from carnival_engine (originally 20140129213216)
|
|
2
|
-
class CreateNotifications < ActiveRecord::Migration
|
|
3
|
-
def change
|
|
4
|
-
create_table :notifications do |t|
|
|
5
|
-
t.string :title
|
|
6
|
-
t.string :message
|
|
7
|
-
t.string :link
|
|
8
|
-
t.timestamps
|
|
9
|
-
end
|
|
10
|
-
end
|
|
11
|
-
end
|
data/test/dummy/db/migrate/20140323020644_create_admin_user_notifications.carnival_engine.rb
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# This migration comes from carnival_engine (originally 20140129223355)
|
|
2
|
-
class CreateAdminUserNotifications < ActiveRecord::Migration
|
|
3
|
-
def change
|
|
4
|
-
create_table :admin_user_notifications do |t|
|
|
5
|
-
t.boolean :read, default: false
|
|
6
|
-
t.references :notification, index:true
|
|
7
|
-
t.references :admin_user, index:true
|
|
8
|
-
t.timestamps
|
|
9
|
-
end
|
|
10
|
-
end
|
|
11
|
-
end
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# This migration comes from carnival_engine (originally 20140206144730)
|
|
2
|
-
class AddColumnsToAdminUsers < ActiveRecord::Migration
|
|
3
|
-
def change
|
|
4
|
-
add_column :admin_users, :provider, :string
|
|
5
|
-
add_column :admin_users, :uid, :string
|
|
6
|
-
add_column :admin_users, :avatar, :string
|
|
7
|
-
end
|
|
8
|
-
end
|
data/test/dummy/db/schema.rb
DELETED
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
# encoding: UTF-8
|
|
2
|
-
# This file is auto-generated from the current state of the database. Instead
|
|
3
|
-
# of editing this file, please use the migrations feature of Active Record to
|
|
4
|
-
# incrementally modify your database, and then regenerate this schema definition.
|
|
5
|
-
#
|
|
6
|
-
# Note that this schema.rb definition is the authoritative source for your
|
|
7
|
-
# database schema. If you need to create the application database on another
|
|
8
|
-
# system, you should be using db:schema:load, not running all the migrations
|
|
9
|
-
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
10
|
-
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
11
|
-
#
|
|
12
|
-
# It's strongly recommended that you check this file into your version control system.
|
|
13
|
-
|
|
14
|
-
ActiveRecord::Schema.define(version: 20140424142835) do
|
|
15
|
-
|
|
16
|
-
create_table "admin_user_notifications", force: true do |t|
|
|
17
|
-
t.boolean "read", default: false
|
|
18
|
-
t.integer "notification_id"
|
|
19
|
-
t.integer "admin_user_id"
|
|
20
|
-
t.datetime "created_at"
|
|
21
|
-
t.datetime "updated_at"
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
add_index "admin_user_notifications", ["admin_user_id"], name: "index_admin_user_notifications_on_admin_user_id"
|
|
25
|
-
add_index "admin_user_notifications", ["notification_id"], name: "index_admin_user_notifications_on_notification_id"
|
|
26
|
-
|
|
27
|
-
create_table "admin_users", force: true do |t|
|
|
28
|
-
t.string "name", default: "", null: false
|
|
29
|
-
t.string "email", default: "", null: false
|
|
30
|
-
t.string "encrypted_password", default: "", null: false
|
|
31
|
-
t.string "reset_password_token"
|
|
32
|
-
t.datetime "reset_password_sent_at"
|
|
33
|
-
t.datetime "remember_created_at"
|
|
34
|
-
t.integer "sign_in_count", default: 0, null: false
|
|
35
|
-
t.datetime "current_sign_in_at"
|
|
36
|
-
t.datetime "last_sign_in_at"
|
|
37
|
-
t.string "current_sign_in_ip"
|
|
38
|
-
t.string "last_sign_in_ip"
|
|
39
|
-
t.datetime "created_at"
|
|
40
|
-
t.datetime "updated_at"
|
|
41
|
-
t.string "provider"
|
|
42
|
-
t.string "uid"
|
|
43
|
-
t.string "avatar"
|
|
44
|
-
end
|
|
45
|
-
|
|
46
|
-
add_index "admin_users", ["email"], name: "index_admin_users_on_email", unique: true
|
|
47
|
-
add_index "admin_users", ["reset_password_token"], name: "index_admin_users_on_reset_password_token", unique: true
|
|
48
|
-
|
|
49
|
-
create_table "cities", force: true do |t|
|
|
50
|
-
t.string "name"
|
|
51
|
-
t.integer "country_id"
|
|
52
|
-
t.integer "state_id"
|
|
53
|
-
t.datetime "created_at"
|
|
54
|
-
t.datetime "updated_at"
|
|
55
|
-
end
|
|
56
|
-
|
|
57
|
-
add_index "cities", ["country_id"], name: "index_cities_on_country_id"
|
|
58
|
-
add_index "cities", ["state_id"], name: "index_cities_on_state_id"
|
|
59
|
-
|
|
60
|
-
create_table "companies", force: true do |t|
|
|
61
|
-
t.string "name"
|
|
62
|
-
t.integer "country_id"
|
|
63
|
-
t.integer "state_id"
|
|
64
|
-
t.integer "city_id"
|
|
65
|
-
t.string "address"
|
|
66
|
-
t.string "address_complement"
|
|
67
|
-
t.string "number"
|
|
68
|
-
t.integer "zipcode"
|
|
69
|
-
t.datetime "created_at"
|
|
70
|
-
t.datetime "updated_at"
|
|
71
|
-
end
|
|
72
|
-
|
|
73
|
-
add_index "companies", ["city_id"], name: "index_companies_on_city_id"
|
|
74
|
-
add_index "companies", ["country_id"], name: "index_companies_on_country_id"
|
|
75
|
-
add_index "companies", ["state_id"], name: "index_companies_on_state_id"
|
|
76
|
-
|
|
77
|
-
create_table "countries", force: true do |t|
|
|
78
|
-
t.string "name"
|
|
79
|
-
t.string "code"
|
|
80
|
-
t.datetime "created_at"
|
|
81
|
-
t.datetime "updated_at"
|
|
82
|
-
end
|
|
83
|
-
|
|
84
|
-
create_table "credit_cards", force: true do |t|
|
|
85
|
-
t.string "name"
|
|
86
|
-
t.datetime "created_at"
|
|
87
|
-
t.datetime "updated_at"
|
|
88
|
-
end
|
|
89
|
-
|
|
90
|
-
create_table "installments", force: true do |t|
|
|
91
|
-
t.string "name"
|
|
92
|
-
t.datetime "created_at"
|
|
93
|
-
t.datetime "updated_at"
|
|
94
|
-
end
|
|
95
|
-
|
|
96
|
-
create_table "installments_credit_cads", force: true do |t|
|
|
97
|
-
t.integer "installment_id"
|
|
98
|
-
t.integer "credit_card_id"
|
|
99
|
-
t.datetime "created_at"
|
|
100
|
-
t.datetime "updated_at"
|
|
101
|
-
end
|
|
102
|
-
|
|
103
|
-
add_index "installments_credit_cads", ["credit_card_id"], name: "index_installments_credit_cads_on_credit_card_id"
|
|
104
|
-
add_index "installments_credit_cads", ["installment_id"], name: "index_installments_credit_cads_on_installment_id"
|
|
105
|
-
|
|
106
|
-
create_table "jobs", force: true do |t|
|
|
107
|
-
t.string "name"
|
|
108
|
-
t.datetime "created_at"
|
|
109
|
-
t.datetime "updated_at"
|
|
110
|
-
end
|
|
111
|
-
|
|
112
|
-
create_table "notifications", force: true do |t|
|
|
113
|
-
t.string "title"
|
|
114
|
-
t.string "message"
|
|
115
|
-
t.string "link"
|
|
116
|
-
t.datetime "created_at"
|
|
117
|
-
t.datetime "updated_at"
|
|
118
|
-
end
|
|
119
|
-
|
|
120
|
-
create_table "people", force: true do |t|
|
|
121
|
-
t.string "name"
|
|
122
|
-
t.string "email"
|
|
123
|
-
t.datetime "dob"
|
|
124
|
-
t.integer "country_id"
|
|
125
|
-
t.integer "state_id"
|
|
126
|
-
t.integer "city_id"
|
|
127
|
-
t.string "address"
|
|
128
|
-
t.string "address_complement"
|
|
129
|
-
t.string "number"
|
|
130
|
-
t.integer "zipcode"
|
|
131
|
-
t.boolean "employed"
|
|
132
|
-
t.datetime "created_at"
|
|
133
|
-
t.datetime "updated_at"
|
|
134
|
-
end
|
|
135
|
-
|
|
136
|
-
add_index "people", ["city_id"], name: "index_people_on_city_id"
|
|
137
|
-
add_index "people", ["country_id"], name: "index_people_on_country_id"
|
|
138
|
-
add_index "people", ["state_id"], name: "index_people_on_state_id"
|
|
139
|
-
|
|
140
|
-
create_table "professional_experiences", force: true do |t|
|
|
141
|
-
t.integer "people_id"
|
|
142
|
-
t.integer "company_id"
|
|
143
|
-
t.integer "job_id"
|
|
144
|
-
t.datetime "started_at"
|
|
145
|
-
t.datetime "finished_at"
|
|
146
|
-
t.integer "finished_status"
|
|
147
|
-
t.datetime "created_at"
|
|
148
|
-
t.datetime "updated_at"
|
|
149
|
-
end
|
|
150
|
-
|
|
151
|
-
add_index "professional_experiences", ["company_id"], name: "index_professional_experiences_on_company_id"
|
|
152
|
-
add_index "professional_experiences", ["job_id"], name: "index_professional_experiences_on_job_id"
|
|
153
|
-
add_index "professional_experiences", ["people_id"], name: "index_professional_experiences_on_people_id"
|
|
154
|
-
|
|
155
|
-
create_table "states", force: true do |t|
|
|
156
|
-
t.string "name"
|
|
157
|
-
t.string "code"
|
|
158
|
-
t.integer "country_id"
|
|
159
|
-
t.datetime "created_at"
|
|
160
|
-
t.datetime "updated_at"
|
|
161
|
-
end
|
|
162
|
-
|
|
163
|
-
add_index "states", ["country_id"], name: "index_states_on_country_id"
|
|
164
|
-
|
|
165
|
-
end
|
data/test/dummy/db/seeds.rb
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# encoding: utf-8
|
|
2
|
-
|
|
3
|
-
Carnival::AdminUser.create(email: "admin@vizir.com.br", password: "12345678", password_confirmation: "12345678");
|
|
4
|
-
|
|
5
|
-
brazil = Admin::Country.create(name: 'Brazil', code: 'BR')
|
|
6
|
-
|
|
7
|
-
sp = Admin::State.create(:name => 'São Paulo', code: 'SP', country: brazil)
|
|
8
|
-
|
|
9
|
-
Admin::City.create(name: 'São Paulo', state: sp, country: brazil)
|
|
10
|
-
Admin::City.create(name: 'Campinas', state: sp, country: brazil)
|
|
11
|
-
|
|
12
|
-
rj = Admin::State.create(:name => 'Rio de Janeiro', code: 'RJ', country: brazil)
|
|
13
|
-
|
|
14
|
-
Admin::City.create(name: 'Angra dos Reis', state: rj, country: brazil)
|
|
15
|
-
Admin::City.create(name: 'Barra Mansa', state: rj, country: brazil)
|
data/test/dummy/db/test.sqlite3
DELETED
|
Binary file
|
data/test/dummy/log/bullet.log
DELETED
|
@@ -1,1056 +0,0 @@
|
|
|
1
|
-
2014-07-14 14:45:51[WARN] user: vagrant
|
|
2
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-14&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405349145730
|
|
3
|
-
N+1 Query detected
|
|
4
|
-
Admin::State => [:country]
|
|
5
|
-
Add to your finder: :include => [:country]
|
|
6
|
-
N+1 Query method call stack
|
|
7
|
-
N+1 Query method call stack
|
|
8
|
-
N+1 Query method call stack2014-07-14 14:46:07[WARN] user: vagrant
|
|
9
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1405349160182
|
|
10
|
-
N+1 Query detected
|
|
11
|
-
Admin::City => [:state]
|
|
12
|
-
Add to your finder: :include => [:state]
|
|
13
|
-
N+1 Query method call stack
|
|
14
|
-
N+1 Query method call stack
|
|
15
|
-
N+1 Query method call stack2014-07-14 14:46:07[WARN] user: vagrant
|
|
16
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1405349160182
|
|
17
|
-
N+1 Query detected
|
|
18
|
-
Admin::City => [:country]
|
|
19
|
-
Add to your finder: :include => [:country]
|
|
20
|
-
N+1 Query method call stack
|
|
21
|
-
N+1 Query method call stack
|
|
22
|
-
N+1 Query method call stack2014-07-16 15:07:45[WARN] user: vagrant
|
|
23
|
-
localhost:3021http://localhost:3021/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405523260885
|
|
24
|
-
Unused Eager Loading detected
|
|
25
|
-
Admin::Country => [:states, :cities]
|
|
26
|
-
Remove from your finder: :include => [:states, :cities]2014-07-16 15:07:58[WARN] user: vagrant
|
|
27
|
-
localhost:3021http://localhost:3021/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405523277768
|
|
28
|
-
Unused Eager Loading detected
|
|
29
|
-
Admin::Country => [:states, :cities]
|
|
30
|
-
Remove from your finder: :include => [:states, :cities]2014-07-16 15:10:00[WARN] user: vagrant
|
|
31
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405523389466
|
|
32
|
-
Unused Eager Loading detected
|
|
33
|
-
Admin::State => [:cities]
|
|
34
|
-
Remove from your finder: :include => [:cities]2014-07-16 17:39:43[WARN] user: vagrant
|
|
35
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405532051490
|
|
36
|
-
Unused Eager Loading detected
|
|
37
|
-
Admin::State => [:cities]
|
|
38
|
-
Remove from your finder: :include => [:cities]2014-07-16 17:40:46[WARN] user: vagrant
|
|
39
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405532398845
|
|
40
|
-
Unused Eager Loading detected
|
|
41
|
-
Admin::State => [:cities]
|
|
42
|
-
Remove from your finder: :include => [:cities]2014-07-16 17:59:36[WARN] user: vagrant
|
|
43
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567605
|
|
44
|
-
N+1 Query detected
|
|
45
|
-
Admin::State => [:country]
|
|
46
|
-
Add to your finder: :include => [:country]
|
|
47
|
-
N+1 Query method call stack
|
|
48
|
-
N+1 Query method call stack
|
|
49
|
-
N+1 Query method call stack2014-07-16 18:05:35[WARN] user: vagrant
|
|
50
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567608
|
|
51
|
-
N+1 Query detected
|
|
52
|
-
Admin::State => [:country]
|
|
53
|
-
Add to your finder: :include => [:country]
|
|
54
|
-
N+1 Query method call stack
|
|
55
|
-
N+1 Query method call stack
|
|
56
|
-
N+1 Query method call stack2014-07-16 18:05:38[WARN] user: vagrant
|
|
57
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567609
|
|
58
|
-
N+1 Query detected
|
|
59
|
-
Admin::State => [:country]
|
|
60
|
-
Add to your finder: :include => [:country]
|
|
61
|
-
N+1 Query method call stack
|
|
62
|
-
N+1 Query method call stack
|
|
63
|
-
N+1 Query method call stack2014-07-16 18:07:41[WARN] user: vagrant
|
|
64
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534052185
|
|
65
|
-
N+1 Query detected
|
|
66
|
-
Admin::State => [:country]
|
|
67
|
-
Add to your finder: :include => [:country]
|
|
68
|
-
N+1 Query method call stack
|
|
69
|
-
N+1 Query method call stack
|
|
70
|
-
N+1 Query method call stack2014-07-16 18:19:26[WARN] user: vagrant
|
|
71
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534052186
|
|
72
|
-
N+1 Query detected
|
|
73
|
-
Admin::State => [:country]
|
|
74
|
-
Add to your finder: :include => [:country]
|
|
75
|
-
N+1 Query method call stack
|
|
76
|
-
N+1 Query method call stack
|
|
77
|
-
N+1 Query method call stack2014-07-16 18:20:34[WARN] user: vagrant
|
|
78
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534821651
|
|
79
|
-
N+1 Query detected
|
|
80
|
-
Admin::State => [:country]
|
|
81
|
-
Add to your finder: :include => [:country]
|
|
82
|
-
N+1 Query method call stack
|
|
83
|
-
N+1 Query method call stack
|
|
84
|
-
N+1 Query method call stack2014-07-16 18:29:42[WARN] user: vagrant
|
|
85
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405535368772
|
|
86
|
-
N+1 Query detected
|
|
87
|
-
Admin::State => [:country]
|
|
88
|
-
Add to your finder: :include => [:country]
|
|
89
|
-
N+1 Query method call stack
|
|
90
|
-
N+1 Query method call stack
|
|
91
|
-
N+1 Query method call stack2014-07-16 18:43:16[WARN] user: vagrant
|
|
92
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536191491
|
|
93
|
-
N+1 Query detected
|
|
94
|
-
Admin::State => [:country]
|
|
95
|
-
Add to your finder: :include => [:country]
|
|
96
|
-
N+1 Query method call stack
|
|
97
|
-
N+1 Query method call stack
|
|
98
|
-
N+1 Query method call stack2014-07-16 18:45:51[WARN] user: vagrant
|
|
99
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536345025
|
|
100
|
-
N+1 Query detected
|
|
101
|
-
Admin::State => [:country]
|
|
102
|
-
Add to your finder: :include => [:country]
|
|
103
|
-
N+1 Query method call stack
|
|
104
|
-
N+1 Query method call stack
|
|
105
|
-
N+1 Query method call stack2014-07-16 18:47:14[WARN] user: vagrant
|
|
106
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536390756
|
|
107
|
-
N+1 Query detected
|
|
108
|
-
Admin::State => [:country]
|
|
109
|
-
Add to your finder: :include => [:country]
|
|
110
|
-
N+1 Query method call stack
|
|
111
|
-
N+1 Query method call stack
|
|
112
|
-
N+1 Query method call stack2014-07-16 18:47:57[WARN] user: vagrant
|
|
113
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536470792
|
|
114
|
-
N+1 Query detected
|
|
115
|
-
Admin::State => [:country]
|
|
116
|
-
Add to your finder: :include => [:country]
|
|
117
|
-
N+1 Query method call stack
|
|
118
|
-
N+1 Query method call stack
|
|
119
|
-
N+1 Query method call stack2014-07-16 18:48:24[WARN] user: vagrant
|
|
120
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536497980
|
|
121
|
-
N+1 Query detected
|
|
122
|
-
Admin::State => [:country]
|
|
123
|
-
Add to your finder: :include => [:country]
|
|
124
|
-
N+1 Query method call stack
|
|
125
|
-
N+1 Query method call stack
|
|
126
|
-
N+1 Query method call stack2014-07-16 18:48:42[WARN] user: vagrant
|
|
127
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515979
|
|
128
|
-
N+1 Query detected
|
|
129
|
-
Admin::State => [:country]
|
|
130
|
-
Add to your finder: :include => [:country]
|
|
131
|
-
N+1 Query method call stack
|
|
132
|
-
N+1 Query method call stack
|
|
133
|
-
N+1 Query method call stack2014-07-16 18:48:45[WARN] user: vagrant
|
|
134
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515980
|
|
135
|
-
N+1 Query detected
|
|
136
|
-
Admin::State => [:country]
|
|
137
|
-
Add to your finder: :include => [:country]
|
|
138
|
-
N+1 Query method call stack
|
|
139
|
-
N+1 Query method call stack
|
|
140
|
-
N+1 Query method call stack2014-07-16 18:48:47[WARN] user: vagrant
|
|
141
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515981
|
|
142
|
-
N+1 Query detected
|
|
143
|
-
Admin::State => [:country]
|
|
144
|
-
Add to your finder: :include => [:country]
|
|
145
|
-
N+1 Query method call stack
|
|
146
|
-
N+1 Query method call stack
|
|
147
|
-
N+1 Query method call stack2014-07-16 18:48:49[WARN] user: vagrant
|
|
148
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515982
|
|
149
|
-
N+1 Query detected
|
|
150
|
-
Admin::State => [:country]
|
|
151
|
-
Add to your finder: :include => [:country]
|
|
152
|
-
N+1 Query method call stack
|
|
153
|
-
N+1 Query method call stack
|
|
154
|
-
N+1 Query method call stack2014-07-16 18:48:51[WARN] user: vagrant
|
|
155
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515983
|
|
156
|
-
N+1 Query detected
|
|
157
|
-
Admin::State => [:country]
|
|
158
|
-
Add to your finder: :include => [:country]
|
|
159
|
-
N+1 Query method call stack
|
|
160
|
-
N+1 Query method call stack
|
|
161
|
-
N+1 Query method call stack2014-07-16 18:48:53[WARN] user: vagrant
|
|
162
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515984
|
|
163
|
-
N+1 Query detected
|
|
164
|
-
Admin::State => [:country]
|
|
165
|
-
Add to your finder: :include => [:country]
|
|
166
|
-
N+1 Query method call stack
|
|
167
|
-
N+1 Query method call stack
|
|
168
|
-
N+1 Query method call stack2014-07-16 18:50:06[WARN] user: vagrant
|
|
169
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=7&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515985
|
|
170
|
-
N+1 Query detected
|
|
171
|
-
Admin::State => [:country]
|
|
172
|
-
Add to your finder: :include => [:country]
|
|
173
|
-
N+1 Query method call stack
|
|
174
|
-
N+1 Query method call stack
|
|
175
|
-
N+1 Query method call stack2014-07-16 18:50:43[WARN] user: vagrant
|
|
176
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=8&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515986
|
|
177
|
-
N+1 Query detected
|
|
178
|
-
Admin::State => [:country]
|
|
179
|
-
Add to your finder: :include => [:country]
|
|
180
|
-
N+1 Query method call stack
|
|
181
|
-
N+1 Query method call stack
|
|
182
|
-
N+1 Query method call stack2014-07-16 18:51:10[WARN] user: vagrant
|
|
183
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659016
|
|
184
|
-
N+1 Query detected
|
|
185
|
-
Admin::State => [:country]
|
|
186
|
-
Add to your finder: :include => [:country]
|
|
187
|
-
N+1 Query method call stack
|
|
188
|
-
N+1 Query method call stack
|
|
189
|
-
N+1 Query method call stack2014-07-16 18:51:19[WARN] user: vagrant
|
|
190
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659017
|
|
191
|
-
N+1 Query detected
|
|
192
|
-
Admin::State => [:country]
|
|
193
|
-
Add to your finder: :include => [:country]
|
|
194
|
-
N+1 Query method call stack
|
|
195
|
-
N+1 Query method call stack
|
|
196
|
-
N+1 Query method call stack2014-07-16 18:51:21[WARN] user: vagrant
|
|
197
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659018
|
|
198
|
-
N+1 Query detected
|
|
199
|
-
Admin::State => [:country]
|
|
200
|
-
Add to your finder: :include => [:country]
|
|
201
|
-
N+1 Query method call stack
|
|
202
|
-
N+1 Query method call stack
|
|
203
|
-
N+1 Query method call stack2014-07-16 18:51:23[WARN] user: vagrant
|
|
204
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659019
|
|
205
|
-
N+1 Query detected
|
|
206
|
-
Admin::State => [:country]
|
|
207
|
-
Add to your finder: :include => [:country]
|
|
208
|
-
N+1 Query method call stack
|
|
209
|
-
N+1 Query method call stack
|
|
210
|
-
N+1 Query method call stack2014-07-16 18:51:36[WARN] user: vagrant
|
|
211
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689560
|
|
212
|
-
N+1 Query detected
|
|
213
|
-
Admin::State => [:country]
|
|
214
|
-
Add to your finder: :include => [:country]
|
|
215
|
-
N+1 Query method call stack
|
|
216
|
-
N+1 Query method call stack
|
|
217
|
-
N+1 Query method call stack2014-07-16 18:51:38[WARN] user: vagrant
|
|
218
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689561
|
|
219
|
-
N+1 Query detected
|
|
220
|
-
Admin::State => [:country]
|
|
221
|
-
Add to your finder: :include => [:country]
|
|
222
|
-
N+1 Query method call stack
|
|
223
|
-
N+1 Query method call stack
|
|
224
|
-
N+1 Query method call stack2014-07-16 18:51:40[WARN] user: vagrant
|
|
225
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689562
|
|
226
|
-
N+1 Query detected
|
|
227
|
-
Admin::State => [:country]
|
|
228
|
-
Add to your finder: :include => [:country]
|
|
229
|
-
N+1 Query method call stack
|
|
230
|
-
N+1 Query method call stack
|
|
231
|
-
N+1 Query method call stack2014-07-16 18:51:54[WARN] user: vagrant
|
|
232
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689563
|
|
233
|
-
N+1 Query detected
|
|
234
|
-
Admin::State => [:country]
|
|
235
|
-
Add to your finder: :include => [:country]
|
|
236
|
-
N+1 Query method call stack
|
|
237
|
-
N+1 Query method call stack
|
|
238
|
-
N+1 Query method call stack2014-07-16 18:53:15[WARN] user: vagrant
|
|
239
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536788976
|
|
240
|
-
N+1 Query detected
|
|
241
|
-
Admin::State => [:country]
|
|
242
|
-
Add to your finder: :include => [:country]
|
|
243
|
-
N+1 Query method call stack
|
|
244
|
-
N+1 Query method call stack
|
|
245
|
-
N+1 Query method call stack2014-07-16 18:53:18[WARN] user: vagrant
|
|
246
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536788977
|
|
247
|
-
N+1 Query detected
|
|
248
|
-
Admin::State => [:country]
|
|
249
|
-
Add to your finder: :include => [:country]
|
|
250
|
-
N+1 Query method call stack
|
|
251
|
-
N+1 Query method call stack
|
|
252
|
-
N+1 Query method call stack2014-07-16 18:53:20[WARN] user: vagrant
|
|
253
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536788978
|
|
254
|
-
N+1 Query detected
|
|
255
|
-
Admin::State => [:country]
|
|
256
|
-
Add to your finder: :include => [:country]
|
|
257
|
-
N+1 Query method call stack
|
|
258
|
-
N+1 Query method call stack
|
|
259
|
-
N+1 Query method call stack2014-07-16 18:53:54[WARN] user: vagrant
|
|
260
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536827461
|
|
261
|
-
N+1 Query detected
|
|
262
|
-
Admin::State => [:country]
|
|
263
|
-
Add to your finder: :include => [:country]
|
|
264
|
-
N+1 Query method call stack
|
|
265
|
-
N+1 Query method call stack
|
|
266
|
-
N+1 Query method call stack2014-07-16 18:53:56[WARN] user: vagrant
|
|
267
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536827462
|
|
268
|
-
N+1 Query detected
|
|
269
|
-
Admin::State => [:country]
|
|
270
|
-
Add to your finder: :include => [:country]
|
|
271
|
-
N+1 Query method call stack
|
|
272
|
-
N+1 Query method call stack
|
|
273
|
-
N+1 Query method call stack2014-07-16 18:53:58[WARN] user: vagrant
|
|
274
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536827463
|
|
275
|
-
N+1 Query detected
|
|
276
|
-
Admin::State => [:country]
|
|
277
|
-
Add to your finder: :include => [:country]
|
|
278
|
-
N+1 Query method call stack
|
|
279
|
-
N+1 Query method call stack
|
|
280
|
-
N+1 Query method call stack2014-07-16 18:54:14[WARN] user: vagrant
|
|
281
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848309
|
|
282
|
-
N+1 Query detected
|
|
283
|
-
Admin::State => [:country]
|
|
284
|
-
Add to your finder: :include => [:country]
|
|
285
|
-
N+1 Query method call stack
|
|
286
|
-
N+1 Query method call stack
|
|
287
|
-
N+1 Query method call stack2014-07-16 18:54:18[WARN] user: vagrant
|
|
288
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848310
|
|
289
|
-
N+1 Query detected
|
|
290
|
-
Admin::State => [:country]
|
|
291
|
-
Add to your finder: :include => [:country]
|
|
292
|
-
N+1 Query method call stack
|
|
293
|
-
N+1 Query method call stack
|
|
294
|
-
N+1 Query method call stack2014-07-16 18:54:20[WARN] user: vagrant
|
|
295
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848311
|
|
296
|
-
N+1 Query detected
|
|
297
|
-
Admin::State => [:country]
|
|
298
|
-
Add to your finder: :include => [:country]
|
|
299
|
-
N+1 Query method call stack
|
|
300
|
-
N+1 Query method call stack
|
|
301
|
-
N+1 Query method call stack2014-07-16 18:54:22[WARN] user: vagrant
|
|
302
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848312
|
|
303
|
-
N+1 Query detected
|
|
304
|
-
Admin::State => [:country]
|
|
305
|
-
Add to your finder: :include => [:country]
|
|
306
|
-
N+1 Query method call stack
|
|
307
|
-
N+1 Query method call stack
|
|
308
|
-
N+1 Query method call stack2014-07-16 18:54:24[WARN] user: vagrant
|
|
309
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848313
|
|
310
|
-
N+1 Query detected
|
|
311
|
-
Admin::State => [:country]
|
|
312
|
-
Add to your finder: :include => [:country]
|
|
313
|
-
N+1 Query method call stack
|
|
314
|
-
N+1 Query method call stack
|
|
315
|
-
N+1 Query method call stack2014-07-16 18:54:26[WARN] user: vagrant
|
|
316
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848314
|
|
317
|
-
N+1 Query detected
|
|
318
|
-
Admin::State => [:country]
|
|
319
|
-
Add to your finder: :include => [:country]
|
|
320
|
-
N+1 Query method call stack
|
|
321
|
-
N+1 Query method call stack
|
|
322
|
-
N+1 Query method call stack2014-07-16 18:54:29[WARN] user: vagrant
|
|
323
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=7&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848315
|
|
324
|
-
N+1 Query detected
|
|
325
|
-
Admin::State => [:country]
|
|
326
|
-
Add to your finder: :include => [:country]
|
|
327
|
-
N+1 Query method call stack
|
|
328
|
-
N+1 Query method call stack
|
|
329
|
-
N+1 Query method call stack2014-07-16 18:54:41[WARN] user: vagrant
|
|
330
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536874885
|
|
331
|
-
N+1 Query detected
|
|
332
|
-
Admin::State => [:country]
|
|
333
|
-
Add to your finder: :include => [:country]
|
|
334
|
-
N+1 Query method call stack
|
|
335
|
-
N+1 Query method call stack
|
|
336
|
-
N+1 Query method call stack2014-07-16 18:55:33[WARN] user: vagrant
|
|
337
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926588
|
|
338
|
-
N+1 Query detected
|
|
339
|
-
Admin::State => [:country]
|
|
340
|
-
Add to your finder: :include => [:country]
|
|
341
|
-
N+1 Query method call stack
|
|
342
|
-
N+1 Query method call stack
|
|
343
|
-
N+1 Query method call stack2014-07-16 18:55:38[WARN] user: vagrant
|
|
344
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926589
|
|
345
|
-
N+1 Query detected
|
|
346
|
-
Admin::State => [:country]
|
|
347
|
-
Add to your finder: :include => [:country]
|
|
348
|
-
N+1 Query method call stack
|
|
349
|
-
N+1 Query method call stack
|
|
350
|
-
N+1 Query method call stack2014-07-16 18:55:40[WARN] user: vagrant
|
|
351
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926590
|
|
352
|
-
N+1 Query detected
|
|
353
|
-
Admin::State => [:country]
|
|
354
|
-
Add to your finder: :include => [:country]
|
|
355
|
-
N+1 Query method call stack
|
|
356
|
-
N+1 Query method call stack
|
|
357
|
-
N+1 Query method call stack2014-07-16 18:55:42[WARN] user: vagrant
|
|
358
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926591
|
|
359
|
-
N+1 Query detected
|
|
360
|
-
Admin::State => [:country]
|
|
361
|
-
Add to your finder: :include => [:country]
|
|
362
|
-
N+1 Query method call stack
|
|
363
|
-
N+1 Query method call stack
|
|
364
|
-
N+1 Query method call stack2014-07-16 18:55:44[WARN] user: vagrant
|
|
365
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926592
|
|
366
|
-
N+1 Query detected
|
|
367
|
-
Admin::State => [:country]
|
|
368
|
-
Add to your finder: :include => [:country]
|
|
369
|
-
N+1 Query method call stack
|
|
370
|
-
N+1 Query method call stack
|
|
371
|
-
N+1 Query method call stack2014-07-16 18:55:46[WARN] user: vagrant
|
|
372
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926593
|
|
373
|
-
N+1 Query detected
|
|
374
|
-
Admin::State => [:country]
|
|
375
|
-
Add to your finder: :include => [:country]
|
|
376
|
-
N+1 Query method call stack
|
|
377
|
-
N+1 Query method call stack
|
|
378
|
-
N+1 Query method call stack2014-07-16 18:55:48[WARN] user: vagrant
|
|
379
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=7&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926594
|
|
380
|
-
N+1 Query detected
|
|
381
|
-
Admin::State => [:country]
|
|
382
|
-
Add to your finder: :include => [:country]
|
|
383
|
-
N+1 Query method call stack
|
|
384
|
-
N+1 Query method call stack
|
|
385
|
-
N+1 Query method call stack2014-07-16 18:55:50[WARN] user: vagrant
|
|
386
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=8&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926595
|
|
387
|
-
N+1 Query detected
|
|
388
|
-
Admin::State => [:country]
|
|
389
|
-
Add to your finder: :include => [:country]
|
|
390
|
-
N+1 Query method call stack
|
|
391
|
-
N+1 Query method call stack
|
|
392
|
-
N+1 Query method call stack2014-07-16 18:56:11[WARN] user: vagrant
|
|
393
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536964987
|
|
394
|
-
N+1 Query detected
|
|
395
|
-
Admin::State => [:country]
|
|
396
|
-
Add to your finder: :include => [:country]
|
|
397
|
-
N+1 Query method call stack
|
|
398
|
-
N+1 Query method call stack
|
|
399
|
-
N+1 Query method call stack2014-07-16 18:56:33[WARN] user: vagrant
|
|
400
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536986934
|
|
401
|
-
N+1 Query detected
|
|
402
|
-
Admin::State => [:country]
|
|
403
|
-
Add to your finder: :include => [:country]
|
|
404
|
-
N+1 Query method call stack
|
|
405
|
-
N+1 Query method call stack
|
|
406
|
-
N+1 Query method call stack2014-07-16 18:57:14[WARN] user: vagrant
|
|
407
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537027831
|
|
408
|
-
N+1 Query detected
|
|
409
|
-
Admin::State => [:country]
|
|
410
|
-
Add to your finder: :include => [:country]
|
|
411
|
-
N+1 Query method call stack
|
|
412
|
-
N+1 Query method call stack
|
|
413
|
-
N+1 Query method call stack2014-07-16 18:57:37[WARN] user: vagrant
|
|
414
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537051394
|
|
415
|
-
N+1 Query detected
|
|
416
|
-
Admin::State => [:country]
|
|
417
|
-
Add to your finder: :include => [:country]
|
|
418
|
-
N+1 Query method call stack
|
|
419
|
-
N+1 Query method call stack
|
|
420
|
-
N+1 Query method call stack2014-07-16 18:58:18[WARN] user: vagrant
|
|
421
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537051395
|
|
422
|
-
N+1 Query detected
|
|
423
|
-
Admin::State => [:country]
|
|
424
|
-
Add to your finder: :include => [:country]
|
|
425
|
-
N+1 Query method call stack
|
|
426
|
-
N+1 Query method call stack
|
|
427
|
-
N+1 Query method call stack2014-07-16 18:58:24[WARN] user: vagrant
|
|
428
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537051396
|
|
429
|
-
N+1 Query detected
|
|
430
|
-
Admin::State => [:country]
|
|
431
|
-
Add to your finder: :include => [:country]
|
|
432
|
-
N+1 Query method call stack
|
|
433
|
-
N+1 Query method call stack
|
|
434
|
-
N+1 Query method call stack2014-07-16 19:02:33[WARN] user: vagrant
|
|
435
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537338099
|
|
436
|
-
N+1 Query detected
|
|
437
|
-
Admin::State => [:country]
|
|
438
|
-
Add to your finder: :include => [:country]
|
|
439
|
-
N+1 Query method call stack
|
|
440
|
-
N+1 Query method call stack
|
|
441
|
-
N+1 Query method call stack2014-07-16 19:15:38[WARN] user: vagrant
|
|
442
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537376001
|
|
443
|
-
N+1 Query detected
|
|
444
|
-
Admin::State => [:country]
|
|
445
|
-
Add to your finder: :include => [:country]
|
|
446
|
-
N+1 Query method call stack
|
|
447
|
-
N+1 Query method call stack
|
|
448
|
-
N+1 Query method call stack2014-07-16 19:33:53[WARN] user: vagrant
|
|
449
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539193254
|
|
450
|
-
N+1 Query detected
|
|
451
|
-
Admin::State => [:country]
|
|
452
|
-
Add to your finder: :include => [:country]
|
|
453
|
-
N+1 Query method call stack
|
|
454
|
-
N+1 Query method call stack
|
|
455
|
-
N+1 Query method call stack2014-07-16 19:37:58[WARN] user: vagrant
|
|
456
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539457811
|
|
457
|
-
N+1 Query detected
|
|
458
|
-
Admin::State => [:country]
|
|
459
|
-
Add to your finder: :include => [:country]
|
|
460
|
-
N+1 Query method call stack
|
|
461
|
-
N+1 Query method call stack
|
|
462
|
-
N+1 Query method call stack2014-07-16 19:39:27[WARN] user: vagrant
|
|
463
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539517905
|
|
464
|
-
N+1 Query detected
|
|
465
|
-
Admin::State => [:country]
|
|
466
|
-
Add to your finder: :include => [:country]
|
|
467
|
-
N+1 Query method call stack
|
|
468
|
-
N+1 Query method call stack
|
|
469
|
-
N+1 Query method call stack2014-07-16 19:41:24[WARN] user: vagrant
|
|
470
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539620973
|
|
471
|
-
N+1 Query detected
|
|
472
|
-
Admin::State => [:country]
|
|
473
|
-
Add to your finder: :include => [:country]
|
|
474
|
-
N+1 Query method call stack
|
|
475
|
-
N+1 Query method call stack
|
|
476
|
-
N+1 Query method call stack2014-07-16 19:43:09[WARN] user: vagrant
|
|
477
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539766747
|
|
478
|
-
N+1 Query detected
|
|
479
|
-
Admin::State => [:country]
|
|
480
|
-
Add to your finder: :include => [:country]
|
|
481
|
-
N+1 Query method call stack
|
|
482
|
-
N+1 Query method call stack
|
|
483
|
-
N+1 Query method call stack2014-07-16 19:44:28[WARN] user: vagrant
|
|
484
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539846601
|
|
485
|
-
N+1 Query detected
|
|
486
|
-
Admin::State => [:country]
|
|
487
|
-
Add to your finder: :include => [:country]
|
|
488
|
-
N+1 Query method call stack
|
|
489
|
-
N+1 Query method call stack
|
|
490
|
-
N+1 Query method call stack2014-07-16 19:45:27[WARN] user: vagrant
|
|
491
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907270
|
|
492
|
-
N+1 Query detected
|
|
493
|
-
Admin::State => [:country]
|
|
494
|
-
Add to your finder: :include => [:country]
|
|
495
|
-
N+1 Query method call stack
|
|
496
|
-
N+1 Query method call stack
|
|
497
|
-
N+1 Query method call stack2014-07-16 19:48:04[WARN] user: vagrant
|
|
498
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907271
|
|
499
|
-
N+1 Query detected
|
|
500
|
-
Admin::State => [:country]
|
|
501
|
-
Add to your finder: :include => [:country]
|
|
502
|
-
N+1 Query method call stack
|
|
503
|
-
N+1 Query method call stack
|
|
504
|
-
N+1 Query method call stack2014-07-16 19:48:12[WARN] user: vagrant
|
|
505
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907272
|
|
506
|
-
N+1 Query detected
|
|
507
|
-
Admin::State => [:country]
|
|
508
|
-
Add to your finder: :include => [:country]
|
|
509
|
-
N+1 Query method call stack
|
|
510
|
-
N+1 Query method call stack
|
|
511
|
-
N+1 Query method call stack2014-07-16 19:48:19[WARN] user: vagrant
|
|
512
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907273
|
|
513
|
-
N+1 Query detected
|
|
514
|
-
Admin::State => [:country]
|
|
515
|
-
Add to your finder: :include => [:country]
|
|
516
|
-
N+1 Query method call stack
|
|
517
|
-
N+1 Query method call stack
|
|
518
|
-
N+1 Query method call stack2014-07-16 19:49:14[WARN] user: vagrant
|
|
519
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907274
|
|
520
|
-
N+1 Query detected
|
|
521
|
-
Admin::State => [:country]
|
|
522
|
-
Add to your finder: :include => [:country]
|
|
523
|
-
N+1 Query method call stack
|
|
524
|
-
N+1 Query method call stack
|
|
525
|
-
N+1 Query method call stack2014-07-16 19:49:26[WARN] user: vagrant
|
|
526
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907275
|
|
527
|
-
N+1 Query detected
|
|
528
|
-
Admin::State => [:country]
|
|
529
|
-
Add to your finder: :include => [:country]
|
|
530
|
-
N+1 Query method call stack
|
|
531
|
-
N+1 Query method call stack
|
|
532
|
-
N+1 Query method call stack2014-07-16 19:51:14[WARN] user: vagrant
|
|
533
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540242977
|
|
534
|
-
N+1 Query detected
|
|
535
|
-
Admin::State => [:country]
|
|
536
|
-
Add to your finder: :include => [:country]
|
|
537
|
-
N+1 Query method call stack
|
|
538
|
-
N+1 Query method call stack
|
|
539
|
-
N+1 Query method call stack2014-07-16 19:51:22[WARN] user: vagrant
|
|
540
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540242978
|
|
541
|
-
N+1 Query detected
|
|
542
|
-
Admin::State => [:country]
|
|
543
|
-
Add to your finder: :include => [:country]
|
|
544
|
-
N+1 Query method call stack
|
|
545
|
-
N+1 Query method call stack
|
|
546
|
-
N+1 Query method call stack2014-07-16 19:51:27[WARN] user: vagrant
|
|
547
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540242979
|
|
548
|
-
N+1 Query detected
|
|
549
|
-
Admin::State => [:country]
|
|
550
|
-
Add to your finder: :include => [:country]
|
|
551
|
-
N+1 Query method call stack
|
|
552
|
-
N+1 Query method call stack
|
|
553
|
-
N+1 Query method call stack2014-07-16 19:53:24[WARN] user: vagrant
|
|
554
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540378931
|
|
555
|
-
N+1 Query detected
|
|
556
|
-
Admin::State => [:country]
|
|
557
|
-
Add to your finder: :include => [:country]
|
|
558
|
-
N+1 Query method call stack
|
|
559
|
-
N+1 Query method call stack
|
|
560
|
-
N+1 Query method call stack2014-07-16 19:56:51[WARN] user: vagrant
|
|
561
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540587131
|
|
562
|
-
N+1 Query detected
|
|
563
|
-
Admin::State => [:country]
|
|
564
|
-
Add to your finder: :include => [:country]
|
|
565
|
-
N+1 Query method call stack
|
|
566
|
-
N+1 Query method call stack
|
|
567
|
-
N+1 Query method call stack2014-07-16 20:02:21[WARN] user: vagrant
|
|
568
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540915681
|
|
569
|
-
N+1 Query detected
|
|
570
|
-
Admin::State => [:country]
|
|
571
|
-
Add to your finder: :include => [:country]
|
|
572
|
-
N+1 Query method call stack
|
|
573
|
-
N+1 Query method call stack
|
|
574
|
-
N+1 Query method call stack2014-07-16 20:03:31[WARN] user: vagrant
|
|
575
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540991983
|
|
576
|
-
N+1 Query detected
|
|
577
|
-
Admin::State => [:country]
|
|
578
|
-
Add to your finder: :include => [:country]
|
|
579
|
-
N+1 Query method call stack
|
|
580
|
-
N+1 Query method call stack
|
|
581
|
-
N+1 Query method call stack2014-07-16 20:05:20[WARN] user: vagrant
|
|
582
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541095599
|
|
583
|
-
N+1 Query detected
|
|
584
|
-
Admin::State => [:country]
|
|
585
|
-
Add to your finder: :include => [:country]
|
|
586
|
-
N+1 Query method call stack
|
|
587
|
-
N+1 Query method call stack
|
|
588
|
-
N+1 Query method call stack2014-07-16 20:08:54[WARN] user: vagrant
|
|
589
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541239415
|
|
590
|
-
N+1 Query detected
|
|
591
|
-
Admin::State => [:country]
|
|
592
|
-
Add to your finder: :include => [:country]
|
|
593
|
-
N+1 Query method call stack
|
|
594
|
-
N+1 Query method call stack
|
|
595
|
-
N+1 Query method call stack2014-07-16 20:11:27[WARN] user: vagrant
|
|
596
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541461969
|
|
597
|
-
N+1 Query detected
|
|
598
|
-
Admin::State => [:country]
|
|
599
|
-
Add to your finder: :include => [:country]
|
|
600
|
-
N+1 Query method call stack
|
|
601
|
-
N+1 Query method call stack
|
|
602
|
-
N+1 Query method call stack2014-07-16 20:12:21[WARN] user: vagrant
|
|
603
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541519614
|
|
604
|
-
N+1 Query detected
|
|
605
|
-
Admin::State => [:country]
|
|
606
|
-
Add to your finder: :include => [:country]
|
|
607
|
-
N+1 Query method call stack
|
|
608
|
-
N+1 Query method call stack
|
|
609
|
-
N+1 Query method call stack2014-07-16 20:13:42[WARN] user: vagrant
|
|
610
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541601148
|
|
611
|
-
N+1 Query detected
|
|
612
|
-
Admin::State => [:country]
|
|
613
|
-
Add to your finder: :include => [:country]
|
|
614
|
-
N+1 Query method call stack
|
|
615
|
-
N+1 Query method call stack
|
|
616
|
-
N+1 Query method call stack2014-07-16 20:15:38[WARN] user: vagrant
|
|
617
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541719932
|
|
618
|
-
N+1 Query detected
|
|
619
|
-
Admin::State => [:country]
|
|
620
|
-
Add to your finder: :include => [:country]
|
|
621
|
-
N+1 Query method call stack
|
|
622
|
-
N+1 Query method call stack
|
|
623
|
-
N+1 Query method call stack2014-07-16 20:17:28[WARN] user: vagrant
|
|
624
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541810856
|
|
625
|
-
N+1 Query detected
|
|
626
|
-
Admin::State => [:country]
|
|
627
|
-
Add to your finder: :include => [:country]
|
|
628
|
-
N+1 Query method call stack
|
|
629
|
-
N+1 Query method call stack
|
|
630
|
-
N+1 Query method call stack2014-07-16 20:19:12[WARN] user: vagrant
|
|
631
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933242
|
|
632
|
-
N+1 Query detected
|
|
633
|
-
Admin::State => [:country]
|
|
634
|
-
Add to your finder: :include => [:country]
|
|
635
|
-
N+1 Query method call stack
|
|
636
|
-
N+1 Query method call stack
|
|
637
|
-
N+1 Query method call stack2014-07-16 20:19:20[WARN] user: vagrant
|
|
638
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933243
|
|
639
|
-
N+1 Query detected
|
|
640
|
-
Admin::State => [:country]
|
|
641
|
-
Add to your finder: :include => [:country]
|
|
642
|
-
N+1 Query method call stack
|
|
643
|
-
N+1 Query method call stack
|
|
644
|
-
N+1 Query method call stack2014-07-16 20:19:26[WARN] user: vagrant
|
|
645
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933244
|
|
646
|
-
N+1 Query detected
|
|
647
|
-
Admin::State => [:country]
|
|
648
|
-
Add to your finder: :include => [:country]
|
|
649
|
-
N+1 Query method call stack
|
|
650
|
-
N+1 Query method call stack
|
|
651
|
-
N+1 Query method call stack2014-07-16 20:19:31[WARN] user: vagrant
|
|
652
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933245
|
|
653
|
-
N+1 Query detected
|
|
654
|
-
Admin::State => [:country]
|
|
655
|
-
Add to your finder: :include => [:country]
|
|
656
|
-
N+1 Query method call stack
|
|
657
|
-
N+1 Query method call stack
|
|
658
|
-
N+1 Query method call stack2014-07-16 20:19:38[WARN] user: vagrant
|
|
659
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933246
|
|
660
|
-
N+1 Query detected
|
|
661
|
-
Admin::State => [:country]
|
|
662
|
-
Add to your finder: :include => [:country]
|
|
663
|
-
N+1 Query method call stack
|
|
664
|
-
N+1 Query method call stack
|
|
665
|
-
N+1 Query method call stack2014-07-16 20:20:48[WARN] user: vagrant
|
|
666
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542026090
|
|
667
|
-
N+1 Query detected
|
|
668
|
-
Admin::State => [:country]
|
|
669
|
-
Add to your finder: :include => [:country]
|
|
670
|
-
N+1 Query method call stack
|
|
671
|
-
N+1 Query method call stack
|
|
672
|
-
N+1 Query method call stack2014-07-16 20:21:09[WARN] user: vagrant
|
|
673
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542026091
|
|
674
|
-
N+1 Query detected
|
|
675
|
-
Admin::State => [:country]
|
|
676
|
-
Add to your finder: :include => [:country]
|
|
677
|
-
N+1 Query method call stack
|
|
678
|
-
N+1 Query method call stack
|
|
679
|
-
N+1 Query method call stack2014-07-16 20:21:15[WARN] user: vagrant
|
|
680
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542026092
|
|
681
|
-
N+1 Query detected
|
|
682
|
-
Admin::State => [:country]
|
|
683
|
-
Add to your finder: :include => [:country]
|
|
684
|
-
N+1 Query method call stack
|
|
685
|
-
N+1 Query method call stack
|
|
686
|
-
N+1 Query method call stack2014-07-16 20:21:57[WARN] user: vagrant
|
|
687
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542094940
|
|
688
|
-
N+1 Query detected
|
|
689
|
-
Admin::State => [:country]
|
|
690
|
-
Add to your finder: :include => [:country]
|
|
691
|
-
N+1 Query method call stack
|
|
692
|
-
N+1 Query method call stack
|
|
693
|
-
N+1 Query method call stack2014-07-17 21:24:32[WARN] user: vagrant
|
|
694
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632267277
|
|
695
|
-
Unused Eager Loading detected
|
|
696
|
-
Admin::State => [:cities]
|
|
697
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:30:06[WARN] user: vagrant
|
|
698
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632601381
|
|
699
|
-
Unused Eager Loading detected
|
|
700
|
-
Admin::State => [:cities]
|
|
701
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:31:42[WARN] user: vagrant
|
|
702
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632698045
|
|
703
|
-
Unused Eager Loading detected
|
|
704
|
-
Admin::State => [:cities]
|
|
705
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:31:54[WARN] user: vagrant
|
|
706
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632710621
|
|
707
|
-
Unused Eager Loading detected
|
|
708
|
-
Admin::State => [:cities]
|
|
709
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:33:32[WARN] user: vagrant
|
|
710
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632808516
|
|
711
|
-
Unused Eager Loading detected
|
|
712
|
-
Admin::State => [:cities]
|
|
713
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:37:32[WARN] user: vagrant
|
|
714
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632894370
|
|
715
|
-
Unused Eager Loading detected
|
|
716
|
-
Admin::State => [:cities]
|
|
717
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:37:56[WARN] user: vagrant
|
|
718
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633070906
|
|
719
|
-
Unused Eager Loading detected
|
|
720
|
-
Admin::State => [:cities]
|
|
721
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:38:12[WARN] user: vagrant
|
|
722
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633088642
|
|
723
|
-
Unused Eager Loading detected
|
|
724
|
-
Admin::State => [:cities]
|
|
725
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:39:02[WARN] user: vagrant
|
|
726
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633137974
|
|
727
|
-
Unused Eager Loading detected
|
|
728
|
-
Admin::State => [:cities]
|
|
729
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:41:07[WARN] user: vagrant
|
|
730
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633159316
|
|
731
|
-
Unused Eager Loading detected
|
|
732
|
-
Admin::State => [:cities]
|
|
733
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:43:20[WARN] user: vagrant
|
|
734
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633395655
|
|
735
|
-
Unused Eager Loading detected
|
|
736
|
-
Admin::State => [:cities]
|
|
737
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:45:42[WARN] user: vagrant
|
|
738
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633541411
|
|
739
|
-
Unused Eager Loading detected
|
|
740
|
-
Admin::State => [:cities]
|
|
741
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:46:12[WARN] user: vagrant
|
|
742
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633571958
|
|
743
|
-
Unused Eager Loading detected
|
|
744
|
-
Admin::State => [:cities]
|
|
745
|
-
Remove from your finder: :include => [:cities]2014-07-17 21:48:45[WARN] user: vagrant
|
|
746
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633708602
|
|
747
|
-
Unused Eager Loading detected
|
|
748
|
-
Admin::State => [:cities]
|
|
749
|
-
Remove from your finder: :include => [:cities]2014-07-21 18:43:21[WARN] user: vagrant
|
|
750
|
-
localhost:3021http://localhost:3021/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405968196332
|
|
751
|
-
Unused Eager Loading detected
|
|
752
|
-
Admin::Country => [:states, :cities]
|
|
753
|
-
Remove from your finder: :include => [:states, :cities]2014-07-21 22:27:43[WARN] user: vagrant
|
|
754
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
755
|
-
N+1 Query detected
|
|
756
|
-
Admin::State => [:country]
|
|
757
|
-
Add to your finder: :include => [:country]
|
|
758
|
-
N+1 Query method call stack2014-07-21 22:27:43[WARN] user: vagrant
|
|
759
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
760
|
-
N+1 Query detected
|
|
761
|
-
Admin::State => [:cities]
|
|
762
|
-
Add to your finder: :include => [:cities]
|
|
763
|
-
N+1 Query method call stack2014-07-21 22:27:43[WARN] user: vagrant
|
|
764
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
765
|
-
N+1 Query detected
|
|
766
|
-
Admin::City => [:state]
|
|
767
|
-
Add to your finder: :include => [:state]
|
|
768
|
-
N+1 Query method call stack2014-07-21 22:27:43[WARN] user: vagrant
|
|
769
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
770
|
-
N+1 Query detected
|
|
771
|
-
Admin::City => [:country]
|
|
772
|
-
Add to your finder: :include => [:country]
|
|
773
|
-
N+1 Query method call stack2014-07-21 22:29:08[WARN] user: vagrant
|
|
774
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
775
|
-
N+1 Query detected
|
|
776
|
-
Admin::State => [:country]
|
|
777
|
-
Add to your finder: :include => [:country]
|
|
778
|
-
N+1 Query method call stack2014-07-21 22:29:08[WARN] user: vagrant
|
|
779
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
780
|
-
N+1 Query detected
|
|
781
|
-
Admin::State => [:cities]
|
|
782
|
-
Add to your finder: :include => [:cities]
|
|
783
|
-
N+1 Query method call stack2014-07-21 22:29:08[WARN] user: vagrant
|
|
784
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
785
|
-
N+1 Query detected
|
|
786
|
-
Admin::City => [:state]
|
|
787
|
-
Add to your finder: :include => [:state]
|
|
788
|
-
N+1 Query method call stack2014-07-21 22:29:08[WARN] user: vagrant
|
|
789
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
790
|
-
N+1 Query detected
|
|
791
|
-
Admin::City => [:country]
|
|
792
|
-
Add to your finder: :include => [:country]
|
|
793
|
-
N+1 Query method call stack2014-07-21 22:30:30[WARN] user: vagrant
|
|
794
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
795
|
-
N+1 Query detected
|
|
796
|
-
Admin::State => [:country]
|
|
797
|
-
Add to your finder: :include => [:country]
|
|
798
|
-
N+1 Query method call stack2014-07-21 22:30:30[WARN] user: vagrant
|
|
799
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
800
|
-
N+1 Query detected
|
|
801
|
-
Admin::State => [:cities]
|
|
802
|
-
Add to your finder: :include => [:cities]
|
|
803
|
-
N+1 Query method call stack2014-07-21 22:30:30[WARN] user: vagrant
|
|
804
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
805
|
-
N+1 Query detected
|
|
806
|
-
Admin::City => [:state]
|
|
807
|
-
Add to your finder: :include => [:state]
|
|
808
|
-
N+1 Query method call stack2014-07-21 22:30:30[WARN] user: vagrant
|
|
809
|
-
localhost:3021http://localhost:3021/admin/countries/1/edit
|
|
810
|
-
N+1 Query detected
|
|
811
|
-
Admin::City => [:country]
|
|
812
|
-
Add to your finder: :include => [:country]
|
|
813
|
-
N+1 Query method call stack2014-07-24 13:47:00[WARN] user: vagrant
|
|
814
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1406209617375
|
|
815
|
-
N+1 Query detected
|
|
816
|
-
Admin::City => [:state]
|
|
817
|
-
Add to your finder: :include => [:state]
|
|
818
|
-
N+1 Query method call stack
|
|
819
|
-
N+1 Query method call stack
|
|
820
|
-
N+1 Query method call stack2014-07-24 13:47:00[WARN] user: vagrant
|
|
821
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1406209617375
|
|
822
|
-
N+1 Query detected
|
|
823
|
-
Admin::City => [:country]
|
|
824
|
-
Add to your finder: :include => [:country]
|
|
825
|
-
N+1 Query method call stack
|
|
826
|
-
N+1 Query method call stack
|
|
827
|
-
N+1 Query method call stack2014-07-24 13:53:34[WARN] user: vagrant
|
|
828
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1406210008449
|
|
829
|
-
N+1 Query detected
|
|
830
|
-
Admin::City => [:country]
|
|
831
|
-
Add to your finder: :include => [:country]
|
|
832
|
-
N+1 Query method call stack
|
|
833
|
-
N+1 Query method call stack
|
|
834
|
-
N+1 Query method call stack2014-07-24 13:53:34[WARN] user: vagrant
|
|
835
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1406210008449
|
|
836
|
-
N+1 Query detected
|
|
837
|
-
Admin::City => [:state]
|
|
838
|
-
Add to your finder: :include => [:state]
|
|
839
|
-
N+1 Query method call stack
|
|
840
|
-
N+1 Query method call stack
|
|
841
|
-
N+1 Query method call stack2014-08-08 17:14:45[WARN] user: vagrant
|
|
842
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518080585
|
|
843
|
-
N+1 Query detected
|
|
844
|
-
Admin::State => [:country]
|
|
845
|
-
Add to your finder: :include => [:country]
|
|
846
|
-
N+1 Query method call stack2014-08-08 17:16:57[WARN] user: vagrant
|
|
847
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518212266
|
|
848
|
-
N+1 Query detected
|
|
849
|
-
Admin::State => [:country]
|
|
850
|
-
Add to your finder: :include => [:country]
|
|
851
|
-
N+1 Query method call stack2014-08-08 17:17:59[WARN] user: vagrant
|
|
852
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518274524
|
|
853
|
-
N+1 Query detected
|
|
854
|
-
Admin::State => [:country]
|
|
855
|
-
Add to your finder: :include => [:country]
|
|
856
|
-
N+1 Query method call stack2014-08-08 17:18:53[WARN] user: vagrant
|
|
857
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518328556
|
|
858
|
-
Unused Eager Loading detected
|
|
859
|
-
Admin::State => [:cities]
|
|
860
|
-
Remove from your finder: :include => [:cities]2014-08-08 17:19:16[WARN] user: vagrant
|
|
861
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
862
|
-
N+1 Query detected
|
|
863
|
-
Admin::City => [:state]
|
|
864
|
-
Add to your finder: :include => [:state]
|
|
865
|
-
N+1 Query method call stack2014-08-08 17:19:16[WARN] user: vagrant
|
|
866
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
867
|
-
N+1 Query detected
|
|
868
|
-
Admin::City => [:country]
|
|
869
|
-
Add to your finder: :include => [:country]
|
|
870
|
-
N+1 Query method call stack2014-08-08 17:19:58[WARN] user: vagrant
|
|
871
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
872
|
-
N+1 Query detected
|
|
873
|
-
Admin::City => [:state]
|
|
874
|
-
Add to your finder: :include => [:state]
|
|
875
|
-
N+1 Query method call stack2014-08-08 17:19:58[WARN] user: vagrant
|
|
876
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
877
|
-
N+1 Query detected
|
|
878
|
-
Admin::City => [:country]
|
|
879
|
-
Add to your finder: :include => [:country]
|
|
880
|
-
N+1 Query method call stack2014-08-08 17:21:58[WARN] user: vagrant
|
|
881
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
882
|
-
N+1 Query detected
|
|
883
|
-
Admin::City => [:state]
|
|
884
|
-
Add to your finder: :include => [:state]
|
|
885
|
-
N+1 Query method call stack2014-08-08 17:21:58[WARN] user: vagrant
|
|
886
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
887
|
-
N+1 Query detected
|
|
888
|
-
Admin::City => [:country]
|
|
889
|
-
Add to your finder: :include => [:country]
|
|
890
|
-
N+1 Query method call stack2014-08-08 17:22:21[WARN] user: vagrant
|
|
891
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
892
|
-
N+1 Query detected
|
|
893
|
-
Admin::City => [:state]
|
|
894
|
-
Add to your finder: :include => [:state]
|
|
895
|
-
N+1 Query method call stack2014-08-08 17:22:21[WARN] user: vagrant
|
|
896
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
897
|
-
N+1 Query detected
|
|
898
|
-
Admin::City => [:country]
|
|
899
|
-
Add to your finder: :include => [:country]
|
|
900
|
-
N+1 Query method call stack2014-08-08 17:23:23[WARN] user: vagrant
|
|
901
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518597383
|
|
902
|
-
Unused Eager Loading detected
|
|
903
|
-
Admin::State => [:cities]
|
|
904
|
-
Remove from your finder: :include => [:cities]2014-08-08 17:23:30[WARN] user: vagrant
|
|
905
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
906
|
-
N+1 Query detected
|
|
907
|
-
Admin::City => [:state]
|
|
908
|
-
Add to your finder: :include => [:state]
|
|
909
|
-
N+1 Query method call stack2014-08-08 17:23:30[WARN] user: vagrant
|
|
910
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
911
|
-
N+1 Query detected
|
|
912
|
-
Admin::City => [:country]
|
|
913
|
-
Add to your finder: :include => [:country]
|
|
914
|
-
N+1 Query method call stack2014-08-08 17:33:19[WARN] user: vagrant
|
|
915
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
916
|
-
N+1 Query detected
|
|
917
|
-
Admin::City => [:state]
|
|
918
|
-
Add to your finder: :include => [:state]
|
|
919
|
-
N+1 Query method call stack2014-08-08 17:33:19[WARN] user: vagrant
|
|
920
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
921
|
-
N+1 Query detected
|
|
922
|
-
Admin::City => [:country]
|
|
923
|
-
Add to your finder: :include => [:country]
|
|
924
|
-
N+1 Query method call stack2014-08-08 17:33:39[WARN] user: vagrant
|
|
925
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407519213979
|
|
926
|
-
Unused Eager Loading detected
|
|
927
|
-
Admin::State => [:cities]
|
|
928
|
-
Remove from your finder: :include => [:cities]2014-08-08 17:34:32[WARN] user: vagrant
|
|
929
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407519270073
|
|
930
|
-
Unused Eager Loading detected
|
|
931
|
-
Admin::State => [:cities]
|
|
932
|
-
Remove from your finder: :include => [:cities]2014-08-08 17:34:50[WARN] user: vagrant
|
|
933
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
934
|
-
N+1 Query detected
|
|
935
|
-
Admin::City => [:state]
|
|
936
|
-
Add to your finder: :include => [:state]
|
|
937
|
-
N+1 Query method call stack2014-08-08 17:34:50[WARN] user: vagrant
|
|
938
|
-
localhost:3021http://localhost:3021/admin/states/1/edit
|
|
939
|
-
N+1 Query detected
|
|
940
|
-
Admin::City => [:country]
|
|
941
|
-
Add to your finder: :include => [:country]
|
|
942
|
-
N+1 Query method call stack2014-08-08 17:34:54[WARN] user: vagrant
|
|
943
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407519294134
|
|
944
|
-
Unused Eager Loading detected
|
|
945
|
-
Admin::State => [:cities]
|
|
946
|
-
Remove from your finder: :include => [:cities]2014-08-08 17:34:58[WARN] user: vagrant
|
|
947
|
-
localhost:3021http://localhost:3021/admin/states/3/edit
|
|
948
|
-
N+1 Query detected
|
|
949
|
-
Admin::City => [:state]
|
|
950
|
-
Add to your finder: :include => [:state]
|
|
951
|
-
N+1 Query method call stack2014-08-08 17:34:58[WARN] user: vagrant
|
|
952
|
-
localhost:3021http://localhost:3021/admin/states/3/edit
|
|
953
|
-
N+1 Query detected
|
|
954
|
-
Admin::City => [:country]
|
|
955
|
-
Add to your finder: :include => [:country]
|
|
956
|
-
N+1 Query method call stack2014-08-08 18:17:02[WARN] user: vagrant
|
|
957
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407521816271
|
|
958
|
-
Unused Eager Loading detected
|
|
959
|
-
Admin::State => [:cities]
|
|
960
|
-
Remove from your finder: :include => [:cities]2014-08-08 18:17:05[WARN] user: vagrant
|
|
961
|
-
localhost:3021http://localhost:3021/admin/states/4/edit
|
|
962
|
-
N+1 Query detected
|
|
963
|
-
Admin::City => [:state]
|
|
964
|
-
Add to your finder: :include => [:state]
|
|
965
|
-
N+1 Query method call stack2014-08-08 18:17:05[WARN] user: vagrant
|
|
966
|
-
localhost:3021http://localhost:3021/admin/states/4/edit
|
|
967
|
-
N+1 Query detected
|
|
968
|
-
Admin::City => [:country]
|
|
969
|
-
Add to your finder: :include => [:country]
|
|
970
|
-
N+1 Query method call stack2014-08-08 18:17:26[WARN] user: vagrant
|
|
971
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407521842032
|
|
972
|
-
Unused Eager Loading detected
|
|
973
|
-
Admin::State => [:cities]
|
|
974
|
-
Remove from your finder: :include => [:cities]2014-08-08 18:17:49[WARN] user: vagrant
|
|
975
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407521863734
|
|
976
|
-
Unused Eager Loading detected
|
|
977
|
-
Admin::State => [:cities]
|
|
978
|
-
Remove from your finder: :include => [:cities]2014-08-08 18:34:52[WARN] user: vagrant
|
|
979
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407522887923
|
|
980
|
-
Unused Eager Loading detected
|
|
981
|
-
Admin::State => [:cities]
|
|
982
|
-
Remove from your finder: :include => [:cities]2014-08-08 18:35:17[WARN] user: vagrant
|
|
983
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407522912451
|
|
984
|
-
Unused Eager Loading detected
|
|
985
|
-
Admin::State => [:cities]
|
|
986
|
-
Remove from your finder: :include => [:cities]2014-08-27 17:30:55[WARN] user: vagrant
|
|
987
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409160649304
|
|
988
|
-
N+1 Query detected
|
|
989
|
-
Admin::State => [:country]
|
|
990
|
-
Add to your finder: :include => [:country]
|
|
991
|
-
N+1 Query method call stack
|
|
992
|
-
N+1 Query method call stack
|
|
993
|
-
N+1 Query method call stack2014-08-27 20:39:15[WARN] user: vagrant
|
|
994
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409171948754
|
|
995
|
-
N+1 Query detected
|
|
996
|
-
Admin::State => [:country]
|
|
997
|
-
Add to your finder: :include => [:country]
|
|
998
|
-
N+1 Query method call stack
|
|
999
|
-
N+1 Query method call stack
|
|
1000
|
-
N+1 Query method call stack2014-08-28 13:34:00[WARN] user: vagrant
|
|
1001
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409232833307
|
|
1002
|
-
N+1 Query detected
|
|
1003
|
-
Admin::State => [:country]
|
|
1004
|
-
Add to your finder: :include => [:country]
|
|
1005
|
-
N+1 Query method call stack
|
|
1006
|
-
N+1 Query method call stack
|
|
1007
|
-
N+1 Query method call stack2014-08-28 14:52:54[WARN] user: vagrant
|
|
1008
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409237567998
|
|
1009
|
-
N+1 Query detected
|
|
1010
|
-
Admin::State => [:country]
|
|
1011
|
-
Add to your finder: :include => [:country]
|
|
1012
|
-
N+1 Query method call stack
|
|
1013
|
-
N+1 Query method call stack
|
|
1014
|
-
N+1 Query method call stack2014-08-28 14:53:32[WARN] user: vagrant
|
|
1015
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409237604707
|
|
1016
|
-
N+1 Query detected
|
|
1017
|
-
Admin::State => [:country]
|
|
1018
|
-
Add to your finder: :include => [:country]
|
|
1019
|
-
N+1 Query method call stack
|
|
1020
|
-
N+1 Query method call stack
|
|
1021
|
-
N+1 Query method call stack2014-08-28 15:02:38[WARN] user: vagrant
|
|
1022
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409238152557
|
|
1023
|
-
N+1 Query detected
|
|
1024
|
-
Admin::State => [:country]
|
|
1025
|
-
Add to your finder: :include => [:country]
|
|
1026
|
-
N+1 Query method call stack
|
|
1027
|
-
N+1 Query method call stack
|
|
1028
|
-
N+1 Query method call stack2014-08-28 16:45:15[WARN] user: vagrant
|
|
1029
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409244308982
|
|
1030
|
-
N+1 Query detected
|
|
1031
|
-
Admin::State => [:country]
|
|
1032
|
-
Add to your finder: :include => [:country]
|
|
1033
|
-
N+1 Query method call stack
|
|
1034
|
-
N+1 Query method call stack
|
|
1035
|
-
N+1 Query method call stack2014-08-28 16:45:29[WARN] user: vagrant
|
|
1036
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-08-01&to=2014-08-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1409244322357
|
|
1037
|
-
N+1 Query detected
|
|
1038
|
-
Admin::City => [:state]
|
|
1039
|
-
Add to your finder: :include => [:state]
|
|
1040
|
-
N+1 Query method call stack
|
|
1041
|
-
N+1 Query method call stack
|
|
1042
|
-
N+1 Query method call stack2014-08-28 16:45:29[WARN] user: vagrant
|
|
1043
|
-
localhost:3021http://localhost:3021/admin/cities.json?scope=all&from=2014-08-01&to=2014-08-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1409244322357
|
|
1044
|
-
N+1 Query detected
|
|
1045
|
-
Admin::City => [:country]
|
|
1046
|
-
Add to your finder: :include => [:country]
|
|
1047
|
-
N+1 Query method call stack
|
|
1048
|
-
N+1 Query method call stack
|
|
1049
|
-
N+1 Query method call stack2014-08-28 16:45:55[WARN] user: vagrant
|
|
1050
|
-
localhost:3021http://localhost:3021/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409244349612
|
|
1051
|
-
N+1 Query detected
|
|
1052
|
-
Admin::State => [:country]
|
|
1053
|
-
Add to your finder: :include => [:country]
|
|
1054
|
-
N+1 Query method call stack
|
|
1055
|
-
N+1 Query method call stack
|
|
1056
|
-
N+1 Query method call stack
|