vision 0.0.1.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.md +5 -0
- data/Rakefile +40 -0
- data/app/assets/images/vision/sort-arrows-down.png +0 -0
- data/app/assets/images/vision/sort-arrows-up.png +0 -0
- data/app/assets/javascripts/redactor-rails/config.js +16 -0
- data/app/assets/javascripts/redactor-rails/ru.js +69 -0
- data/app/assets/javascripts/vision/application.js +18 -0
- data/app/assets/stylesheets/vision/admin.css.less +0 -0
- data/app/assets/stylesheets/vision/application.css +24 -0
- data/app/assets/stylesheets/vision/bootstrap_and_overrides.css.less +63 -0
- data/app/assets/stylesheets/vision/bootstrap_theme/bootstrap-responsive.min.css.less +9 -0
- data/app/assets/stylesheets/vision/bootstrap_theme/bootstrap.css.less +5616 -0
- data/app/assets/stylesheets/vision/bootstrap_theme/bootswatch.css.less +412 -0
- data/app/assets/stylesheets/vision/bootstrap_theme/variables.less +301 -0
- data/app/controllers/redactor_rails/pictures_controller.rb +22 -0
- data/app/controllers/vision/application_controller.rb +9 -0
- data/app/controllers/vision/resource_controller.rb +57 -0
- data/app/controllers/vision/responder.rb +4 -0
- data/app/helpers/vision/application_helper.rb +42 -0
- data/app/helpers/vision/application_helper.rb~ +8 -0
- data/app/helpers/vision/resource_helper.rb +10 -0
- data/app/helpers/vision/resource_helper.rb~ +10 -0
- data/app/models/ability.rb +7 -0
- data/app/models/redactor_rails/asset.rb +6 -0
- data/app/models/redactor_rails/picture.rb +7 -0
- data/app/uploaders/redactor_rails_picture_uploader.rb +53 -0
- data/app/views/layouts/vision/application.html.haml +25 -0
- data/app/views/shared/_pagination.html.haml +2 -0
- data/app/views/vision/application/_user_bar.html.haml +8 -0
- data/app/views/vision/resource/_form.html.haml +6 -0
- data/app/views/vision/resource/_index.html.haml +16 -0
- data/app/views/vision/resource/_search.html.haml +4 -0
- data/app/views/vision/resource/edit.html.haml +9 -0
- data/app/views/vision/resource/index.html.haml +9 -0
- data/app/views/vision/resource/new.html.haml +5 -0
- data/app/views/vision/resource/show.html.haml +10 -0
- data/config/initializers/simple_form.rb +142 -0
- data/config/initializers/simple_form_bootstrap.rb +45 -0
- data/config/routes.rb +3 -0
- data/lib/generators/install_generator.rb~ +7 -0
- data/lib/generators/templates/resource/_form.html.haml +6 -0
- data/lib/generators/templates/resource/_index.html.haml +16 -0
- data/lib/generators/templates/resource/_search.html.haml +4 -0
- data/lib/generators/templates/resource/edit.html.haml +9 -0
- data/lib/generators/templates/resource/index.html.haml +9 -0
- data/lib/generators/templates/resource/new.html.haml +5 -0
- data/lib/generators/templates/resource/show.html.haml +10 -0
- data/lib/generators/templates/resource_controller.rb.erb +12 -0
- data/lib/generators/templates/vision.rb +2 -0
- data/lib/generators/templates/vision_navigation.rb +13 -0
- data/lib/generators/vision/install_generator.rb +21 -0
- data/lib/generators/vision/install_generator.rb~ +6 -0
- data/lib/generators/vision/resource_generator.rb +22 -0
- data/lib/generators/vision/views_generator.rb +12 -0
- data/lib/tasks/vision_tasks.rake +4 -0
- data/lib/vision.rb +33 -0
- data/lib/vision/engine.rb +4 -0
- data/lib/vision/engine.rb~ +5 -0
- data/lib/vision/version.rb +3 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/vision/users_controller.rb +12 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +11 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/devise.rb +240 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/vision.rb +2 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/devise.en.yml +59 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +66 -0
- data/test/dummy/config/vision_navigation.rb +13 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130211073237_devise_create_users.rb +46 -0
- data/test/dummy/db/schema.rb +34 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1544 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/users.yml +11 -0
- data/test/dummy/test/unit/user_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/BFD/BE0/sprockets%2F7750d34d5ab84713536684084175b777 +0 -0
- data/test/dummy/tmp/cache/assets/C0D/930/sprockets%2F57ada54e11211525881db12657063262 +0 -0
- data/test/dummy/tmp/cache/assets/C22/760/sprockets%2F01391319c77618e63259d5172da3c087 +0 -0
- data/test/dummy/tmp/cache/assets/C61/E30/sprockets%2F7cc7480787c36cb33f8958a018908621 +0 -0
- data/test/dummy/tmp/cache/assets/C64/2A0/sprockets%2F134c13b9bd41169120f00f41d229a058 +0 -0
- data/test/dummy/tmp/cache/assets/C83/BE0/sprockets%2F07d225b2971966fcc599b7001056e44d +0 -0
- data/test/dummy/tmp/cache/assets/CAB/EE0/sprockets%2F93064e70efa31924ce83d518222ba718 +0 -0
- data/test/dummy/tmp/cache/assets/CB8/880/sprockets%2F870390941fc4f61d24bc06c257f58a78 +0 -0
- data/test/dummy/tmp/cache/assets/CC5/DB0/sprockets%2F185b16e33c6e5952c63fe56e65d80787 +0 -0
- data/test/dummy/tmp/cache/assets/CCF/C50/sprockets%2F235f6e18294ffe4e969e1852c84f0893 +0 -0
- data/test/dummy/tmp/cache/assets/CD1/B10/sprockets%2F26e034c4229e35b5280e372090ca7acf +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CDE/F80/sprockets%2Fab0f6cb3198d15258990f645d46b161a +0 -0
- data/test/dummy/tmp/cache/assets/CE0/200/sprockets%2Fa9c2101de170df66d9c80861d89042d6 +0 -0
- data/test/dummy/tmp/cache/assets/CE3/4D0/sprockets%2F6381f9fd192014c42dfc274e83c9a650 +0 -0
- data/test/dummy/tmp/cache/assets/CEA/6B0/sprockets%2F575d96d2842a1d2deec19fe881033089 +0 -0
- data/test/dummy/tmp/cache/assets/CEE/180/sprockets%2Fc5ce9c764b20d7176d70584d76a764e4 +0 -0
- data/test/dummy/tmp/cache/assets/CF2/540/sprockets%2F5c1c7a9d6a79855f609fae58f5505513 +0 -0
- data/test/dummy/tmp/cache/assets/CF9/8B0/sprockets%2F6580899d8cc41372d92d8a5e8ab78c73 +0 -0
- data/test/dummy/tmp/cache/assets/CFB/640/sprockets%2F2a4d6aba04a724d2792087832bd3a0b8 +0 -0
- data/test/dummy/tmp/cache/assets/D01/870/sprockets%2F975c929398c5770978a8eb96aac660af +0 -0
- data/test/dummy/tmp/cache/assets/D02/B10/sprockets%2F33f4d4d4552a4ae5b172b26c0716c39d +0 -0
- data/test/dummy/tmp/cache/assets/D08/980/sprockets%2Fb70493dfb381aae06c270b4965b451f6 +0 -0
- data/test/dummy/tmp/cache/assets/D08/9E0/sprockets%2Fbd1b5d382eb7585ef2311f0e8a144185 +0 -0
- data/test/dummy/tmp/cache/assets/D12/C80/sprockets%2F6ad24bf08272a07cdd957e174b964b73 +0 -0
- data/test/dummy/tmp/cache/assets/D1B/3E0/sprockets%2F77c391e536f4b5060992b74d7fbebc09 +0 -0
- data/test/dummy/tmp/cache/assets/D1E/250/sprockets%2Ff976c60140c7662f9d86d9b3048c5dda +0 -0
- data/test/dummy/tmp/cache/assets/D21/D90/sprockets%2F976738f91218aa8bfc0e679cf3f3f061 +0 -0
- data/test/dummy/tmp/cache/assets/D26/3A0/sprockets%2F89ad96fb04e98d506546aed21b918d79 +0 -0
- data/test/dummy/tmp/cache/assets/D30/9A0/sprockets%2F7f9ae14760822ff7b8978a67d6fe36e4 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D3B/5C0/sprockets%2F40ae394bdc18dce154393aed80a27576 +0 -0
- data/test/dummy/tmp/cache/assets/D3F/5B0/sprockets%2F6557d14727823bddeba2822eb4fcc951 +0 -0
- data/test/dummy/tmp/cache/assets/D45/5A0/sprockets%2Fed747866979a368aef7d8fee884b2789 +0 -0
- data/test/dummy/tmp/cache/assets/D4A/880/sprockets%2Fcc23ed71c73788a938e1357d11ca78ef +0 -0
- data/test/dummy/tmp/cache/assets/D4D/EF0/sprockets%2F05a24a46916881e9d38ee2e0c8d9f5fb +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D50/730/sprockets%2F084ff5f6ea3f368a543911339e9dfe2e +0 -0
- data/test/dummy/tmp/cache/assets/D55/740/sprockets%2F6bfb0414e9f0de2e909917674dbe9f95 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D60/8A0/sprockets%2F1aaf8a80a707722d04cd8e53a971b1be +0 -0
- data/test/dummy/tmp/cache/assets/D69/DB0/sprockets%2F217c932a66b36e34ed25ced07f9e0be0 +0 -0
- data/test/dummy/tmp/cache/assets/D71/370/sprockets%2F19dac330438dea0771e8395b86eddf1c +0 -0
- data/test/dummy/tmp/cache/assets/D94/4C0/sprockets%2Fabaa1497cede72926b760ddef110144f +0 -0
- data/test/dummy/tmp/cache/assets/DA0/280/sprockets%2Fe2a91fe4ce8ef0c54b515145f44dde82 +0 -0
- data/test/dummy/tmp/cache/assets/DA8/F80/sprockets%2F97cf03aa7e0ff76969bab9206da267cd +0 -0
- data/test/dummy/tmp/cache/assets/DAC/2F0/sprockets%2Fc630da1a0c4bb5a2529e034ba2c7cdb6 +0 -0
- data/test/dummy/tmp/cache/assets/DB3/3A0/sprockets%2F6fce069886bdd665c59c2455edf01efd +0 -0
- data/test/dummy/tmp/cache/assets/DBB/030/sprockets%2F3ad40a6ab1a1bd6a4b0efee48168c367 +0 -0
- data/test/dummy/tmp/cache/assets/DBC/510/sprockets%2Fc49b6ed55fefd850e586e0f77ac958a7 +0 -0
- data/test/dummy/tmp/cache/assets/DCF/000/sprockets%2Fd0dfcf6a2f21043e23cf879aa9b81d9e +0 -0
- data/test/dummy/tmp/cache/assets/DCF/EE0/sprockets%2Fb4b66c49e5d32ce05fff1ff1397a50db +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/DE1/6C0/sprockets%2F6cd864830694d6acbef4f69cd0c88dae +0 -0
- data/test/dummy/tmp/cache/assets/DEE/430/sprockets%2Fdfcd51eae6f3a2a51c058c27ee0d750a +0 -0
- data/test/dummy/tmp/cache/assets/E02/F00/sprockets%2Fa5845e8c36cf9e160fccfadf0a2db837 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/E09/6D0/sprockets%2Fcbdb4fef8b144c0fd37dc8ad96926e64 +0 -0
- data/test/dummy/tmp/cache/assets/E0A/210/sprockets%2F05aadb4dc0b849fe9c3dd7788f28c5eb +0 -0
- data/test/dummy/tmp/cache/assets/E17/BC0/sprockets%2Ff206319de0be2dd9adcaaa314ecf132f +0 -0
- data/test/dummy/tmp/cache/assets/E1A/BD0/sprockets%2F5baeff0d2da03cd0e93a561e71b5aac9 +0 -0
- data/test/dummy/tmp/cache/assets/E2D/070/sprockets%2Fc4744f83de73cd2bbd645dabffd16b4c +0 -0
- data/test/dummy/tmp/cache/assets/E30/850/sprockets%2Fb6e723da1e4c9dab751ccd5ec295a9fe +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- data/test/vision_test.rb +7 -0
- metadata +658 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# inflect.acronym 'RESTful'
|
15
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '84f7d9e99835b10faffe40bdbcd50b4dcf201c0decf859283f1cd006f302c057cd97947626a2ef5555e689ac2177b1b27c21de3210052f2fedf521f287c69339'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n
|
2
|
+
|
3
|
+
en:
|
4
|
+
devise:
|
5
|
+
confirmations:
|
6
|
+
confirmed: "Your account was successfully confirmed. You are now signed in."
|
7
|
+
send_instructions: "You will receive an email with instructions about how to confirm your account in a few minutes."
|
8
|
+
send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes."
|
9
|
+
failure:
|
10
|
+
already_authenticated: "You are already signed in."
|
11
|
+
inactive: "Your account was not activated yet."
|
12
|
+
invalid: "Invalid email or password."
|
13
|
+
invalid_token: "Invalid authentication token."
|
14
|
+
locked: "Your account is locked."
|
15
|
+
not_found_in_database: "Invalid email or password."
|
16
|
+
timeout: "Your session expired, please sign in again to continue."
|
17
|
+
unauthenticated: "You need to sign in or sign up before continuing."
|
18
|
+
unconfirmed: "You have to confirm your account before continuing."
|
19
|
+
mailer:
|
20
|
+
confirmation_instructions:
|
21
|
+
subject: "Confirmation instructions"
|
22
|
+
reset_password_instructions:
|
23
|
+
subject: "Reset password instructions"
|
24
|
+
unlock_instructions:
|
25
|
+
subject: "Unlock Instructions"
|
26
|
+
omniauth_callbacks:
|
27
|
+
failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
|
28
|
+
success: "Successfully authenticated from %{kind} account."
|
29
|
+
passwords:
|
30
|
+
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
|
31
|
+
send_instructions: "You will receive an email with instructions about how to reset your password in a few minutes."
|
32
|
+
send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
|
33
|
+
updated: "Your password was changed successfully. You are now signed in."
|
34
|
+
updated_not_active: "Your password was changed successfully."
|
35
|
+
registrations:
|
36
|
+
destroyed: "Bye! Your account was successfully cancelled. We hope to see you again soon."
|
37
|
+
signed_up: "Welcome! You have signed up successfully."
|
38
|
+
signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
|
39
|
+
signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
|
40
|
+
signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please open the link to activate your account."
|
41
|
+
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address."
|
42
|
+
updated: "You updated your account successfully."
|
43
|
+
sessions:
|
44
|
+
signed_in: "Signed in successfully."
|
45
|
+
signed_out: "Signed out successfully."
|
46
|
+
unlocks:
|
47
|
+
send_instructions: "You will receive an email with instructions about how to unlock your account in a few minutes."
|
48
|
+
send_paranoid_instructions: "If your account exists, you will receive an email with instructions about how to unlock it in a few minutes."
|
49
|
+
unlocked: "Your account has been unlocked successfully. Please sign in to continue."
|
50
|
+
errors:
|
51
|
+
messages:
|
52
|
+
already_confirmed: "was already confirmed, please try signing in"
|
53
|
+
confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
|
54
|
+
expired: "has expired, please request a new one"
|
55
|
+
not_found: "not found"
|
56
|
+
not_locked: "was not locked"
|
57
|
+
not_saved:
|
58
|
+
one: "1 error prohibited this %{resource} from being saved:"
|
59
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|
@@ -0,0 +1,66 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
namespace :vision, {:path=>'admin'} do
|
3
|
+
root :to=>'users#index'
|
4
|
+
# vision routes
|
5
|
+
resources :users
|
6
|
+
end
|
7
|
+
|
8
|
+
devise_for :users
|
9
|
+
|
10
|
+
# The priority is based upon order of creation:
|
11
|
+
# first created -> highest priority.
|
12
|
+
|
13
|
+
# Sample of regular route:
|
14
|
+
# match 'products/:id' => 'catalog#view'
|
15
|
+
# Keep in mind you can assign values other than :controller and :action
|
16
|
+
|
17
|
+
# Sample of named route:
|
18
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
19
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
20
|
+
|
21
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
22
|
+
# resources :products
|
23
|
+
|
24
|
+
# Sample resource route with options:
|
25
|
+
# resources :products do
|
26
|
+
# member do
|
27
|
+
# get 'short'
|
28
|
+
# post 'toggle'
|
29
|
+
# end
|
30
|
+
#
|
31
|
+
# collection do
|
32
|
+
# get 'sold'
|
33
|
+
# end
|
34
|
+
# end
|
35
|
+
|
36
|
+
# Sample resource route with sub-resources:
|
37
|
+
# resources :products do
|
38
|
+
# resources :comments, :sales
|
39
|
+
# resource :seller
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route with more complex sub-resources
|
43
|
+
# resources :products do
|
44
|
+
# resources :comments
|
45
|
+
# resources :sales do
|
46
|
+
# get 'recent', :on => :collection
|
47
|
+
# end
|
48
|
+
# end
|
49
|
+
|
50
|
+
# Sample resource route within a namespace:
|
51
|
+
# namespace :admin do
|
52
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
53
|
+
# # (app/controllers/admin/products_controller.rb)
|
54
|
+
# resources :products
|
55
|
+
# end
|
56
|
+
|
57
|
+
# You can have the root of your site routed with "root"
|
58
|
+
# just remember to delete public/index.html.
|
59
|
+
# root :to => 'welcome#index'
|
60
|
+
|
61
|
+
# See how all your routes lay out with "rake routes"
|
62
|
+
|
63
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
64
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
65
|
+
# match ':controller(/:action(/:id))(.:format)'
|
66
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Configures your navigation
|
3
|
+
SimpleNavigation::Configuration.run do |navigation|
|
4
|
+
navigation.selected_class = 'active'
|
5
|
+
|
6
|
+
navigation.items do |primary|
|
7
|
+
primary.dom_class = 'nav nav-pills nav-stacked bs-docs-sidenav'
|
8
|
+
|
9
|
+
primary.item :home, 'Home', vision_root_path
|
10
|
+
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
Binary file
|
@@ -0,0 +1,46 @@
|
|
1
|
+
class DeviseCreateUsers < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table(:users) do |t|
|
4
|
+
## Database authenticatable
|
5
|
+
t.string :email, :null => false, :default => ""
|
6
|
+
t.string :encrypted_password, :null => false, :default => ""
|
7
|
+
|
8
|
+
## Recoverable
|
9
|
+
t.string :reset_password_token
|
10
|
+
t.datetime :reset_password_sent_at
|
11
|
+
|
12
|
+
## Rememberable
|
13
|
+
t.datetime :remember_created_at
|
14
|
+
|
15
|
+
## Trackable
|
16
|
+
t.integer :sign_in_count, :default => 0
|
17
|
+
t.datetime :current_sign_in_at
|
18
|
+
t.datetime :last_sign_in_at
|
19
|
+
t.string :current_sign_in_ip
|
20
|
+
t.string :last_sign_in_ip
|
21
|
+
|
22
|
+
## Confirmable
|
23
|
+
# t.string :confirmation_token
|
24
|
+
# t.datetime :confirmed_at
|
25
|
+
# t.datetime :confirmation_sent_at
|
26
|
+
# t.string :unconfirmed_email # Only if using reconfirmable
|
27
|
+
|
28
|
+
## Lockable
|
29
|
+
# t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
|
30
|
+
# t.string :unlock_token # Only if unlock strategy is :email or :both
|
31
|
+
# t.datetime :locked_at
|
32
|
+
|
33
|
+
## Token authenticatable
|
34
|
+
# t.string :authentication_token
|
35
|
+
|
36
|
+
|
37
|
+
t.timestamps
|
38
|
+
end
|
39
|
+
|
40
|
+
add_index :users, :email, :unique => true
|
41
|
+
add_index :users, :reset_password_token, :unique => true
|
42
|
+
# add_index :users, :confirmation_token, :unique => true
|
43
|
+
# add_index :users, :unlock_token, :unique => true
|
44
|
+
# add_index :users, :authentication_token, :unique => true
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,34 @@
|
|
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 to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20130211073237) do
|
15
|
+
|
16
|
+
create_table "users", :force => true do |t|
|
17
|
+
t.string "email", :default => "", :null => false
|
18
|
+
t.string "encrypted_password", :default => "", :null => false
|
19
|
+
t.string "reset_password_token"
|
20
|
+
t.datetime "reset_password_sent_at"
|
21
|
+
t.datetime "remember_created_at"
|
22
|
+
t.integer "sign_in_count", :default => 0
|
23
|
+
t.datetime "current_sign_in_at"
|
24
|
+
t.datetime "last_sign_in_at"
|
25
|
+
t.string "current_sign_in_ip"
|
26
|
+
t.string "last_sign_in_ip"
|
27
|
+
t.datetime "created_at", :null => false
|
28
|
+
t.datetime "updated_at", :null => false
|
29
|
+
end
|
30
|
+
|
31
|
+
add_index "users", ["email"], :name => "index_users_on_email", :unique => true
|
32
|
+
add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true
|
33
|
+
|
34
|
+
end
|
File without changes
|
@@ -0,0 +1,1544 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
Connecting to database specified by database.yml
|
6
|
+
Connecting to database specified by database.yml
|
7
|
+
Connecting to database specified by database.yml
|
8
|
+
[1m[36m (20.4ms)[0m [1mselect sqlite_version(*)[0m
|
9
|
+
[1m[35m (140.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
10
|
+
[1m[36m (103.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
11
|
+
[1m[35m (16.8ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
12
|
+
Connecting to database specified by database.yml
|
13
|
+
Connecting to database specified by database.yml
|
14
|
+
Connecting to database specified by database.yml
|
15
|
+
[1m[36m (2.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
16
|
+
Migrating to DeviseCreateUsers (20130211073237)
|
17
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
18
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
19
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
20
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
21
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
22
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130211073237')[0m
|
23
|
+
[1m[35m (146.5ms)[0m commit transaction
|
24
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
25
|
+
Connecting to database specified by database.yml
|
26
|
+
Connecting to database specified by database.yml
|
27
|
+
Connecting to database specified by database.yml
|
28
|
+
Connecting to database specified by database.yml
|
29
|
+
Connecting to database specified by database.yml
|
30
|
+
Connecting to database specified by database.yml
|
31
|
+
Connecting to database specified by database.yml
|
32
|
+
Connecting to database specified by database.yml
|
33
|
+
Connecting to database specified by database.yml
|
34
|
+
|
35
|
+
|
36
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 11:42:55 +0400
|
37
|
+
Processing by Vision::UsersController#index as HTML
|
38
|
+
Completed 401 Unauthorized in 30ms
|
39
|
+
|
40
|
+
|
41
|
+
Started GET "/users/sign_in" for 127.0.0.1 at 2013-02-11 11:42:55 +0400
|
42
|
+
Processing by Devise::SessionsController#new as HTML
|
43
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/devise-2.2.3/app/views/devise/shared/_links.erb (1.9ms)
|
44
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/devise-2.2.3/app/views/devise/sessions/new.html.erb within layouts/application (38.7ms)
|
45
|
+
Compiled application.css (1ms) (pid 5137)
|
46
|
+
Compiled jquery.js (1ms) (pid 5137)
|
47
|
+
Compiled jquery_ujs.js (0ms) (pid 5137)
|
48
|
+
Compiled application.js (49ms) (pid 5137)
|
49
|
+
Completed 200 OK in 368ms (Views: 242.5ms | ActiveRecord: 2.8ms)
|
50
|
+
|
51
|
+
|
52
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-02-11 11:42:56 +0400
|
53
|
+
Served asset /application.css - 200 OK (3ms)
|
54
|
+
|
55
|
+
|
56
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-11 11:42:56 +0400
|
57
|
+
Served asset /application.js - 200 OK (5ms)
|
58
|
+
|
59
|
+
|
60
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 11:42:56 +0400
|
61
|
+
Served asset /jquery.js - 200 OK (2ms)
|
62
|
+
|
63
|
+
|
64
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 11:42:56 +0400
|
65
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
66
|
+
|
67
|
+
|
68
|
+
Started GET "/users/sign_up" for 127.0.0.1 at 2013-02-11 11:42:59 +0400
|
69
|
+
Processing by Devise::RegistrationsController#new as HTML
|
70
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/devise-2.2.3/app/views/devise/shared/_links.erb (0.5ms)
|
71
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/devise-2.2.3/app/views/devise/registrations/new.html.erb within layouts/application (5.4ms)
|
72
|
+
Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
|
73
|
+
|
74
|
+
|
75
|
+
Started POST "/users" for 127.0.0.1 at 2013-02-11 11:43:05 +0400
|
76
|
+
Processing by Devise::RegistrationsController#create as HTML
|
77
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"2kokTMsPU4To0B+L3/X5ziIP6zFwqPeSYlTs3Bks9+o=", "user"=>{"email"=>"prikha@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
78
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
79
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'prikha@gmail.com' LIMIT 1
|
80
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
81
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/devise-2.2.3/app/views/devise/shared/_links.erb (0.5ms)
|
82
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/devise-2.2.3/app/views/devise/registrations/new.html.erb within layouts/application (4.6ms)
|
83
|
+
Completed 200 OK in 224ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
84
|
+
|
85
|
+
|
86
|
+
Started POST "/users" for 127.0.0.1 at 2013-02-11 11:43:13 +0400
|
87
|
+
Processing by Devise::RegistrationsController#create as HTML
|
88
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"2kokTMsPU4To0B+L3/X5ziIP6zFwqPeSYlTs3Bks9+o=", "user"=>{"email"=>"prikha@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
89
|
+
[1m[35m (0.1ms)[0m begin transaction
|
90
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'prikha@gmail.com' LIMIT 1[0m
|
91
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
92
|
+
[1m[35mSQL (16.3ms)[0m INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 11 Feb 2013 07:43:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "prikha@gmail.com"], ["encrypted_password", "$2a$10$8qDhm8lGl3OGPpcDIZee3OCUJeJ2vZC7HpDrKCNNr9i1zDiXgd8N2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 11 Feb 2013 07:43:13 UTC +00:00]]
|
93
|
+
[1m[36m (110.4ms)[0m [1mcommit transaction[0m
|
94
|
+
[1m[35m (0.1ms)[0m begin transaction
|
95
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = '2013-02-11 07:43:13.568918', "current_sign_in_at" = '2013-02-11 07:43:13.568918', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2013-02-11 07:43:13.570067' WHERE "users"."id" = 1[0m
|
96
|
+
[1m[35m (92.6ms)[0m commit transaction
|
97
|
+
Redirected to http://localhost:3000/vision/users
|
98
|
+
Completed 302 Found in 310ms (ActiveRecord: 0.0ms)
|
99
|
+
|
100
|
+
|
101
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 11:43:13 +0400
|
102
|
+
Processing by Vision::UsersController#index as HTML
|
103
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
104
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0
|
105
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (11.6ms)
|
106
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
107
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (41.5ms)
|
108
|
+
Compiled redactor-rails/css/redactor.css (0ms) (pid 5137)
|
109
|
+
Compiled redactor-rails/index.css (8ms) (pid 5137)
|
110
|
+
Completed 500 Internal Server Error in 228ms
|
111
|
+
|
112
|
+
ActionView::Template::Error (cannot load such file -- v8
|
113
|
+
(in /home/prikha/GIT/vision/app/assets/stylesheets/vision/bootstrap_and_overrides.css.less)):
|
114
|
+
2: %html
|
115
|
+
3: %head
|
116
|
+
4: %title= Vision.title
|
117
|
+
5: = stylesheet_link_tag "vision/application", :media => "all"
|
118
|
+
6: = javascript_include_tag "vision/application"
|
119
|
+
7: = csrf_meta_tags
|
120
|
+
8: %body
|
121
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
122
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `block in require'
|
123
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:236:in `load_dependency'
|
124
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
125
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:2:in `<top (required)>'
|
126
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
127
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `block in require'
|
128
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:236:in `load_dependency'
|
129
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
130
|
+
less (2.2.2) lib/less/java_script.rb:9:in `default_context_wrapper'
|
131
|
+
less (2.2.2) lib/less/java_script.rb:17:in `context_wrapper'
|
132
|
+
less (2.2.2) lib/less/loader.rb:10:in `initialize'
|
133
|
+
less (2.2.2) lib/less.rb:14:in `new'
|
134
|
+
less (2.2.2) lib/less.rb:14:in `<module:Less>'
|
135
|
+
less (2.2.2) lib/less.rb:9:in `<top (required)>'
|
136
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
137
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `block in require'
|
138
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:236:in `load_dependency'
|
139
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
140
|
+
tilt (1.3.3) lib/tilt/template.rb:108:in `require_template_library'
|
141
|
+
tilt (1.3.3) lib/tilt/css.rb:55:in `initialize_engine'
|
142
|
+
tilt (1.3.3) lib/tilt/template.rb:55:in `initialize'
|
143
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `new'
|
144
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `block in evaluate'
|
145
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
146
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
147
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
148
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
149
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
150
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
151
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
152
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
153
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
154
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
155
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
156
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
157
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
158
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
159
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
160
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
161
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
162
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
163
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
164
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
165
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
166
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
167
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
168
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
169
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
170
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
171
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
172
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `new'
|
173
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset'
|
174
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
175
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
176
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
177
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
178
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
179
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
180
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
181
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
182
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
183
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
184
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
185
|
+
/home/prikha/GIT/vision/app/views/layouts/vision/application.html.haml:5:in `__home_prikha_____vision_app_views_layouts_vision_application_html_haml__2734795566791513648_41603680'
|
186
|
+
actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
|
187
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
|
188
|
+
actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
|
189
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
190
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
191
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
192
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
193
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
|
194
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
195
|
+
actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
196
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
197
|
+
actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
198
|
+
actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
199
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
|
200
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
|
201
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
202
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
203
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
204
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
205
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
206
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
207
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
208
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
209
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
210
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:232:in `default_render'
|
211
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:160:in `to_html'
|
212
|
+
responders (0.9.3) lib/responders/flash_responder.rb:104:in `to_html'
|
213
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:153:in `respond'
|
214
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:146:in `call'
|
215
|
+
actionpack (3.2.11) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
|
216
|
+
inherited_resources (1.3.1) lib/inherited_resources/actions.rb:7:in `index'
|
217
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
218
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
|
219
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
220
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
221
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:436:in `_run__3389164143514136695__process_action__902833018439214006__callbacks'
|
222
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
223
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
224
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
225
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
226
|
+
actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
227
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
228
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
|
229
|
+
activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
230
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
|
231
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
232
|
+
actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
233
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
234
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
|
235
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
|
236
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
|
237
|
+
actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
238
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
|
239
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
240
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
241
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
242
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
243
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
244
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
245
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
246
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
247
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
248
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
249
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
250
|
+
rack (1.4.4) lib/rack/etag.rb:23:in `call'
|
251
|
+
rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
|
252
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
|
253
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
254
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
255
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
|
256
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
|
257
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
258
|
+
activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
|
259
|
+
activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
260
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
261
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__298082374104969230__call__1550267846333749052__callbacks'
|
262
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
263
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
264
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
265
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
266
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
267
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
268
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
269
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
270
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
271
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
272
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
273
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
274
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
275
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
276
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
277
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
278
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
279
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
280
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
281
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
282
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
283
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
284
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
285
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
286
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
287
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
288
|
+
|
289
|
+
|
290
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
291
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
292
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
|
293
|
+
|
294
|
+
|
295
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 11:44:26 +0400
|
296
|
+
Processing by Vision::UsersController#index as HTML
|
297
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
298
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0[0m
|
299
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (7.6ms)
|
300
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
301
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (13.8ms)
|
302
|
+
Completed 500 Internal Server Error in 42ms
|
303
|
+
|
304
|
+
ActionView::Template::Error (cannot load such file -- v8
|
305
|
+
(in /home/prikha/GIT/vision/app/assets/stylesheets/vision/bootstrap_and_overrides.css.less)):
|
306
|
+
2: %html
|
307
|
+
3: %head
|
308
|
+
4: %title= Vision.title
|
309
|
+
5: = stylesheet_link_tag "vision/application", :media => "all"
|
310
|
+
6: = javascript_include_tag "vision/application"
|
311
|
+
7: = csrf_meta_tags
|
312
|
+
8: %body
|
313
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
314
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `block in require'
|
315
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:236:in `load_dependency'
|
316
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
317
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:2:in `<top (required)>'
|
318
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
319
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `block in require'
|
320
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:236:in `load_dependency'
|
321
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
322
|
+
less (2.2.2) lib/less/java_script.rb:9:in `default_context_wrapper'
|
323
|
+
less (2.2.2) lib/less/java_script.rb:17:in `context_wrapper'
|
324
|
+
less (2.2.2) lib/less/java_script.rb:26:in `exec'
|
325
|
+
less (2.2.2) lib/less/parser.rb:16:in `initialize'
|
326
|
+
tilt (1.3.3) lib/tilt/css.rb:62:in `new'
|
327
|
+
tilt (1.3.3) lib/tilt/css.rb:62:in `prepare'
|
328
|
+
tilt (1.3.3) lib/tilt/template.rb:69:in `initialize'
|
329
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `new'
|
330
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `block in evaluate'
|
331
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
332
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
333
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
334
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
335
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
336
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
337
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
338
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
339
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
340
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
341
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
342
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
343
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
344
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
345
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
346
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
347
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
348
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
349
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
350
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
351
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
352
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
353
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
354
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
355
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
356
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
357
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
358
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `new'
|
359
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset'
|
360
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
361
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
362
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
363
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
364
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
365
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
366
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
367
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
368
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
369
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
370
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
371
|
+
/home/prikha/GIT/vision/app/views/layouts/vision/application.html.haml:5:in `__home_prikha_____vision_app_views_layouts_vision_application_html_haml__2734795566791513648_41603680'
|
372
|
+
actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
|
373
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
|
374
|
+
actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
|
375
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
376
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
377
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
378
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
379
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
|
380
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
381
|
+
actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
382
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
383
|
+
actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
384
|
+
actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
385
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
|
386
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
|
387
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
388
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
389
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
390
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
391
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
392
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
393
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
394
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
395
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
396
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:232:in `default_render'
|
397
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:160:in `to_html'
|
398
|
+
responders (0.9.3) lib/responders/flash_responder.rb:104:in `to_html'
|
399
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:153:in `respond'
|
400
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:146:in `call'
|
401
|
+
actionpack (3.2.11) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
|
402
|
+
inherited_resources (1.3.1) lib/inherited_resources/actions.rb:7:in `index'
|
403
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
404
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
|
405
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
406
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
407
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:436:in `_run__3389164143514136695__process_action__902833018439214006__callbacks'
|
408
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
409
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
410
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
411
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
412
|
+
actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
413
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
414
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
|
415
|
+
activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
416
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
|
417
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
418
|
+
actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
419
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
420
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
|
421
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
|
422
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
|
423
|
+
actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
424
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
|
425
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
426
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
427
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
428
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
429
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
430
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
431
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
432
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
433
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
434
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
435
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
436
|
+
rack (1.4.4) lib/rack/etag.rb:23:in `call'
|
437
|
+
rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
|
438
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
|
439
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
440
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
441
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
|
442
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
|
443
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
444
|
+
activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
|
445
|
+
activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
446
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
447
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__298082374104969230__call__1550267846333749052__callbacks'
|
448
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
449
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
450
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
451
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
452
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
453
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
454
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
455
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
456
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
457
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
458
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
459
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
460
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
461
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
462
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
463
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
464
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
465
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
466
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
467
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
468
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
469
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
470
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
471
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
472
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
473
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
474
|
+
|
475
|
+
|
476
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
477
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
478
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
|
479
|
+
|
480
|
+
|
481
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 11:44:27 +0400
|
482
|
+
Processing by Vision::UsersController#index as HTML
|
483
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
484
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0
|
485
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (8.2ms)
|
486
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
487
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (14.7ms)
|
488
|
+
Completed 500 Internal Server Error in 80ms
|
489
|
+
|
490
|
+
ActionView::Template::Error (cannot load such file -- v8
|
491
|
+
(in /home/prikha/GIT/vision/app/assets/stylesheets/vision/bootstrap_and_overrides.css.less)):
|
492
|
+
2: %html
|
493
|
+
3: %head
|
494
|
+
4: %title= Vision.title
|
495
|
+
5: = stylesheet_link_tag "vision/application", :media => "all"
|
496
|
+
6: = javascript_include_tag "vision/application"
|
497
|
+
7: = csrf_meta_tags
|
498
|
+
8: %body
|
499
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
500
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `block in require'
|
501
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:236:in `load_dependency'
|
502
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
503
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:2:in `<top (required)>'
|
504
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
505
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `block in require'
|
506
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:236:in `load_dependency'
|
507
|
+
activesupport (3.2.11) lib/active_support/dependencies.rb:251:in `require'
|
508
|
+
less (2.2.2) lib/less/java_script.rb:9:in `default_context_wrapper'
|
509
|
+
less (2.2.2) lib/less/java_script.rb:17:in `context_wrapper'
|
510
|
+
less (2.2.2) lib/less/java_script.rb:26:in `exec'
|
511
|
+
less (2.2.2) lib/less/parser.rb:16:in `initialize'
|
512
|
+
tilt (1.3.3) lib/tilt/css.rb:62:in `new'
|
513
|
+
tilt (1.3.3) lib/tilt/css.rb:62:in `prepare'
|
514
|
+
tilt (1.3.3) lib/tilt/template.rb:69:in `initialize'
|
515
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `new'
|
516
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `block in evaluate'
|
517
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
518
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
519
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
520
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
521
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
522
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
523
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
524
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
525
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
526
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
527
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
528
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
529
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
530
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
531
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
532
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
533
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
534
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
535
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
536
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
537
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
538
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
539
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
540
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
541
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
542
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
543
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
544
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `new'
|
545
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset'
|
546
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
547
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
548
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
549
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
550
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
551
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
552
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
553
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
554
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
555
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
556
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
557
|
+
/home/prikha/GIT/vision/app/views/layouts/vision/application.html.haml:5:in `__home_prikha_____vision_app_views_layouts_vision_application_html_haml__2734795566791513648_41603680'
|
558
|
+
actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
|
559
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
|
560
|
+
actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
|
561
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
562
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
563
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
564
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
565
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
|
566
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
567
|
+
actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
568
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
569
|
+
actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
570
|
+
actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
571
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
|
572
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
|
573
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
574
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
575
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
576
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
577
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
578
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
579
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
580
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
581
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
582
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:232:in `default_render'
|
583
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:160:in `to_html'
|
584
|
+
responders (0.9.3) lib/responders/flash_responder.rb:104:in `to_html'
|
585
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:153:in `respond'
|
586
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:146:in `call'
|
587
|
+
actionpack (3.2.11) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
|
588
|
+
inherited_resources (1.3.1) lib/inherited_resources/actions.rb:7:in `index'
|
589
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
590
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
|
591
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
592
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
593
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:436:in `_run__3389164143514136695__process_action__902833018439214006__callbacks'
|
594
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
595
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
596
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
597
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
598
|
+
actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
599
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
600
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
|
601
|
+
activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
602
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
|
603
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
604
|
+
actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
605
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
606
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
|
607
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
|
608
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
|
609
|
+
actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
610
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
|
611
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
612
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
613
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
614
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
615
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
616
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
617
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
618
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
619
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
620
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
621
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
622
|
+
rack (1.4.4) lib/rack/etag.rb:23:in `call'
|
623
|
+
rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
|
624
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
|
625
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
626
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
627
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
|
628
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
|
629
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
630
|
+
activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
|
631
|
+
activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
632
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
633
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__298082374104969230__call__1550267846333749052__callbacks'
|
634
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
635
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
636
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
637
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
638
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
639
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
640
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
641
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
642
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
643
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
644
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
645
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
646
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
647
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
648
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
649
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
650
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
651
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
652
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
653
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
654
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
655
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
656
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
657
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
658
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
659
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
660
|
+
|
661
|
+
|
662
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
663
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
664
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
|
665
|
+
Connecting to database specified by database.yml
|
666
|
+
|
667
|
+
|
668
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 11:48:09 +0400
|
669
|
+
Processing by Vision::UsersController#index as HTML
|
670
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
671
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0
|
672
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (52.1ms)
|
673
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
674
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (71.2ms)
|
675
|
+
Completed 500 Internal Server Error in 659ms
|
676
|
+
|
677
|
+
ActionView::Template::Error ('twitter/bootstrap/bootstrap.less' wasn't found.
|
678
|
+
|
679
|
+
(in /home/prikha/GIT/vision/app/assets/stylesheets/vision/bootstrap_and_overrides.css.less)):
|
680
|
+
2: %html
|
681
|
+
3: %head
|
682
|
+
4: %title= Vision.title
|
683
|
+
5: = stylesheet_link_tag "vision/application", :media => "all"
|
684
|
+
6: = javascript_include_tag "vision/application"
|
685
|
+
7: = csrf_meta_tags
|
686
|
+
8: %body
|
687
|
+
at less.Parser.parser.parse.i (less (2.2.2) lib/less/js/lib/less/parser.js:390:69)
|
688
|
+
less (2.2.2) lib/less/parser.rb:61:in `block in to_css'
|
689
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:90:in `block in do_lock'
|
690
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:88:in `call'
|
691
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:88:in `Locker'
|
692
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:88:in `do_lock'
|
693
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:60:in `lock'
|
694
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:30:in `exec'
|
695
|
+
less (2.2.2) lib/less/java_script.rb:26:in `exec'
|
696
|
+
less (2.2.2) lib/less/parser.rb:61:in `to_css'
|
697
|
+
less-rails (2.2.6) lib/less/rails/template_handlers.rb:19:in `evaluate'
|
698
|
+
tilt (1.3.3) lib/tilt/template.rb:76:in `render'
|
699
|
+
sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
|
700
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
701
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
702
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
703
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
704
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
705
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
706
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
707
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
708
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
709
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
710
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
711
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
712
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
713
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
714
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
715
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
716
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
717
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
718
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
719
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
720
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
721
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
722
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
723
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
724
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
725
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
726
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
727
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `new'
|
728
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset'
|
729
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
730
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
731
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
732
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
733
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
734
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
735
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
736
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
737
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
738
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
739
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
740
|
+
/home/prikha/GIT/vision/app/views/layouts/vision/application.html.haml:5:in `__home_prikha_____vision_app_views_layouts_vision_application_html_haml___354518192229228157_28653760'
|
741
|
+
actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
|
742
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
|
743
|
+
actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
|
744
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
745
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
746
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
747
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
748
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
|
749
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
750
|
+
actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
751
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
752
|
+
actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
753
|
+
actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
754
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
|
755
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
|
756
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
757
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
758
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
759
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
760
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
761
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
762
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
763
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
764
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
765
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:232:in `default_render'
|
766
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:160:in `to_html'
|
767
|
+
responders (0.9.3) lib/responders/flash_responder.rb:104:in `to_html'
|
768
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:153:in `respond'
|
769
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:146:in `call'
|
770
|
+
actionpack (3.2.11) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
|
771
|
+
inherited_resources (1.3.1) lib/inherited_resources/actions.rb:7:in `index'
|
772
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
773
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
|
774
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
775
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
776
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:436:in `_run__1389065447314570372__process_action__3093127972374605678__callbacks'
|
777
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
778
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
779
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
780
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
781
|
+
actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
782
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
783
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
|
784
|
+
activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
785
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
|
786
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
787
|
+
actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
788
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
789
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
|
790
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
|
791
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
|
792
|
+
actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
793
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
|
794
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
795
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
796
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
797
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
798
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
799
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
800
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
801
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
802
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
803
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
804
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
805
|
+
rack (1.4.4) lib/rack/etag.rb:23:in `call'
|
806
|
+
rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
|
807
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
|
808
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
809
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
810
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
|
811
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
|
812
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
813
|
+
activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
|
814
|
+
activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
815
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
816
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__3987792839974494249__call__4042135188502235026__callbacks'
|
817
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
818
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
819
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
820
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
821
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
822
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
823
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
824
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
825
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
826
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
827
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
828
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
829
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
830
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
831
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
832
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
833
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
834
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
835
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
836
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
837
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
838
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
839
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
840
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
841
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
842
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
843
|
+
|
844
|
+
|
845
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
846
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
847
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
|
848
|
+
Connecting to database specified by database.yml
|
849
|
+
|
850
|
+
|
851
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 11:56:21 +0400
|
852
|
+
Processing by Vision::UsersController#index as HTML
|
853
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
854
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0
|
855
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (23.5ms)
|
856
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
857
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (72.8ms)
|
858
|
+
Completed 500 Internal Server Error in 1932ms
|
859
|
+
|
860
|
+
ActionView::Template::Error ('vision/redactor.css.less' wasn't found.
|
861
|
+
|
862
|
+
(in /home/prikha/GIT/vision/app/assets/stylesheets/vision/bootstrap_and_overrides.css.less)):
|
863
|
+
2: %html
|
864
|
+
3: %head
|
865
|
+
4: %title= Vision.title
|
866
|
+
5: = stylesheet_link_tag "vision/application", :media => "all"
|
867
|
+
6: = javascript_include_tag "vision/application"
|
868
|
+
7: = csrf_meta_tags
|
869
|
+
8: %body
|
870
|
+
at less.Parser.parser.parse.i (less (2.2.2) lib/less/js/lib/less/parser.js:390:69)
|
871
|
+
less (2.2.2) lib/less/parser.rb:61:in `block in to_css'
|
872
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:90:in `block in do_lock'
|
873
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:88:in `call'
|
874
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:88:in `Locker'
|
875
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:88:in `do_lock'
|
876
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:60:in `lock'
|
877
|
+
less (2.2.2) lib/less/java_script/v8_context.rb:30:in `exec'
|
878
|
+
less (2.2.2) lib/less/java_script.rb:26:in `exec'
|
879
|
+
less (2.2.2) lib/less/parser.rb:61:in `to_css'
|
880
|
+
less-rails (2.2.6) lib/less/rails/template_handlers.rb:19:in `evaluate'
|
881
|
+
tilt (1.3.3) lib/tilt/template.rb:76:in `render'
|
882
|
+
sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
|
883
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
884
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
885
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
886
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
887
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
888
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
889
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
890
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
891
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
892
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
893
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
894
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
895
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
896
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
897
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
898
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
899
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
900
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
901
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
902
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
903
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
904
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
905
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
906
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
907
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
908
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
909
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
910
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `new'
|
911
|
+
sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset'
|
912
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
913
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
914
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
915
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
916
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
917
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
918
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
919
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
920
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
921
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
922
|
+
actionpack (3.2.11) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
923
|
+
/home/prikha/GIT/vision/app/views/layouts/vision/application.html.haml:5:in `__home_prikha_____vision_app_views_layouts_vision_application_html_haml__2584378594272758794_27992120'
|
924
|
+
actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
|
925
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
|
926
|
+
actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
|
927
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
928
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
929
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
930
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
931
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
|
932
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
933
|
+
actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
934
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
935
|
+
actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
936
|
+
actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
937
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
|
938
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
|
939
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
940
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
941
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
942
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
943
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
944
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
945
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
946
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
947
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
948
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:232:in `default_render'
|
949
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:160:in `to_html'
|
950
|
+
responders (0.9.3) lib/responders/flash_responder.rb:104:in `to_html'
|
951
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:153:in `respond'
|
952
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:146:in `call'
|
953
|
+
actionpack (3.2.11) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
|
954
|
+
inherited_resources (1.3.1) lib/inherited_resources/actions.rb:7:in `index'
|
955
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
956
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
|
957
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
958
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
959
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:436:in `_run__2536054776057574626__process_action__1636850952641235855__callbacks'
|
960
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
961
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
962
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
963
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
964
|
+
actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
965
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
966
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
|
967
|
+
activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
968
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
|
969
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
970
|
+
actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
971
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
972
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
|
973
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
|
974
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
|
975
|
+
actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
976
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
|
977
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
978
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
979
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
980
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
981
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
982
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
983
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
984
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
985
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
986
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
987
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
988
|
+
rack (1.4.4) lib/rack/etag.rb:23:in `call'
|
989
|
+
rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
|
990
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
|
991
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
992
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
993
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
|
994
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
|
995
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
996
|
+
activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
|
997
|
+
activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
998
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
999
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__522600256232942578__call__3314952757006319346__callbacks'
|
1000
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1001
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1002
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1003
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1004
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1005
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1006
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1007
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1008
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
1009
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
1010
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1011
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
1012
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1013
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
1014
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
1015
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1016
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
1017
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1018
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
1019
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
1020
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
1021
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
1022
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
1023
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1024
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1025
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1026
|
+
|
1027
|
+
|
1028
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
1029
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
1030
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
|
1031
|
+
|
1032
|
+
|
1033
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 11:57:37 +0400
|
1034
|
+
Processing by Vision::UsersController#index as HTML
|
1035
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1036
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0[0m
|
1037
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (8.2ms)
|
1038
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
1039
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (15.2ms)
|
1040
|
+
Compiled vision/bootstrap_and_overrides.css (1385ms) (pid 6647)
|
1041
|
+
Compiled vision/admin.css (3ms) (pid 6647)
|
1042
|
+
Compiled vision/application.css (1479ms) (pid 6647)
|
1043
|
+
Compiled twitter/bootstrap/bootstrap-transition.js (0ms) (pid 6647)
|
1044
|
+
Compiled twitter/bootstrap/bootstrap-alert.js (0ms) (pid 6647)
|
1045
|
+
Compiled twitter/bootstrap/bootstrap-modal.js (0ms) (pid 6647)
|
1046
|
+
Compiled twitter/bootstrap/bootstrap-dropdown.js (0ms) (pid 6647)
|
1047
|
+
Compiled twitter/bootstrap/bootstrap-scrollspy.js (0ms) (pid 6647)
|
1048
|
+
Compiled twitter/bootstrap/bootstrap-tab.js (0ms) (pid 6647)
|
1049
|
+
Compiled twitter/bootstrap/bootstrap-tooltip.js (0ms) (pid 6647)
|
1050
|
+
Compiled twitter/bootstrap/bootstrap-popover.js (0ms) (pid 6647)
|
1051
|
+
Compiled twitter/bootstrap/bootstrap-button.js (0ms) (pid 6647)
|
1052
|
+
Compiled twitter/bootstrap/bootstrap-collapse.js (0ms) (pid 6647)
|
1053
|
+
Compiled twitter/bootstrap/bootstrap-carousel.js (0ms) (pid 6647)
|
1054
|
+
Compiled twitter/bootstrap/bootstrap-typeahead.js (0ms) (pid 6647)
|
1055
|
+
Compiled twitter/bootstrap/bootstrap-affix.js (0ms) (pid 6647)
|
1056
|
+
Compiled twitter/bootstrap.js (315ms) (pid 6647)
|
1057
|
+
Compiled redactor-rails/redactor.min.js (0ms) (pid 6647)
|
1058
|
+
Compiled redactor-rails/config.js (0ms) (pid 6647)
|
1059
|
+
Compiled redactor-rails/index.js (123ms) (pid 6647)
|
1060
|
+
Compiled vision/application.js (576ms) (pid 6647)
|
1061
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/application/_user_bar.html.haml (3.5ms)
|
1062
|
+
Completed 500 Internal Server Error in 2379ms
|
1063
|
+
|
1064
|
+
ActionView::Template::Error ((eval):7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
|
1065
|
+
..., 'user', users_path primary.dom_class = 'nav nav-pills n...
|
1066
|
+
... ^):
|
1067
|
+
17: = bootstrap_flash
|
1068
|
+
18: .row-fluid
|
1069
|
+
19: .span2.bs-docs-sidebar
|
1070
|
+
20: = render_navigation :context=>:vision, :expand_all=>true
|
1071
|
+
21: .span10
|
1072
|
+
22: = yield
|
1073
|
+
23: = redactor_lang("ru")
|
1074
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:16:in `instance_eval'
|
1075
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:16:in `eval_config'
|
1076
|
+
simple-navigation (3.10.0) lib/simple_navigation/rendering/helpers.rb:109:in `load_config'
|
1077
|
+
simple-navigation (3.10.0) lib/simple_navigation/rendering/helpers.rb:100:in `active_navigation_item_container'
|
1078
|
+
simple-navigation (3.10.0) lib/simple_navigation/rendering/helpers.rb:42:in `render_navigation'
|
1079
|
+
actionpack (3.2.11) lib/abstract_controller/helpers.rb:53:in `render_navigation'
|
1080
|
+
/home/prikha/GIT/vision/app/views/layouts/vision/application.html.haml:20:in `__home_prikha_____vision_app_views_layouts_vision_application_html_haml__2584378594272758794_27992120'
|
1081
|
+
actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
|
1082
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
|
1083
|
+
actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
|
1084
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
1085
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
1086
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
1087
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
1088
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
|
1089
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
1090
|
+
actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
1091
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
1092
|
+
actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
1093
|
+
actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
1094
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
|
1095
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
|
1096
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
1097
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
1098
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1099
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
1100
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
1101
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
1102
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
1103
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
1104
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1105
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:232:in `default_render'
|
1106
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:160:in `to_html'
|
1107
|
+
responders (0.9.3) lib/responders/flash_responder.rb:104:in `to_html'
|
1108
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:153:in `respond'
|
1109
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:146:in `call'
|
1110
|
+
actionpack (3.2.11) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
|
1111
|
+
inherited_resources (1.3.1) lib/inherited_resources/actions.rb:7:in `index'
|
1112
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1113
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
|
1114
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1115
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1116
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:436:in `_run__2536054776057574626__process_action__1636850952641235855__callbacks'
|
1117
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1118
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1119
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1120
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1121
|
+
actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1122
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1123
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
|
1124
|
+
activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1125
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
|
1126
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1127
|
+
actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1128
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1129
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
|
1130
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
|
1131
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
|
1132
|
+
actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1133
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
|
1134
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1135
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1136
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1137
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1138
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1139
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1140
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
1141
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
1142
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
1143
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
1144
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1145
|
+
rack (1.4.4) lib/rack/etag.rb:23:in `call'
|
1146
|
+
rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
|
1147
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1148
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1149
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1150
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
|
1151
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
|
1152
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1153
|
+
activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
|
1154
|
+
activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
1155
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1156
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__522600256232942578__call__3314952757006319346__callbacks'
|
1157
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1158
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1159
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1160
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1161
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1162
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1163
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1164
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1165
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
1166
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
1167
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1168
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
1169
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1170
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
1171
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
1172
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1173
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
1174
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1175
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
1176
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
1177
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
1178
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
1179
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
1180
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1181
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1182
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1183
|
+
|
1184
|
+
|
1185
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
1186
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
1187
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
|
1188
|
+
|
1189
|
+
|
1190
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 12:00:30 +0400
|
1191
|
+
Processing by Vision::UsersController#index as HTML
|
1192
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
1193
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0
|
1194
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (7.7ms)
|
1195
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
1196
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (14.4ms)
|
1197
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/application/_user_bar.html.haml (1.2ms)
|
1198
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
|
1199
|
+
Completed 500 Internal Server Error in 141ms
|
1200
|
+
|
1201
|
+
ActionView::Template::Error (undefined local variable or method `users_path' for #<#<Class:0x000000036d45b8>:0x00000003838760>):
|
1202
|
+
17: = bootstrap_flash
|
1203
|
+
18: .row-fluid
|
1204
|
+
19: .span2.bs-docs-sidebar
|
1205
|
+
20: = render_navigation :context=>:vision, :expand_all=>true
|
1206
|
+
21: .span10
|
1207
|
+
22: = yield
|
1208
|
+
23: = redactor_lang("ru")
|
1209
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:16:in `instance_eval'
|
1210
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:59:in `call'
|
1211
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:59:in `items'
|
1212
|
+
(eval):6:in `block in eval_config'
|
1213
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:21:in `call'
|
1214
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:21:in `run'
|
1215
|
+
(eval):3:in `eval_config'
|
1216
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:16:in `instance_eval'
|
1217
|
+
simple-navigation (3.10.0) lib/simple_navigation/core/configuration.rb:16:in `eval_config'
|
1218
|
+
simple-navigation (3.10.0) lib/simple_navigation/rendering/helpers.rb:109:in `load_config'
|
1219
|
+
simple-navigation (3.10.0) lib/simple_navigation/rendering/helpers.rb:100:in `active_navigation_item_container'
|
1220
|
+
simple-navigation (3.10.0) lib/simple_navigation/rendering/helpers.rb:42:in `render_navigation'
|
1221
|
+
actionpack (3.2.11) lib/abstract_controller/helpers.rb:53:in `render_navigation'
|
1222
|
+
/home/prikha/GIT/vision/app/views/layouts/vision/application.html.haml:20:in `__home_prikha_____vision_app_views_layouts_vision_application_html_haml__2584378594272758794_27992120'
|
1223
|
+
actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
|
1224
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
|
1225
|
+
actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
|
1226
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
1227
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
1228
|
+
actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
1229
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
1230
|
+
actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
|
1231
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
1232
|
+
actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
1233
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
1234
|
+
actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
1235
|
+
actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
1236
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
|
1237
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
|
1238
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
1239
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
1240
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1241
|
+
activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
1242
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
1243
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
1244
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
1245
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
1246
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1247
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:232:in `default_render'
|
1248
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:160:in `to_html'
|
1249
|
+
responders (0.9.3) lib/responders/flash_responder.rb:104:in `to_html'
|
1250
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:153:in `respond'
|
1251
|
+
actionpack (3.2.11) lib/action_controller/metal/responder.rb:146:in `call'
|
1252
|
+
actionpack (3.2.11) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
|
1253
|
+
inherited_resources (1.3.1) lib/inherited_resources/actions.rb:7:in `index'
|
1254
|
+
actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1255
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
|
1256
|
+
actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1257
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1258
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:436:in `_run__2536054776057574626__process_action__1636850952641235855__callbacks'
|
1259
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1260
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1261
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1262
|
+
actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1263
|
+
actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1264
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1265
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
|
1266
|
+
activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1267
|
+
activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
|
1268
|
+
actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1269
|
+
actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1270
|
+
activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1271
|
+
actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
|
1272
|
+
actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
|
1273
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
|
1274
|
+
actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1275
|
+
actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
|
1276
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1277
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1278
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1279
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1280
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1281
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1282
|
+
actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
1283
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
1284
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
1285
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
1286
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1287
|
+
rack (1.4.4) lib/rack/etag.rb:23:in `call'
|
1288
|
+
rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
|
1289
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1290
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1291
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1292
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
|
1293
|
+
rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
|
1294
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1295
|
+
activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
|
1296
|
+
activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
1297
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1298
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__522600256232942578__call__3314952757006319346__callbacks'
|
1299
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1300
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1301
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1302
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1303
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1304
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1305
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1306
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1307
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
1308
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
1309
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1310
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
1311
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1312
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
1313
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
1314
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1315
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
1316
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1317
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
1318
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
1319
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
1320
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
1321
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
1322
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1323
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1324
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1325
|
+
|
1326
|
+
|
1327
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
1328
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
1329
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
|
1330
|
+
|
1331
|
+
|
1332
|
+
Started GET "/vision/users" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1333
|
+
Processing by Vision::UsersController#index as HTML
|
1334
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
1335
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0
|
1336
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (8.4ms)
|
1337
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
1338
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (15.6ms)
|
1339
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/application/_user_bar.html.haml (1.3ms)
|
1340
|
+
Compiled redactor-rails/langs/ru.js (0ms) (pid 6647)
|
1341
|
+
Completed 200 OK in 84ms (Views: 73.7ms | ActiveRecord: 0.7ms)
|
1342
|
+
|
1343
|
+
|
1344
|
+
Started GET "/assets/vision/admin.css?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1345
|
+
Served asset /vision/admin.css - 200 OK (3ms)
|
1346
|
+
|
1347
|
+
|
1348
|
+
Started GET "/assets/vision/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1349
|
+
Served asset /vision/bootstrap_and_overrides.css - 200 OK (7ms)
|
1350
|
+
|
1351
|
+
|
1352
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1353
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
1354
|
+
|
1355
|
+
|
1356
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1357
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
1358
|
+
|
1359
|
+
|
1360
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1361
|
+
Served asset /twitter/bootstrap/bootstrap-transition.js - 200 OK (2ms)
|
1362
|
+
|
1363
|
+
|
1364
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1365
|
+
Served asset /twitter/bootstrap/bootstrap-tooltip.js - 200 OK (2ms)
|
1366
|
+
|
1367
|
+
|
1368
|
+
Started GET "/assets/vision/application.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1369
|
+
Served asset /vision/application.js - 304 Not Modified (23ms)
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/assets/redactor-rails/langs/ru.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1373
|
+
Served asset /redactor-rails/langs/ru.js - 304 Not Modified (2ms)
|
1374
|
+
|
1375
|
+
|
1376
|
+
Started GET "/assets/redactor-rails/css/redactor.css?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1377
|
+
Served asset /redactor-rails/css/redactor.css - 200 OK (3ms)
|
1378
|
+
|
1379
|
+
|
1380
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1381
|
+
Served asset /twitter/bootstrap/bootstrap-modal.js - 200 OK (4ms)
|
1382
|
+
|
1383
|
+
|
1384
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1385
|
+
Served asset /twitter/bootstrap.js - 200 OK (15ms)
|
1386
|
+
|
1387
|
+
|
1388
|
+
Started GET "/assets/vision/application.css?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1389
|
+
Served asset /vision/application.css - 200 OK (8ms)
|
1390
|
+
|
1391
|
+
|
1392
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1393
|
+
Served asset /twitter/bootstrap/bootstrap-alert.js - 200 OK (2ms)
|
1394
|
+
|
1395
|
+
|
1396
|
+
Started GET "/assets/redactor-rails/index.css?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1397
|
+
Served asset /redactor-rails/index.css - 304 Not Modified (3ms)
|
1398
|
+
|
1399
|
+
|
1400
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1401
|
+
Served asset /twitter/bootstrap/bootstrap-scrollspy.js - 200 OK (2ms)
|
1402
|
+
|
1403
|
+
|
1404
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1405
|
+
Served asset /twitter/bootstrap/bootstrap-dropdown.js - 200 OK (2ms)
|
1406
|
+
|
1407
|
+
|
1408
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1409
|
+
Served asset /twitter/bootstrap/bootstrap-tab.js - 200 OK (50ms)
|
1410
|
+
|
1411
|
+
|
1412
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1413
|
+
Served asset /twitter/bootstrap/bootstrap-typeahead.js - 200 OK (2ms)
|
1414
|
+
|
1415
|
+
|
1416
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1417
|
+
Served asset /twitter/bootstrap/bootstrap-popover.js - 200 OK (4ms)
|
1418
|
+
|
1419
|
+
|
1420
|
+
Started GET "/assets/redactor-rails/config.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1421
|
+
Served asset /redactor-rails/config.js - 200 OK (2ms)
|
1422
|
+
|
1423
|
+
|
1424
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1425
|
+
Served asset /twitter/bootstrap/bootstrap-button.js - 200 OK (2ms)
|
1426
|
+
|
1427
|
+
|
1428
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1429
|
+
Served asset /twitter/bootstrap/bootstrap-collapse.js - 200 OK (2ms)
|
1430
|
+
|
1431
|
+
|
1432
|
+
Started GET "/assets/redactor-rails/redactor.min.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1433
|
+
Served asset /redactor-rails/redactor.min.js - 200 OK (2ms)
|
1434
|
+
|
1435
|
+
|
1436
|
+
Started GET "/assets/redactor-rails/index.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1437
|
+
Served asset /redactor-rails/index.js - 304 Not Modified (5ms)
|
1438
|
+
|
1439
|
+
|
1440
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1441
|
+
Served asset /twitter/bootstrap/bootstrap-carousel.js - 200 OK (2ms)
|
1442
|
+
|
1443
|
+
|
1444
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-02-11 12:01:17 +0400
|
1445
|
+
Served asset /twitter/bootstrap/bootstrap-affix.js - 200 OK (2ms)
|
1446
|
+
|
1447
|
+
|
1448
|
+
Started GET "/assets/img/glyphicons-halflings.png" for 127.0.0.1 at 2013-02-11 12:01:18 +0400
|
1449
|
+
Served asset /img/glyphicons-halflings.png - 404 Not Found (4ms)
|
1450
|
+
|
1451
|
+
ActionController::RoutingError (No route matches [GET] "/assets/img/glyphicons-halflings.png"):
|
1452
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1453
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1454
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
1455
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
1456
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1457
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
1458
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1459
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
1460
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
1461
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1462
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
1463
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1464
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
1465
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
1466
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
1467
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
1468
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
1469
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1470
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1471
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1472
|
+
|
1473
|
+
|
1474
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
1475
|
+
Connecting to database specified by database.yml
|
1476
|
+
Connecting to database specified by database.yml
|
1477
|
+
|
1478
|
+
|
1479
|
+
Started GET "/admin/users" for 127.0.0.1 at 2013-02-11 12:03:20 +0400
|
1480
|
+
Processing by Vision::UsersController#index as HTML
|
1481
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
1482
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY updated_at desc LIMIT 25 OFFSET 0
|
1483
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/_index.html.haml (22.2ms)
|
1484
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
1485
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/resource/index.html.haml within layouts/vision/application (70.4ms)
|
1486
|
+
Rendered /home/prikha/GIT/vision/app/views/vision/application/_user_bar.html.haml (3.4ms)
|
1487
|
+
Completed 200 OK in 393ms (Views: 242.8ms | ActiveRecord: 30.7ms)
|
1488
|
+
|
1489
|
+
|
1490
|
+
Started GET "/assets/redactor-rails/index.css?body=1" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1491
|
+
Served asset /redactor-rails/index.css - 304 Not Modified (8ms)
|
1492
|
+
|
1493
|
+
|
1494
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1495
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
1496
|
+
|
1497
|
+
|
1498
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1499
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
1500
|
+
|
1501
|
+
|
1502
|
+
Started GET "/assets/vision/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1503
|
+
Served asset /vision/bootstrap_and_overrides.css - 304 Not Modified (4ms)
|
1504
|
+
|
1505
|
+
|
1506
|
+
Started GET "/assets/vision/application.js?body=1" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1507
|
+
Served asset /vision/application.js - 304 Not Modified (57ms)
|
1508
|
+
|
1509
|
+
|
1510
|
+
Started GET "/assets/redactor-rails/index.js?body=1" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1511
|
+
Served asset /redactor-rails/index.js - 304 Not Modified (4ms)
|
1512
|
+
|
1513
|
+
|
1514
|
+
Started GET "/assets/redactor-rails/langs/ru.js?body=1" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1515
|
+
Served asset /redactor-rails/langs/ru.js - 304 Not Modified (2ms)
|
1516
|
+
|
1517
|
+
|
1518
|
+
Started GET "/assets/img/glyphicons-halflings.png" for 127.0.0.1 at 2013-02-11 12:03:21 +0400
|
1519
|
+
Served asset /img/glyphicons-halflings.png - 404 Not Found (4ms)
|
1520
|
+
|
1521
|
+
ActionController::RoutingError (No route matches [GET] "/assets/img/glyphicons-halflings.png"):
|
1522
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1523
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1524
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
1525
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
1526
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1527
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
1528
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1529
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
1530
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
1531
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1532
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
1533
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1534
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
1535
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
1536
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
1537
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
1538
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
1539
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1540
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1541
|
+
/home/prikha/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1542
|
+
|
1543
|
+
|
1544
|
+
Rendered /home/prikha/.rvm/gems/ruby-1.9.3-p362@rubymine/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|