versjons 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/lib/versjons/version.rb +1 -1
  3. data/test/dummy/README.rdoc +248 -15
  4. data/test/dummy/Rakefile +2 -1
  5. data/test/dummy/app/assets/javascripts/application.js +5 -3
  6. data/test/dummy/app/assets/stylesheets/application.css +3 -5
  7. data/test/dummy/app/controllers/application_controller.rb +1 -3
  8. data/test/dummy/app/views/layouts/application.html.erb +2 -2
  9. data/test/dummy/config.ru +1 -1
  10. data/test/dummy/config/application.rb +36 -0
  11. data/test/dummy/config/boot.rb +9 -4
  12. data/test/dummy/config/database.yml +8 -8
  13. data/test/dummy/config/environment.rb +3 -3
  14. data/test/dummy/config/environments/development.rb +19 -19
  15. data/test/dummy/config/environments/production.rb +28 -44
  16. data/test/dummy/config/environments/test.rb +15 -17
  17. data/test/dummy/config/initializers/inflections.rb +5 -6
  18. data/test/dummy/config/initializers/mime_types.rb +1 -0
  19. data/test/dummy/config/initializers/secret_token.rb +7 -0
  20. data/test/dummy/config/initializers/session_store.rb +6 -1
  21. data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
  22. data/test/dummy/config/locales/en.yml +2 -20
  23. data/test/dummy/config/routes.rb +25 -23
  24. data/test/dummy/log/development.log +3 -1310
  25. data/test/dummy/log/test.log +2 -156
  26. data/test/dummy/public/404.html +13 -54
  27. data/test/dummy/public/422.html +13 -54
  28. data/test/dummy/public/500.html +12 -53
  29. data/test/dummy/script/rails +6 -0
  30. metadata +7 -15
  31. data/test/dummy/bin/bundle +0 -3
  32. data/test/dummy/bin/rails +0 -4
  33. data/test/dummy/bin/rake +0 -4
  34. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  36. data/test/dummy/config/secrets.yml +0 -22
@@ -1,5 +1,5 @@
1
- # Load the Rails application.
1
+ # Load the rails application
2
2
  require File.expand_path('../application', __FILE__)
3
3
 
4
- # Initialize the Rails application.
5
- Rails.application.initialize!
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -1,37 +1,37 @@
1
- Rails.application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # In the development environment your application's code is reloaded on
5
5
  # every request. This slows down response time but is perfect for development
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Do not eager load code on boot.
10
- config.eager_load = false
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
11
 
12
- # Show full error reports and disable caching.
12
+ # Show full error reports and disable caching
13
13
  config.consider_all_requests_local = true
14
14
  config.action_controller.perform_caching = false
15
15
 
16
- # Don't care if the mailer can't send.
16
+ # Don't care if the mailer can't send
17
17
  config.action_mailer.raise_delivery_errors = false
18
18
 
19
- # Print deprecation notices to the Rails logger.
19
+ # Print deprecation notices to the Rails logger
20
20
  config.active_support.deprecation = :log
21
21
 
22
- # Raise an error on page load if there are pending migrations.
23
- config.active_record.migration_error = :page_load
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
24
 
25
- # Debug mode disables concatenation and preprocessing of assets.
26
- # This option may cause significant delays in view rendering with a large
27
- # number of complex assets.
28
- config.assets.debug = true
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
29
31
 
30
- # Adds additional error checking when serving assets at runtime.
31
- # Checks for improperly declared sprockets dependencies.
32
- # Raises helpful error messages.
33
- config.assets.raise_runtime_errors = true
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
34
 
35
- # Raises error for missing translations
36
- # config.action_view.raise_on_missing_translations = true
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
37
  end
@@ -1,83 +1,67 @@
1
- Rails.application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
- # Code is not reloaded between requests.
4
+ # Code is not reloaded between requests
5
5
  config.cache_classes = true
6
6
 
7
- # Eager load code on boot. This eager loads most of Rails and
8
- # your application in memory, allowing both threaded web servers
9
- # and those relying on copy on write to perform better.
10
- # Rake tasks automatically ignore this option for performance.
11
- config.eager_load = true
12
-
13
- # Full error reports are disabled and caching is turned on.
7
+ # Full error reports are disabled and caching is turned on
14
8
  config.consider_all_requests_local = false
15
9
  config.action_controller.perform_caching = true
16
10
 
17
- # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
- # Add `rack-cache` to your Gemfile before enabling this.
19
- # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
- # config.action_dispatch.rack_cache = true
21
-
22
- # Disable Rails's static asset server (Apache or nginx will already do this).
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
23
12
  config.serve_static_assets = false
24
13
 
25
- # Compress JavaScripts and CSS.
26
- config.assets.js_compressor = :uglifier
27
- # config.assets.css_compressor = :sass
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
28
16
 
29
- # Do not fallback to assets pipeline if a precompiled asset is missed.
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
30
18
  config.assets.compile = false
31
19
 
32
- # Generate digests for assets URLs.
20
+ # Generate digests for assets URLs
33
21
  config.assets.digest = true
34
22
 
35
- # Version of your assets, change this if you want to expire all your assets.
36
- config.assets.version = '1.0'
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
37
25
 
38
- # Specifies the header that your server uses for sending files.
26
+ # Specifies the header that your server uses for sending files
39
27
  # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
28
  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
29
 
42
30
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
31
  # config.force_ssl = true
44
32
 
45
- # Set to :debug to see everything in the log.
46
- config.log_level = :info
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
47
35
 
48
- # Prepend all log lines with the following tags.
36
+ # Prepend all log lines with the following tags
49
37
  # config.log_tags = [ :subdomain, :uuid ]
50
38
 
51
- # Use a different logger for distributed setups.
39
+ # Use a different logger for distributed setups
52
40
  # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
41
 
54
- # Use a different cache store in production.
42
+ # Use a different cache store in production
55
43
  # config.cache_store = :mem_cache_store
56
44
 
57
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
58
46
  # config.action_controller.asset_host = "http://assets.example.com"
59
47
 
60
- # Precompile additional assets.
61
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
62
49
  # config.assets.precompile += %w( search.js )
63
50
 
64
- # Ignore bad email addresses and do not raise email delivery errors.
65
- # Set this to true and configure the email server for immediate delivery to raise delivery errors.
51
+ # Disable delivery errors, bad email addresses will be ignored
66
52
  # config.action_mailer.raise_delivery_errors = false
67
53
 
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
68
57
  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
- # the I18n.default_locale when a translation cannot be found).
58
+ # the I18n.default_locale when a translation can not be found)
70
59
  config.i18n.fallbacks = true
71
60
 
72
- # Send deprecation notices to registered listeners.
61
+ # Send deprecation notices to registered listeners
73
62
  config.active_support.deprecation = :notify
74
63
 
75
- # Disable automatic flushing of the log to improve performance.
76
- # config.autoflush_log = false
77
-
78
- # Use default logging formatter so that PID and timestamp are not suppressed.
79
- config.log_formatter = ::Logger::Formatter.new
80
-
81
- # Do not dump schema after migrations.
82
- config.active_record.dump_schema_after_migration = false
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
83
67
  end
@@ -1,5 +1,5 @@
1
- Rails.application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb.
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # The test environment is used exclusively to run your application's
5
5
  # test suite. You never need to work with it otherwise. Remember that
@@ -7,33 +7,31 @@ Rails.application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
9
 
10
- # Do not eager load code on boot. This avoids loading your whole application
11
- # just for the purpose of running a single test. If you are using a tool that
12
- # preloads Rails for running tests, you may have to set it to true.
13
- config.eager_load = false
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
14
13
 
15
- # Configure static asset server for tests with Cache-Control for performance.
16
- config.serve_static_assets = true
17
- config.static_cache_control = 'public, max-age=3600'
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
18
16
 
19
- # Show full error reports and disable caching.
17
+ # Show full error reports and disable caching
20
18
  config.consider_all_requests_local = true
21
19
  config.action_controller.perform_caching = false
22
20
 
23
- # Raise exceptions instead of rendering exception templates.
21
+ # Raise exceptions instead of rendering exception templates
24
22
  config.action_dispatch.show_exceptions = false
25
23
 
26
- # Disable request forgery protection in test environment.
27
- config.action_controller.allow_forgery_protection = false
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
28
26
 
29
27
  # Tell Action Mailer not to deliver emails to the real world.
30
28
  # The :test delivery method accumulates sent emails in the
31
29
  # ActionMailer::Base.deliveries array.
32
30
  config.action_mailer.delivery_method = :test
33
31
 
34
- # Print deprecation notices to the stderr.
35
- config.active_support.deprecation = :stderr
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
36
34
 
37
- # Raises error for missing translations
38
- # config.action_view.raise_on_missing_translations = true
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
39
37
  end
@@ -1,16 +1,15 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Add new inflection rules using the following format. Inflections
4
- # are locale specific, and you may define rules for as many different
5
- # locales as you wish. All of these examples are active by default:
6
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
7
6
  # inflect.plural /^(ox)$/i, '\1en'
8
7
  # inflect.singular /^(ox)en/i, '\1'
9
8
  # inflect.irregular 'person', 'people'
10
9
  # inflect.uncountable %w( fish sheep )
11
10
  # end
12
-
11
+ #
13
12
  # These inflection rules are supported but not enabled by default:
14
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
13
+ # ActiveSupport::Inflector.inflections do |inflect|
15
14
  # inflect.acronym 'RESTful'
16
15
  # end
@@ -2,3 +2,4 @@
2
2
 
3
3
  # Add new mime types for use in respond_to blocks:
4
4
  # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -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 = 'c49130e9345243a9ddcfad3a9b54e9e2530508b388938c6fd1c1e82f5672a12c024e0361b3d2f611b72f6da573cc6f1802668c55a649a8479e2582ea2ff23127'
@@ -1,3 +1,8 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'
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
@@ -1,14 +1,14 @@
1
1
  # Be sure to restart your server when you modify this file.
2
-
2
+ #
3
3
  # This file contains settings for ActionController::ParamsWrapper which
4
4
  # is enabled by default.
5
5
 
6
6
  # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
7
  ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
8
+ wrap_parameters format: [:json]
9
9
  end
10
10
 
11
- # To enable root element in JSON for ActiveRecord objects.
12
- # ActiveSupport.on_load(:active_record) do
13
- # self.include_root_in_json = true
14
- # end
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -1,23 +1,5 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
21
3
 
22
4
  en:
23
5
  hello: "Hello world"
@@ -1,20 +1,19 @@
1
- Rails.application.routes.draw do
2
- # The priority is based upon order of creation: first created -> highest priority.
3
- # See how all your routes lay out with "rake routes".
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
4
 
5
- # You can have the root of your site routed with "root"
6
- # root 'welcome#index'
7
-
8
- # Example of regular route:
9
- # get 'products/:id' => 'catalog#view'
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
10
8
 
11
- # Example of named route that can be invoked with purchase_url(id: product.id)
12
- # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
13
12
 
14
- # Example resource route (maps HTTP verbs to controller actions automatically):
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
15
14
  # resources :products
16
15
 
17
- # Example resource route with options:
16
+ # Sample resource route with options:
18
17
  # resources :products do
19
18
  # member do
20
19
  # get 'short'
@@ -26,31 +25,34 @@ Rails.application.routes.draw do
26
25
  # end
27
26
  # end
28
27
 
29
- # Example resource route with sub-resources:
28
+ # Sample resource route with sub-resources:
30
29
  # resources :products do
31
30
  # resources :comments, :sales
32
31
  # resource :seller
33
32
  # end
34
33
 
35
- # Example resource route with more complex sub-resources:
34
+ # Sample resource route with more complex sub-resources
36
35
  # resources :products do
37
36
  # resources :comments
38
37
  # resources :sales do
39
- # get 'recent', on: :collection
38
+ # get 'recent', :on => :collection
40
39
  # end
41
40
  # end
42
41
 
43
- # Example resource route with concerns:
44
- # concern :toggleable do
45
- # post 'toggle'
46
- # end
47
- # resources :posts, concerns: :toggleable
48
- # resources :photos, concerns: :toggleable
49
-
50
- # Example resource route within a namespace:
42
+ # Sample resource route within a namespace:
51
43
  # namespace :admin do
52
44
  # # Directs /admin/products/* to Admin::ProductsController
53
45
  # # (app/controllers/admin/products_controller.rb)
54
46
  # resources :products
55
47
  # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id))(.:format)'
56
58
  end
@@ -1,1313 +1,6 @@
1
1
 
2
2
 
3
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:30:32 +0200
4
-
5
- ActionController::RoutingError (uninitialized constant VersjonController):
6
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:238:in `const_get'
7
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:238:in `block in constantize'
8
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `each'
9
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `inject'
10
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `constantize'
11
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
12
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:66:in `controller'
13
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:44:in `call'
14
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
15
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
16
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
17
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
18
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
19
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20
- rack (1.5.2) lib/rack/head.rb:11:in `call'
21
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
23
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
24
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
25
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
26
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
27
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
28
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
29
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
30
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
31
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
32
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
33
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
34
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
35
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
36
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
37
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
38
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
39
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
40
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
41
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
42
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
43
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
44
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
45
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
46
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
47
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
48
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
49
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
50
- railties (4.1.1) lib/rails/application.rb:144:in `call'
51
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
52
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
53
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
54
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
55
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
56
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
57
-
58
-
59
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (21.8ms)
60
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
61
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms)
62
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.8ms)
63
-
64
-
65
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:31:29 +0200
66
-
67
- SyntaxError (/Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:4: syntax error, unexpected ':', expecting '}'
68
- format.json { render: 'version.txt.erb' }
69
- ^):
70
- activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `load'
71
- activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `block in load_file'
72
- activesupport (4.1.1) lib/active_support/dependencies.rb:633:in `new_constants_in'
73
- activesupport (4.1.1) lib/active_support/dependencies.rb:442:in `load_file'
74
- activesupport (4.1.1) lib/active_support/dependencies.rb:342:in `require_or_load'
75
- activesupport (4.1.1) lib/active_support/dependencies.rb:480:in `load_missing_constant'
76
- activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
77
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:238:in `const_get'
78
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:238:in `block in constantize'
79
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `each'
80
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `inject'
81
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `constantize'
82
- activesupport (4.1.1) lib/active_support/dependencies.rb:552:in `get'
83
- activesupport (4.1.1) lib/active_support/dependencies.rb:583:in `constantize'
84
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
85
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:66:in `controller'
86
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:44:in `call'
87
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
88
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
89
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
90
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
91
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
92
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
93
- rack (1.5.2) lib/rack/head.rb:11:in `call'
94
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
95
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
96
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
97
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
98
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
99
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
100
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
101
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
102
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
103
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
104
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
105
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
106
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
107
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
108
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
109
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
110
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
111
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
112
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
113
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
114
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
115
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
116
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
117
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
118
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
119
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
120
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
121
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
122
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
123
- railties (4.1.1) lib/rails/application.rb:144:in `call'
124
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
125
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
126
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
127
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
128
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
129
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
130
-
131
-
132
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
133
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
134
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms)
135
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.7ms)
136
-
137
-
138
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:39:08 +0200
139
- Processing by VersjonsController#show as HTML
140
- Completed 406 Not Acceptable in 0ms
141
-
142
- ActionController::UnknownFormat (ActionController::UnknownFormat):
143
- actionpack (4.1.1) lib/action_controller/metal/mime_responds.rb:440:in `retrieve_collector_from_mimes'
144
- actionpack (4.1.1) lib/action_controller/metal/mime_responds.rb:256:in `respond_to'
145
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
146
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
147
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
148
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
149
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
150
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
151
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
152
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
153
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
154
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
155
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
156
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
157
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
158
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
159
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
160
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
161
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
162
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
163
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
164
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
165
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
166
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
167
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
168
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
169
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
170
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
171
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
172
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
173
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
174
- rack (1.5.2) lib/rack/head.rb:11:in `call'
175
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
176
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
177
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
178
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
179
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
180
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
181
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
182
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
183
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
184
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
185
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
186
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
187
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
188
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
189
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
190
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
191
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
192
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
193
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
194
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
195
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
196
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
197
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
198
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
199
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
200
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
201
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
202
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
203
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
204
- railties (4.1.1) lib/rails/application.rb:144:in `call'
205
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
206
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
207
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
208
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
209
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
210
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
211
-
212
-
213
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
214
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
215
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.1ms)
216
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.3ms)
217
-
218
-
219
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:39:46 +0200
220
- Processing by VersjonsController#show as HTML
221
- Completed 500 Internal Server Error in 1ms
222
-
223
- ActionView::MissingTemplate (Missing template versjons/json with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
224
- * "/Users/kristian/Code/versjons/test/dummy/app/views"
225
- * "/Users/kristian/Code/versjons/app/views"
226
- ):
227
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
228
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
229
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
230
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
231
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
232
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
233
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
234
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
235
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
236
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
237
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
238
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
239
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
240
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
241
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
242
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
243
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
244
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
245
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
246
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
247
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
248
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
249
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
250
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
251
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
252
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
253
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
254
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
255
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
256
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
257
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
258
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
259
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
260
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
261
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
262
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
263
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
264
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
265
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
266
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
267
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
268
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
269
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
270
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
271
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
272
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
273
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
274
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
275
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
276
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
277
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
278
- rack (1.5.2) lib/rack/head.rb:11:in `call'
279
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
280
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
281
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
282
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
283
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
284
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
285
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
286
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
287
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
288
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
289
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
290
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
291
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
292
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
293
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
294
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
295
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
296
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
297
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
298
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
299
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
300
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
301
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
302
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
303
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
304
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
305
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
306
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
307
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
308
- railties (4.1.1) lib/rails/application.rb:144:in `call'
309
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
310
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
311
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
312
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
313
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
314
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
315
-
316
-
317
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.5ms)
318
-
319
-
320
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:42:55 +0200
321
- Processing by VersjonsController#show as HTML
322
- Rendered inline template (3.3ms)
323
- Completed 500 Internal Server Error in 4ms
324
-
325
- ActionView::Template::Error (Missing partial versjons/_version with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
326
- * "/Users/kristian/Code/versjons/test/dummy/app/views"
327
- * "/Users/kristian/Code/versjons/app/views"
328
- ):
329
- 1: version: { <%= render partial: 'version' %> }
330
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
331
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
332
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:383:in `find_template'
333
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial'
334
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:263:in `render'
335
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:47:in `render_partial'
336
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:21:in `render'
337
- actionview (4.1.1) lib/action_view/helpers/rendering_helper.rb:32:in `render'
338
- inline template:1:in `_inline_template___819841045461037425_70215121686700'
339
- actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
340
- activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
341
- actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
342
- actionview (4.1.1) lib/action_view/template.rb:143:in `render'
343
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
344
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
345
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
346
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
347
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
348
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
349
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
350
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
351
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
352
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
353
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
354
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
355
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
356
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
357
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
358
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
359
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
360
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
361
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
362
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
363
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
364
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
365
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
366
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
367
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
368
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
369
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
370
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
371
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
372
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
373
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
374
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
375
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
376
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
377
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
378
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
379
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
380
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
381
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
382
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
383
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
384
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
385
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
386
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
387
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
388
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
389
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
390
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
391
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
392
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
393
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
394
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
395
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
396
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
397
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
398
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
399
- rack (1.5.2) lib/rack/head.rb:11:in `call'
400
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
401
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
402
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
403
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
404
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
405
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
406
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
407
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
408
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
409
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
410
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
411
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
412
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
413
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
414
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
415
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
416
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
417
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
418
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
419
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
420
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
421
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
422
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
423
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
424
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
425
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
426
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
427
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
428
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
429
- railties (4.1.1) lib/rails/application.rb:144:in `call'
430
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
431
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
432
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
433
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
434
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
435
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
436
-
437
-
438
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
439
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
440
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.5ms)
441
-
442
-
443
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:43:43 +0200
444
- Processing by VersjonsController#show as HTML
445
- Rendered inline template (1.3ms)
446
- Completed 500 Internal Server Error in 2ms
447
-
448
- ActionView::Template::Error (Missing partial versjons/_version with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
449
- * "/Users/kristian/Code/versjons/test/dummy/app/views"
450
- * "/Users/kristian/Code/versjons/app/views"
451
- ):
452
- 1: version: { <%= render partial: 'version', format: :json %> }
453
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
454
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
455
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:383:in `find_template'
456
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial'
457
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:263:in `render'
458
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:47:in `render_partial'
459
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:21:in `render'
460
- actionview (4.1.1) lib/action_view/helpers/rendering_helper.rb:32:in `render'
461
- inline template:1:in `_inline_template___819841045461037425_70215100571100'
462
- actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
463
- activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
464
- actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
465
- actionview (4.1.1) lib/action_view/template.rb:143:in `render'
466
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
467
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
468
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
469
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
470
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
471
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
472
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
473
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
474
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
475
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
476
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
477
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
478
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
479
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
480
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
481
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
482
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
483
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
484
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
485
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
486
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
487
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
488
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
489
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
490
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
491
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
492
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
493
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
494
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
495
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
496
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
497
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
498
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
499
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
500
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
501
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
502
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
503
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
504
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
505
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
506
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
507
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
508
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
509
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
510
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
511
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
512
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
513
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
514
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
515
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
516
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
517
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
518
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
519
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
520
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
521
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
522
- rack (1.5.2) lib/rack/head.rb:11:in `call'
523
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
524
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
525
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
526
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
527
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
528
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
529
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
530
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
531
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
532
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
533
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
534
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
535
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
536
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
537
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
538
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
539
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
540
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
541
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
542
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
543
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
544
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
545
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
546
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
547
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
548
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
549
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
550
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
551
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
552
- railties (4.1.1) lib/rails/application.rb:144:in `call'
553
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
554
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
555
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
556
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
557
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
558
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
559
-
560
-
561
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
562
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
563
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms)
564
-
565
-
566
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:48:01 +0200
567
- Processing by VersjonsController#show as HTML
568
- Rendered inline template (5.8ms)
569
- Completed 500 Internal Server Error in 6ms
570
-
571
- ActionView::Template::Error (undefined local variable or method `version' for #<#<Class:0x007fb874198050>:0x007fb874193578>):
572
- 1: version: { <%= render [version,author,time] %> }
573
- inline template:1:in `_inline_template___819841045461037425_70215099258900'
574
- actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
575
- activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
576
- actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
577
- actionview (4.1.1) lib/action_view/template.rb:143:in `render'
578
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
579
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
580
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
581
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
582
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
583
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
584
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
585
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
586
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
587
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
588
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
589
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
590
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
591
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
592
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
593
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
594
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
595
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
596
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
597
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
598
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
599
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
600
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
601
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
602
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
603
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
604
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
605
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
606
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
607
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
608
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
609
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
610
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
611
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
612
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
613
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
614
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
615
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
616
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
617
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
618
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
619
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
620
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
621
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
622
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
623
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
624
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
625
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
626
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
627
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
628
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
629
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
630
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
631
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
632
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
633
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
634
- rack (1.5.2) lib/rack/head.rb:11:in `call'
635
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
636
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
637
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
638
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
639
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
640
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
641
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
642
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
643
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
644
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
645
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
646
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
647
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
648
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
649
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
650
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
651
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
652
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
653
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
654
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
655
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
656
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
657
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
658
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
659
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
660
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
661
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
662
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
663
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
664
- railties (4.1.1) lib/rails/application.rb:144:in `call'
665
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
666
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
667
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
668
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
669
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
670
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
671
-
672
-
673
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
674
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
675
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.4ms)
676
-
677
-
678
- Started GET "/version" for 127.0.0.1 at 2014-05-20 10:52:07 +0200
679
- Processing by VersjonsController#show as HTML
680
- Completed 500 Internal Server Error in 1ms
681
-
682
- ActionView::MissingTemplate (Missing template version/current with {:locale=>[:en], :formats=>[:json], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
683
- * "/Users/kristian/Code/versjons/test/dummy/app/views"
684
- * "/Users/kristian/Code/versjons/app/views"
685
- ):
686
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
687
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
688
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
689
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
690
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
691
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
692
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
693
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
694
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
695
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
696
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
697
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
698
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
699
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
700
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
701
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
702
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
703
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
704
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
705
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
706
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
707
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
708
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
709
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
710
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
711
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
712
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
713
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
714
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
715
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
716
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
717
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
718
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
719
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
720
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
721
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
722
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
723
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
724
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
725
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
726
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
727
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
728
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
729
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
730
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
731
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
732
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
733
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
734
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
735
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
736
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
737
- rack (1.5.2) lib/rack/head.rb:11:in `call'
738
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
739
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
740
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
741
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
742
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
743
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
744
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
745
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
746
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
747
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
748
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
749
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
750
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
751
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
752
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
753
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
754
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
755
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
756
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
757
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
758
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
759
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
760
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
761
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
762
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
763
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
764
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
765
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
766
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
767
- railties (4.1.1) lib/rails/application.rb:144:in `call'
768
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
769
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
770
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
771
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
772
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
773
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
774
-
775
-
776
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.4ms)
777
-
778
-
779
- Started GET "/version" for 127.0.0.1 at 2014-05-20 11:04:23 +0200
780
- Processing by VersjonsController#show as HTML
781
- Rendered /Users/kristian/Code/versjons/app/views/version/current.json.erb (5.8ms)
782
- Completed 500 Internal Server Error in 11ms
783
-
784
- ActionView::Template::Error (Missing partial versjons/_version with {:locale=>[:en], :formats=>[:json, :html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
785
- * "/Users/kristian/Code/versjons/test/dummy/app/views"
786
- * "/Users/kristian/Code/versjons/app/views"
787
- ):
788
- 1: {"version":"<%=render partial: 'version' %>","revision":"<%= render partial: 'revision' %>","timestamp":"<%= render partial: 'timetamp' %>}
789
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
790
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
791
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:383:in `find_template'
792
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial'
793
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:263:in `render'
794
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:47:in `render_partial'
795
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:21:in `render'
796
- actionview (4.1.1) lib/action_view/helpers/rendering_helper.rb:32:in `render'
797
- /Users/kristian/Code/versjons/app/views/version/current.json.erb:1:in `___sers_kristian__ode_versjons_app_views_version_current_json_erb___204305069081776483_70175773620360'
798
- actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
799
- activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
800
- actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
801
- actionview (4.1.1) lib/action_view/template.rb:143:in `render'
802
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
803
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
804
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
805
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
806
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
807
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
808
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
809
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
810
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
811
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
812
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
813
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
814
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
815
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
816
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
817
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
818
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
819
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
820
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
821
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
822
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
823
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
824
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
825
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
826
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
827
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
828
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
829
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
830
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
831
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
832
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
833
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
834
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
835
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
836
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
837
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
838
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
839
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
840
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
841
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
842
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
843
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
844
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
845
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
846
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
847
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
848
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
849
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
850
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
851
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
852
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
853
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
854
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
855
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
856
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
857
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
858
- rack (1.5.2) lib/rack/head.rb:11:in `call'
859
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
860
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
861
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
862
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
863
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
864
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
865
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
866
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
867
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
868
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
869
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
870
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
871
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
872
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
873
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
874
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
875
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
876
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
877
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
878
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
879
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
880
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
881
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
882
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
883
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
884
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
885
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
886
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
887
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
888
- railties (4.1.1) lib/rails/application.rb:144:in `call'
889
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
890
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
891
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
892
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
893
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
894
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
895
-
896
-
897
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
898
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.6ms)
899
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.8ms)
900
-
901
-
902
- Started GET "/version" for 127.0.0.1 at 2014-05-20 11:05:15 +0200
903
- Processing by VersjonsController#show as HTML
904
- Rendered /Users/kristian/Code/versjons/app/views/version/current.json.erb (2.4ms)
905
- Completed 500 Internal Server Error in 6ms
906
-
907
- ActionView::Template::Error (Missing partial version/_version with {:locale=>[:en], :formats=>[:json, :html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
908
- * "/Users/kristian/Code/versjons/test/dummy/app/views"
909
- * "/Users/kristian/Code/versjons/app/views"
910
- ):
911
- 1: {"version":"<%=render partial: 'version/version' %>","revision":"<%= render partial: 'version/revision' %>","timestamp":"<%= render partial: 'version/timetamp' %>}
912
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
913
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
914
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:383:in `find_template'
915
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial'
916
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:263:in `render'
917
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:47:in `render_partial'
918
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:21:in `render'
919
- actionview (4.1.1) lib/action_view/helpers/rendering_helper.rb:32:in `render'
920
- /Users/kristian/Code/versjons/app/views/version/current.json.erb:1:in `___sers_kristian__ode_versjons_app_views_version_current_json_erb___204305069081776483_70175752795940'
921
- actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
922
- activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
923
- actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
924
- actionview (4.1.1) lib/action_view/template.rb:143:in `render'
925
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
926
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
927
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
928
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
929
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
930
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
931
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
932
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
933
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
934
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
935
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
936
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
937
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
938
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
939
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
940
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
941
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
942
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
943
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
944
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
945
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
946
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
947
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
948
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
949
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
950
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
951
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
952
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
953
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
954
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
955
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
956
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
957
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
958
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
959
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
960
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
961
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
962
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
963
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
964
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
965
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
966
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
967
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
968
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
969
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
970
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
971
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
972
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
973
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
974
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
975
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
976
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
977
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
978
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
979
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
980
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
981
- rack (1.5.2) lib/rack/head.rb:11:in `call'
982
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
983
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
984
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
985
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
986
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
987
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
988
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
989
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
990
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
991
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
992
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
993
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
994
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
995
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
996
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
997
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
998
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
999
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1000
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1001
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1002
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
1003
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1004
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1005
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1006
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1007
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1008
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1009
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1010
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
1011
- railties (4.1.1) lib/rails/application.rb:144:in `call'
1012
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1013
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1014
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1015
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1016
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1017
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1018
-
1019
-
1020
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1021
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1022
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.2ms)
1023
-
1024
-
1025
- Started GET "/version" for 127.0.0.1 at 2014-05-20 11:06:01 +0200
1026
- Processing by VersjonsController#show as HTML
1027
- Rendered /Users/kristian/Code/versjons/app/views/version/current.json.erb (2.1ms)
1028
- Completed 500 Internal Server Error in 4ms
1029
-
1030
- ActionView::Template::Error (Missing partial version/_version with {:locale=>[:en], :formats=>[:json, :html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
1031
- * "/Users/kristian/Code/versjons/test/dummy/app/views"
1032
- * "/Users/kristian/Code/versjons/app/views"
1033
- ):
1034
- 1: {"version":"<%=render partial: 'version/version' %>","revision":"<%= render partial: 'version/revision' %>","timestamp":"<%= render partial: 'version/timestamp' %>}
1035
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
1036
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
1037
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:383:in `find_template'
1038
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial'
1039
- actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:263:in `render'
1040
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1041
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:21:in `render'
1042
- actionview (4.1.1) lib/action_view/helpers/rendering_helper.rb:32:in `render'
1043
- /Users/kristian/Code/versjons/app/views/version/current.json.erb:1:in `___sers_kristian__ode_versjons_app_views_version_current_json_erb___204305069081776483_70175786553920'
1044
- actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
1045
- activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
1046
- actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
1047
- actionview (4.1.1) lib/action_view/template.rb:143:in `render'
1048
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
1049
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1050
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
1051
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1052
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
1053
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1054
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
1055
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
1056
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
1057
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
1058
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
1059
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
1060
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
1061
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1062
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
1063
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
1064
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
1065
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
1066
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
1067
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1068
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1069
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1070
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1071
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1072
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1073
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1074
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
1075
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:3:in `show'
1076
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1077
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
1078
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1079
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1080
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
1081
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1082
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1083
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1084
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
1085
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1086
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
1087
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1088
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1089
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1090
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
1091
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
1092
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
1093
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1094
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
1095
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
1096
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1097
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
1098
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
1099
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
1100
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
1101
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
1102
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1103
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1104
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1105
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1106
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
1107
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1108
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1109
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1110
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
1111
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1112
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
1113
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1114
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
1115
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1116
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1117
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1118
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1119
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1120
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
1121
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
1122
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1123
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1124
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1125
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
1126
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1127
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1128
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1129
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1130
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1131
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1132
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1133
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
1134
- railties (4.1.1) lib/rails/application.rb:144:in `call'
1135
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1136
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1137
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1138
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1139
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1140
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1141
-
1142
-
1143
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1144
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1145
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.5ms)
1146
-
1147
-
1148
- Started GET "/version" for 127.0.0.1 at 2014-05-20 11:07:56 +0200
1149
- Processing by VersjonsController#show as HTML
1150
- Rendered version/_version.json.erb (0.3ms)
1151
- Rendered version/_revision.json.erb (0.3ms)
1152
- Rendered version/_timestamp.json.erb (0.3ms)
1153
- Rendered /Users/kristian/Code/versjons/app/views/version/current.json.erb (5.2ms)
1154
- Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
1155
-
1156
-
1157
- Started GET "/version" for 127.0.0.1 at 2014-05-20 11:09:24 +0200
1158
- Processing by VersjonsController#show as HTML
1159
- Rendered version/_version.json.erb (0.1ms)
1160
- Rendered version/_revision.json.erb (0.0ms)
1161
- Rendered version/_timestamp.json.erb (0.0ms)
1162
- Rendered /Users/kristian/Code/versjons/app/views/version/current.json.erb (2.6ms)
1163
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1164
-
1165
-
1166
- Started GET "/version" for 127.0.0.1 at 2014-05-20 11:41:00 +0200
1167
- Processing by VersjonsController#index as HTML
1168
- Completed 500 Internal Server Error in 1ms
1169
-
1170
- NoMethodError (undefined method `version' for #<Rails::Application::Configuration:0x007ff58d3f0568>):
1171
- railties (4.1.1) lib/rails/railtie/configuration.rb:95:in `method_missing'
1172
- /Users/kristian/Code/versjons/app/controllers/versjons_controller.rb:4:in `index'
1173
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1174
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
1175
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1176
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1177
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
1178
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1179
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1180
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1181
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
1182
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1183
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
1184
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1185
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1186
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1187
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
1188
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
1189
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
1190
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1191
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
1192
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
1193
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1194
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
1195
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
1196
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
1197
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
1198
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
1199
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1200
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1201
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1202
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1203
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
1204
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1205
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1206
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1207
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
1208
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1209
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
1210
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1211
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
1212
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1213
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1214
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1215
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1216
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1217
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
1218
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
1219
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1220
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1221
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1222
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
1223
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1224
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1225
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1226
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1227
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1228
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1229
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1230
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
1231
- railties (4.1.1) lib/rails/application.rb:144:in `call'
1232
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1233
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1234
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1235
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1236
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1237
- /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1238
-
1239
-
1240
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1241
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1242
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.1ms)
1243
- Rendered /usr/local/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.8ms)
1244
-
1245
-
1246
- Started GET "/version" for 127.0.0.1 at 2014-05-20 11:47:15 +0200
1247
- Processing by VersjonsController#index as HTML
1248
- Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1249
-
1250
-
1251
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:26 +0200
1252
- Processing by VersjonsController#index as HTML
1253
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1254
-
1255
-
1256
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:26 +0200
1257
- Processing by VersjonsController#index as HTML
1258
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1259
-
1260
-
1261
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:27 +0200
1262
- Processing by VersjonsController#index as HTML
1263
- Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1264
-
1265
-
1266
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:27 +0200
1267
- Processing by VersjonsController#index as HTML
1268
- Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1269
-
1270
-
1271
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:27 +0200
1272
- Processing by VersjonsController#index as HTML
1273
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1274
-
1275
-
1276
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:27 +0200
1277
- Processing by VersjonsController#index as HTML
1278
- Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1279
-
1280
-
1281
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:28 +0200
1282
- Processing by VersjonsController#index as HTML
1283
- Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1284
-
1285
-
1286
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:28 +0200
1287
- Processing by VersjonsController#index as HTML
1288
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1289
-
1290
-
1291
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:28 +0200
1292
- Processing by VersjonsController#index as HTML
1293
- Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1294
-
1295
-
1296
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:28 +0200
1297
- Processing by VersjonsController#index as HTML
1298
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1299
-
1300
-
1301
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:28 +0200
1302
- Processing by VersjonsController#index as HTML
1303
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1304
-
1305
-
1306
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:29 +0200
1307
- Processing by VersjonsController#index as HTML
1308
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1309
-
1310
-
1311
- Started GET "/version" for 127.0.0.1 at 2014-05-20 12:31:29 +0200
3
+ Started GET "/version" for 127.0.0.1 at 2014-05-20 13:59:37 +0200
4
+ Connecting to database specified by database.yml
1312
5
  Processing by VersjonsController#index as HTML
1313
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
6
+ Completed 200 OK in 0.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)