ember-appkit-rails 0.0.1

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 (146) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +42 -0
  4. data/lib/ember-appkit-rails.rb +1 -0
  5. data/lib/ember/appkit/rails.rb +6 -0
  6. data/lib/ember/appkit/rails/engine.rb +12 -0
  7. data/lib/ember/appkit/rails/version.rb +7 -0
  8. data/lib/generators/ember/bootstrap_generator.rb +47 -0
  9. data/lib/generators/ember/generator_helpers.rb +40 -0
  10. data/lib/generators/ember/route_generator.rb +20 -0
  11. data/lib/generators/templates/application.js +2 -0
  12. data/lib/generators/templates/ember-app.js.es6 +15 -0
  13. data/lib/generators/templates/route.js.es6 +3 -0
  14. data/lib/generators/templates/router.js.es6 +7 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +14 -0
  18. data/test/dummy/app/assets/javascripts/components/my-component.js.es6 +4 -0
  19. data/test/dummy/app/assets/javascripts/controllers/index.js.es6 +9 -0
  20. data/test/dummy/app/assets/javascripts/ember-app.js +9 -0
  21. data/test/dummy/app/assets/javascripts/models/person.js.es6 +3 -0
  22. data/test/dummy/app/assets/javascripts/router.js.es6 +7 -0
  23. data/test/dummy/app/assets/javascripts/routes/index.js.es6 +13 -0
  24. data/test/dummy/app/assets/javascripts/templates/application.hbs +2 -0
  25. data/test/dummy/app/assets/javascripts/templates/components/my-component.hbs +1 -0
  26. data/test/dummy/app/assets/javascripts/templates/index.hbs +6 -0
  27. data/test/dummy/app/controllers/application_controller.rb +5 -0
  28. data/test/dummy/app/views/application/show.html +0 -0
  29. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  30. data/test/dummy/bin/bundle +3 -0
  31. data/test/dummy/bin/rails +4 -0
  32. data/test/dummy/bin/rake +4 -0
  33. data/test/dummy/config.ru +4 -0
  34. data/test/dummy/config/application.rb +14 -0
  35. data/test/dummy/config/boot.rb +5 -0
  36. data/test/dummy/config/environment.rb +5 -0
  37. data/test/dummy/config/environments/development.rb +30 -0
  38. data/test/dummy/config/environments/production.rb +80 -0
  39. data/test/dummy/config/environments/test.rb +37 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  42. data/test/dummy/config/initializers/inflections.rb +16 -0
  43. data/test/dummy/config/initializers/mime_types.rb +5 -0
  44. data/test/dummy/config/initializers/secret_token.rb +12 -0
  45. data/test/dummy/config/initializers/session_store.rb +3 -0
  46. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/test/dummy/config/locales/en.yml +23 -0
  48. data/test/dummy/config/routes.rb +3 -0
  49. data/test/dummy/log/development.log +3957 -0
  50. data/test/dummy/log/test.log +100 -0
  51. data/test/dummy/public/404.html +58 -0
  52. data/test/dummy/public/422.html +58 -0
  53. data/test/dummy/public/500.html +57 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/009d416d9e579ca73b72e11a882283db +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/0f63b9e77aec7451fc0c21d376f8eb28 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/13c56481151a0f8ff72b183daf16c0ba +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/19c9bc7dbf67a891e93c7a663a62ff1c +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/22d5df6f378a04858f2123ee6e176ff1 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/30095b6d23a5bac343099341a88a9768 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/30e6b42a491dc4952ff020137405d502 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/32a4bf18777e24ecbd1bb7bf1afb9d41 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/331122f2f78d79778408023cf5bad1e3 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/34b3026e7f937c6a19a0aee7f8451aad +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/36b770b8db4bb47ce9c524d7104be2e9 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/3a168599f447464b14332bdfd140ff00 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/3b825365f669ab10c71ccee9d64335b6 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/3f60ef531652da88a591066588c06000 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/3fa9b534ed1d39ba8274b7ab49a38d11 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/4138a0978ec2097970b05e52c1d1cf94 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/61df2fa75b3733030a82b166f1c135e9 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/720ee922899be7948cc2a8b27660ce0b +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/7689ffe6d7c831ee178e07106482b2cc +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/776c336ba7d7935e564e9bf5072e3dd8 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/7bf1770d3a1c8bc1b59a4bc89d5c4bca +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/7d008b32a16b10ea72ea849f47d9a095 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/832a081f27208b2b977b49b487d2bc89 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/8333b0a9d6f14badf985b50415d5deee +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/8e9feb35d7e388f760d17aaf89b32731 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/8ebc8c58233ab12eee6edfc0feca2492 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/8fc8cc19ffe18f3fb8d3a8506d9169b3 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/91ce00d4fbb2d91206d66229af2dda20 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/9475a88de7edd7f2eb6268573986cbdd +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/aee731d32c121990e31f5d68a034087c +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/b6477f770c118c6b4362a1043ea87879 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/b692b37dad694df23f130ceda8c808dd +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/b7ee576b652da2c60e89e6a466d073f4 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/c0bb6b15bdd48873e96974816e18abe9 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/c8c4c1b316845f30168739b5795846d6 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/d05ba20923e543730084eb723e770f12 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/e1658f6900cfc0ba388976a2fd25f94f +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/e2a67ad17895f7711966ca1a5ff7af86 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/e44f5ebcd8f42995512e64b96b63c9cf +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/e610538e56e78934ee9fa328294fcc06 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/e8aa57b28c86586b8b7344feb891c43f +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/ebc77031c7503fcc60aaa5c603aa9138 +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/ed5238112abbfd6a794a100804365903 +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/f2a13b6bc27457cb7513b583b4e69ed5 +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/f46d0d400dce471af50b05c9ac272ba9 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/f8c79edb4a48d7e4f74a6113d25f4699 +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/fa20075040efd309e2e2fdb310135e63 +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/fdcd9e39dbe03f947086b7e6c1ce29d2 +0 -0
  106. data/test/dummy/tmp/cache/assets/test/sprockets/009d416d9e579ca73b72e11a882283db +0 -0
  107. data/test/dummy/tmp/cache/assets/test/sprockets/0f63b9e77aec7451fc0c21d376f8eb28 +0 -0
  108. data/test/dummy/tmp/cache/assets/test/sprockets/19c9bc7dbf67a891e93c7a663a62ff1c +0 -0
  109. data/test/dummy/tmp/cache/assets/test/sprockets/22d5df6f378a04858f2123ee6e176ff1 +0 -0
  110. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  111. data/test/dummy/tmp/cache/assets/test/sprockets/30e6b42a491dc4952ff020137405d502 +0 -0
  112. data/test/dummy/tmp/cache/assets/test/sprockets/32a4bf18777e24ecbd1bb7bf1afb9d41 +0 -0
  113. data/test/dummy/tmp/cache/assets/test/sprockets/331122f2f78d79778408023cf5bad1e3 +0 -0
  114. data/test/dummy/tmp/cache/assets/test/sprockets/34b3026e7f937c6a19a0aee7f8451aad +0 -0
  115. data/test/dummy/tmp/cache/assets/test/sprockets/36b770b8db4bb47ce9c524d7104be2e9 +0 -0
  116. data/test/dummy/tmp/cache/assets/test/sprockets/3a168599f447464b14332bdfd140ff00 +0 -0
  117. data/test/dummy/tmp/cache/assets/test/sprockets/3b825365f669ab10c71ccee9d64335b6 +0 -0
  118. data/test/dummy/tmp/cache/assets/test/sprockets/3fa9b534ed1d39ba8274b7ab49a38d11 +0 -0
  119. data/test/dummy/tmp/cache/assets/test/sprockets/720ee922899be7948cc2a8b27660ce0b +0 -0
  120. data/test/dummy/tmp/cache/assets/test/sprockets/7689ffe6d7c831ee178e07106482b2cc +0 -0
  121. data/test/dummy/tmp/cache/assets/test/sprockets/7bf1770d3a1c8bc1b59a4bc89d5c4bca +0 -0
  122. data/test/dummy/tmp/cache/assets/test/sprockets/7d008b32a16b10ea72ea849f47d9a095 +0 -0
  123. data/test/dummy/tmp/cache/assets/test/sprockets/8e9feb35d7e388f760d17aaf89b32731 +0 -0
  124. data/test/dummy/tmp/cache/assets/test/sprockets/8ebc8c58233ab12eee6edfc0feca2492 +0 -0
  125. data/test/dummy/tmp/cache/assets/test/sprockets/91ce00d4fbb2d91206d66229af2dda20 +0 -0
  126. data/test/dummy/tmp/cache/assets/test/sprockets/b692b37dad694df23f130ceda8c808dd +0 -0
  127. data/test/dummy/tmp/cache/assets/test/sprockets/c0bb6b15bdd48873e96974816e18abe9 +0 -0
  128. data/test/dummy/tmp/cache/assets/test/sprockets/c8c4c1b316845f30168739b5795846d6 +0 -0
  129. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  130. data/test/dummy/tmp/cache/assets/test/sprockets/e2a67ad17895f7711966ca1a5ff7af86 +0 -0
  131. data/test/dummy/tmp/cache/assets/test/sprockets/e44f5ebcd8f42995512e64b96b63c9cf +0 -0
  132. data/test/dummy/tmp/cache/assets/test/sprockets/e8aa57b28c86586b8b7344feb891c43f +0 -0
  133. data/test/dummy/tmp/cache/assets/test/sprockets/ed5238112abbfd6a794a100804365903 +0 -0
  134. data/test/dummy/tmp/cache/assets/test/sprockets/f2a13b6bc27457cb7513b583b4e69ed5 +0 -0
  135. data/test/dummy/tmp/cache/assets/test/sprockets/f46d0d400dce471af50b05c9ac272ba9 +0 -0
  136. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  137. data/test/dummy/tmp/cache/assets/test/sprockets/f8c79edb4a48d7e4f74a6113d25f4699 +0 -0
  138. data/test/dummy/tmp/cache/assets/test/sprockets/fdcd9e39dbe03f947086b7e6c1ce29d2 +0 -0
  139. data/test/dummy/tmp/ember-rails/ember-data.js +10204 -0
  140. data/test/dummy/tmp/ember-rails/ember.js +38198 -0
  141. data/test/generators/bootstrap_generator_test.rb +35 -0
  142. data/test/generators/route_generator_test.rb +25 -0
  143. data/test/integration/navigation_test.rb +9 -0
  144. data/test/support/generator_test_support.rb +34 -0
  145. data/test/test_helper.rb +19 -0
  146. metadata +430 -0
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Dummy::Application.initialize!
@@ -0,0 +1,30 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ # config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations
23
+ # config.active_record.migration_error = :page_load
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
29
+ config.ember.variant = :development
30
+ end
@@ -0,0 +1,80 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread 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.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
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).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
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.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
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
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
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
14
+
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"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ # config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ config.ember.variant = :development
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
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|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = 'ff1348db36e45616fc8965827d32e3b4e3660485671545431c637de6d646b47f94841f886504967e65b6bea8173cff8a8c66fea64a574c26115f162cac05327c'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
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
@@ -0,0 +1,23 @@
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.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ root 'application#show'
3
+ end
@@ -0,0 +1,3957 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:41:28 -0400
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (1.7ms)
6
+ Completed 200 OK in 10ms (Views: 9.3ms)
7
+
8
+
9
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:42:01 -0400
10
+ Processing by ApplicationController#show as HTML
11
+ Rendered inline template (22.7ms)
12
+ Completed 200 OK in 23ms (Views: 23.2ms)
13
+
14
+
15
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:42:58 -0400
16
+ Processing by ApplicationController#show as HTML
17
+ Rendered application/show.html within layouts/application (0.3ms)
18
+ Completed 500 Internal Server Error in 14ms
19
+
20
+ ActionView::Template::Error (couldn't find file 'handlebars'
21
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:1)):
22
+ 3: <head>
23
+ 4: <title>Dummy</title>
24
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
25
+ 6: <%= javascript_include_tag "application" %>
26
+ 7: <%= csrf_meta_tags %>
27
+ 8: </head>
28
+ 9: <body>
29
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2770475844238908025_70248195206180'
30
+
31
+
32
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
33
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.0ms)
34
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.0ms)
35
+
36
+
37
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:43:39 -0400
38
+ Processing by ApplicationController#show as HTML
39
+ Rendered application/show.html within layouts/application (0.8ms)
40
+ Completed 500 Internal Server Error in 18ms
41
+
42
+ ActionView::Template::Error (couldn't find file 'handlebars'
43
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:1)):
44
+ 3: <head>
45
+ 4: <title>Dummy</title>
46
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
47
+ 6: <%= javascript_include_tag "application" %>
48
+ 7: <%= csrf_meta_tags %>
49
+ 8: </head>
50
+ 9: <body>
51
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1635369446157877940_70326784129540'
52
+
53
+
54
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
55
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.5ms)
56
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.3ms)
57
+
58
+
59
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:44:56 -0400
60
+ Processing by ApplicationController#show as HTML
61
+ Rendered application/show.html within layouts/application (0.8ms)
62
+ Completed 500 Internal Server Error in 16ms
63
+
64
+ ActionView::Template::Error (couldn't find file 'handlebars'
65
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:1)):
66
+ 3: <head>
67
+ 4: <title>Dummy</title>
68
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
69
+ 6: <%= javascript_include_tag "application" %>
70
+ 7: <%= csrf_meta_tags %>
71
+ 8: </head>
72
+ 9: <body>
73
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__4283548454469351806_70244768283100'
74
+
75
+
76
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
77
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.2ms)
78
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.3ms)
79
+
80
+
81
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:49:03 -0400
82
+ Processing by ApplicationController#show as HTML
83
+ Rendered application/show.html within layouts/application (21.9ms)
84
+ Completed 500 Internal Server Error in 37ms
85
+
86
+ ActionView::Template::Error (couldn't find file 'handlebars'
87
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:1)):
88
+ 3: <head>
89
+ 4: <title>Dummy</title>
90
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
91
+ 6: <%= javascript_include_tag "application" %>
92
+ 7: <%= csrf_meta_tags %>
93
+ 8: </head>
94
+ 9: <body>
95
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2835820681886722696_70104246201420'
96
+
97
+
98
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
99
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.7ms)
100
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.9ms)
101
+
102
+
103
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:50:18 -0400
104
+ Processing by ApplicationController#show as HTML
105
+ Rendered application/show.html within layouts/application (21.8ms)
106
+ Completed 500 Internal Server Error in 91ms
107
+
108
+ ActionView::Template::Error (couldn't find file 'almond'
109
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/vendor/assets/javascripts/ember-app_kit/index.js:1)):
110
+ 3: <head>
111
+ 4: <title>Dummy</title>
112
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
113
+ 6: <%= javascript_include_tag "application" %>
114
+ 7: <%= csrf_meta_tags %>
115
+ 8: </head>
116
+ 9: <body>
117
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4389200186876725858_70214951258500'
118
+
119
+
120
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
121
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.6ms)
122
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.7ms)
123
+
124
+
125
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:50:42 -0400
126
+ Processing by ApplicationController#show as HTML
127
+ Rendered application/show.html within layouts/application (0.1ms)
128
+ Completed 500 Internal Server Error in 42ms
129
+
130
+ ActionView::Template::Error (undefined local variable or method `byebug' for #<Tilt::ES6ModuleTranspilerTemplate:0x007fb86143f910>
131
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/router.js.es6)):
132
+ 3: <head>
133
+ 4: <title>Dummy</title>
134
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
135
+ 6: <%= javascript_include_tag "application" %>
136
+ 7: <%= csrf_meta_tags %>
137
+ 8: </head>
138
+ 9: <body>
139
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4389200186876725858_70214951258500'
140
+
141
+
142
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
143
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
144
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
145
+
146
+
147
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:51:19 -0400
148
+ Processing by ApplicationController#show as HTML
149
+ Rendered application/show.html within layouts/application (0.9ms)
150
+
151
+
152
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:52:54 -0400
153
+ Processing by ApplicationController#show as HTML
154
+ Rendered application/show.html within layouts/application (0.9ms)
155
+ Completed 200 OK in 709ms (Views: 709.1ms)
156
+
157
+
158
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
159
+
160
+
161
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
162
+
163
+
164
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
165
+
166
+
167
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
168
+
169
+
170
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
171
+
172
+
173
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
174
+
175
+
176
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
177
+
178
+
179
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
180
+
181
+
182
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
183
+
184
+
185
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
186
+
187
+
188
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
189
+
190
+
191
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
192
+
193
+
194
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:52:55 -0400
195
+
196
+
197
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:54:30 -0400
198
+ Processing by ApplicationController#show as HTML
199
+ Rendered application/show.html within layouts/application (0.8ms)
200
+ Completed 200 OK in 157ms (Views: 157.1ms)
201
+
202
+
203
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
204
+
205
+
206
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
207
+
208
+
209
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
210
+
211
+
212
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
213
+
214
+
215
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
216
+
217
+
218
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
219
+
220
+
221
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
222
+
223
+
224
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
225
+
226
+
227
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
228
+
229
+
230
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
231
+
232
+
233
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
234
+
235
+
236
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
237
+
238
+
239
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
240
+
241
+
242
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
243
+
244
+
245
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
246
+
247
+
248
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
249
+
250
+
251
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
252
+
253
+
254
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
255
+
256
+
257
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
258
+
259
+
260
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
261
+
262
+
263
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
264
+
265
+
266
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:31 -0400
267
+
268
+
269
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
270
+ Processing by ApplicationController#show as HTML
271
+ Rendered application/show.html within layouts/application (0.0ms)
272
+ Completed 200 OK in 95ms (Views: 94.9ms)
273
+
274
+
275
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
276
+
277
+
278
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
279
+
280
+
281
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
282
+
283
+
284
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
285
+
286
+
287
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
288
+
289
+
290
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
291
+
292
+
293
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
294
+
295
+
296
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
297
+
298
+
299
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
300
+
301
+
302
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
303
+
304
+
305
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
306
+
307
+
308
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:48 -0400
309
+
310
+
311
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:49 -0400
312
+
313
+
314
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:54:49 -0400
315
+
316
+
317
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:05 -0400
318
+
319
+
320
+ Started GET "/" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
321
+ Processing by ApplicationController#show as HTML
322
+ Rendered application/show.html within layouts/application (0.0ms)
323
+ Completed 200 OK in 218ms (Views: 217.6ms)
324
+
325
+
326
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
327
+
328
+
329
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
330
+
331
+
332
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
333
+
334
+
335
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
336
+
337
+
338
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
339
+
340
+
341
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
342
+
343
+
344
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
345
+
346
+
347
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
348
+
349
+
350
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
351
+
352
+
353
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
354
+
355
+
356
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
357
+
358
+
359
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
360
+
361
+
362
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
363
+
364
+
365
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
366
+
367
+
368
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
369
+
370
+
371
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
372
+
373
+
374
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
375
+
376
+
377
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
378
+
379
+
380
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
381
+
382
+
383
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
384
+
385
+
386
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
387
+
388
+
389
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 13:55:38 -0400
390
+
391
+
392
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:28:51 -0400
393
+ Processing by ApplicationController#show as HTML
394
+ Rendered application/show.html within layouts/application (3.2ms)
395
+ Completed 200 OK in 949ms (Views: 945.3ms)
396
+
397
+
398
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
399
+
400
+
401
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
402
+
403
+
404
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
405
+
406
+
407
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
408
+
409
+
410
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
411
+
412
+
413
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
414
+
415
+
416
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
417
+
418
+
419
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
420
+
421
+
422
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
423
+
424
+
425
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
426
+
427
+
428
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
429
+
430
+
431
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
432
+
433
+
434
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
435
+
436
+
437
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:28:53 -0400
438
+
439
+
440
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
441
+ Processing by ApplicationController#show as HTML
442
+ Rendered application/show.html within layouts/application (0.0ms)
443
+ Completed 200 OK in 14ms (Views: 13.7ms)
444
+
445
+
446
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
447
+
448
+
449
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
450
+
451
+
452
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
453
+
454
+
455
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
456
+
457
+
458
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
459
+
460
+
461
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
462
+
463
+
464
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
465
+
466
+
467
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
468
+
469
+
470
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
471
+
472
+
473
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
474
+
475
+
476
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
477
+
478
+
479
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
480
+
481
+
482
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
483
+
484
+
485
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:06 -0400
486
+
487
+
488
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:13 -0400
489
+
490
+
491
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
492
+ Processing by ApplicationController#show as HTML
493
+ Rendered application/show.html within layouts/application (0.1ms)
494
+ Completed 200 OK in 279ms (Views: 278.6ms)
495
+
496
+
497
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
498
+
499
+
500
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
501
+
502
+
503
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
504
+
505
+
506
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
507
+
508
+
509
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
510
+
511
+
512
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
513
+
514
+
515
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
516
+
517
+
518
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
519
+
520
+
521
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
522
+
523
+
524
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
525
+
526
+
527
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
528
+
529
+
530
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
531
+
532
+
533
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
534
+
535
+
536
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
537
+
538
+
539
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:29:51 -0400
540
+
541
+
542
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
543
+ Processing by ApplicationController#show as HTML
544
+ Rendered application/show.html within layouts/application (0.0ms)
545
+ Completed 200 OK in 290ms (Views: 289.7ms)
546
+
547
+
548
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
549
+
550
+
551
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
552
+
553
+
554
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
555
+
556
+
557
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
558
+
559
+
560
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
561
+
562
+
563
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
564
+
565
+
566
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
567
+
568
+
569
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
570
+
571
+
572
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
573
+
574
+
575
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
576
+
577
+
578
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
579
+
580
+
581
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
582
+
583
+
584
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
585
+
586
+
587
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
588
+
589
+
590
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:28 -0400
591
+
592
+
593
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:37 -0400
594
+
595
+
596
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:30:55 -0400
597
+
598
+
599
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:31:17 -0400
600
+
601
+
602
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:31:24 -0400
603
+
604
+
605
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:31:50 -0400
606
+
607
+
608
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:34:21 -0400
609
+ Processing by ApplicationController#show as HTML
610
+ Rendered application/show.html within layouts/application (0.1ms)
611
+ Completed 200 OK in 396ms (Views: 395.7ms)
612
+
613
+
614
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:34:24 -0400
615
+
616
+
617
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
618
+ Processing by ApplicationController#show as HTML
619
+ Rendered application/show.html within layouts/application (0.1ms)
620
+ Completed 200 OK in 358ms (Views: 358.1ms)
621
+
622
+
623
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
624
+
625
+
626
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
627
+
628
+
629
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
630
+
631
+
632
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
633
+
634
+
635
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
636
+
637
+
638
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
639
+
640
+
641
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
642
+
643
+
644
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
645
+
646
+
647
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:00 -0400
648
+
649
+
650
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:01 -0400
651
+
652
+
653
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:01 -0400
654
+
655
+
656
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:01 -0400
657
+
658
+
659
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:01 -0400
660
+
661
+
662
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:01 -0400
663
+
664
+
665
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:01 -0400
666
+
667
+
668
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:35:01 -0400
669
+
670
+
671
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:36:41 -0400
672
+
673
+
674
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:36:46 -0400
675
+
676
+
677
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:37:00 -0400
678
+
679
+
680
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
681
+ Processing by ApplicationController#show as HTML
682
+ Rendered application/show.html within layouts/application (0.0ms)
683
+ Completed 200 OK in 392ms (Views: 391.7ms)
684
+
685
+
686
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
687
+
688
+
689
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
690
+
691
+
692
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
693
+
694
+
695
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
696
+
697
+
698
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
699
+
700
+
701
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
702
+
703
+
704
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
705
+
706
+
707
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
708
+
709
+
710
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
711
+
712
+
713
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
714
+
715
+
716
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
717
+
718
+
719
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
720
+
721
+
722
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
723
+
724
+
725
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:26 -0400
726
+
727
+
728
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:27 -0400
729
+
730
+
731
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:38:27 -0400
732
+
733
+
734
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
735
+ Processing by ApplicationController#show as HTML
736
+ Rendered application/show.html within layouts/application (0.0ms)
737
+ Completed 200 OK in 270ms (Views: 269.9ms)
738
+
739
+
740
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
741
+
742
+
743
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
744
+
745
+
746
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
747
+
748
+
749
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
750
+
751
+
752
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
753
+
754
+
755
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
756
+
757
+
758
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
759
+
760
+
761
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
762
+
763
+
764
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
765
+
766
+
767
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
768
+
769
+
770
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
771
+
772
+
773
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:52 -0400
774
+
775
+
776
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:53 -0400
777
+
778
+
779
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:53 -0400
780
+
781
+
782
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:53 -0400
783
+
784
+
785
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:39:53 -0400
786
+
787
+
788
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:40:22 -0400
789
+ Processing by ApplicationController#show as HTML
790
+ Rendered application/show.html within layouts/application (0.0ms)
791
+ Completed 200 OK in 270ms (Views: 270.1ms)
792
+
793
+
794
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:40:22 -0400
795
+
796
+
797
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:22 -0400
798
+
799
+
800
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:22 -0400
801
+
802
+
803
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:22 -0400
804
+
805
+
806
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:22 -0400
807
+
808
+
809
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
810
+
811
+
812
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
813
+
814
+
815
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
816
+
817
+
818
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
819
+
820
+
821
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
822
+
823
+
824
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
825
+
826
+
827
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
828
+
829
+
830
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
831
+
832
+
833
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
834
+
835
+
836
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
837
+
838
+
839
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:40:23 -0400
840
+
841
+
842
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
843
+ Processing by ApplicationController#show as HTML
844
+ Rendered application/show.html within layouts/application (0.0ms)
845
+ Completed 200 OK in 169ms (Views: 168.6ms)
846
+
847
+
848
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
849
+
850
+
851
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
852
+
853
+
854
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
855
+
856
+
857
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
858
+
859
+
860
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
861
+
862
+
863
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
864
+
865
+
866
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
867
+
868
+
869
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
870
+
871
+
872
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
873
+
874
+
875
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
876
+
877
+
878
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
879
+
880
+
881
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:04 -0400
882
+
883
+
884
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:05 -0400
885
+
886
+
887
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:05 -0400
888
+
889
+
890
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:05 -0400
891
+
892
+
893
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:05 -0400
894
+
895
+
896
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:41:06 -0400
897
+ Processing by ApplicationController#show as HTML
898
+ Rendered application/show.html within layouts/application (0.0ms)
899
+ Completed 200 OK in 13ms (Views: 13.4ms)
900
+
901
+
902
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
903
+
904
+
905
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
906
+
907
+
908
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
909
+
910
+
911
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
912
+
913
+
914
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
915
+
916
+
917
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
918
+
919
+
920
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
921
+
922
+
923
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
924
+
925
+
926
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
927
+
928
+
929
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
930
+
931
+
932
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
933
+
934
+
935
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
936
+
937
+
938
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
939
+
940
+
941
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
942
+
943
+
944
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
945
+
946
+
947
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:07 -0400
948
+
949
+
950
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:41:56 -0400
951
+ Processing by ApplicationController#show as HTML
952
+ Rendered application/show.html within layouts/application (0.0ms)
953
+ Completed 200 OK in 269ms (Views: 268.9ms)
954
+
955
+
956
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
957
+
958
+
959
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
960
+
961
+
962
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
963
+
964
+
965
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
966
+
967
+
968
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
969
+
970
+
971
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
972
+
973
+
974
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
975
+
976
+
977
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
978
+
979
+
980
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
981
+
982
+
983
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
984
+
985
+
986
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
987
+
988
+
989
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
990
+
991
+
992
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
993
+
994
+
995
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
996
+
997
+
998
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
999
+
1000
+
1001
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:41:57 -0400
1002
+
1003
+
1004
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:42:11 -0400
1005
+ Processing by ApplicationController#show as HTML
1006
+ Rendered application/show.html within layouts/application (0.0ms)
1007
+ Completed 200 OK in 293ms (Views: 292.7ms)
1008
+
1009
+
1010
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1011
+
1012
+
1013
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1014
+
1015
+
1016
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1017
+
1018
+
1019
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1020
+
1021
+
1022
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1023
+
1024
+
1025
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1026
+
1027
+
1028
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1029
+
1030
+
1031
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1032
+
1033
+
1034
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1035
+
1036
+
1037
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1038
+
1039
+
1040
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1041
+
1042
+
1043
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1044
+
1045
+
1046
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1047
+
1048
+
1049
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1050
+
1051
+
1052
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1053
+
1054
+
1055
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:12 -0400
1056
+
1057
+
1058
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:42:30 -0400
1059
+ Processing by ApplicationController#show as HTML
1060
+ Rendered application/show.html within layouts/application (0.1ms)
1061
+ Completed 200 OK in 267ms (Views: 267.2ms)
1062
+
1063
+
1064
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1065
+
1066
+
1067
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1068
+
1069
+
1070
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1071
+
1072
+
1073
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1074
+
1075
+
1076
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1077
+
1078
+
1079
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1080
+
1081
+
1082
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1083
+
1084
+
1085
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1086
+
1087
+
1088
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1089
+
1090
+
1091
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1092
+
1093
+
1094
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1095
+
1096
+
1097
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1098
+
1099
+
1100
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1101
+
1102
+
1103
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1104
+
1105
+
1106
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1107
+
1108
+
1109
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:31 -0400
1110
+
1111
+
1112
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:42:48 -0400
1113
+
1114
+
1115
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1116
+ Processing by ApplicationController#show as HTML
1117
+ Rendered application/show.html within layouts/application (0.1ms)
1118
+ Completed 200 OK in 274ms (Views: 273.4ms)
1119
+
1120
+
1121
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1122
+
1123
+
1124
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1125
+
1126
+
1127
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1128
+
1129
+
1130
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1131
+
1132
+
1133
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1134
+
1135
+
1136
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1137
+
1138
+
1139
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1140
+
1141
+
1142
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1143
+
1144
+
1145
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1146
+
1147
+
1148
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1149
+
1150
+
1151
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1152
+
1153
+
1154
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1155
+
1156
+
1157
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1158
+
1159
+
1160
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1161
+
1162
+
1163
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1164
+
1165
+
1166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:17 -0400
1167
+
1168
+
1169
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1170
+ Processing by ApplicationController#show as HTML
1171
+ Rendered application/show.html within layouts/application (0.0ms)
1172
+ Completed 200 OK in 14ms (Views: 13.7ms)
1173
+
1174
+
1175
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1176
+
1177
+
1178
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1179
+
1180
+
1181
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1182
+
1183
+
1184
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1185
+
1186
+
1187
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1188
+
1189
+
1190
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1191
+
1192
+
1193
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1194
+
1195
+
1196
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1197
+
1198
+
1199
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1200
+
1201
+
1202
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1203
+
1204
+
1205
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1206
+
1207
+
1208
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1209
+
1210
+
1211
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1212
+
1213
+
1214
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1215
+
1216
+
1217
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1218
+
1219
+
1220
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:47:20 -0400
1221
+
1222
+
1223
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1224
+ Processing by ApplicationController#show as HTML
1225
+ Rendered application/show.html within layouts/application (0.0ms)
1226
+ Completed 200 OK in 178ms (Views: 177.5ms)
1227
+
1228
+
1229
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1230
+
1231
+
1232
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1233
+
1234
+
1235
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1236
+
1237
+
1238
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1239
+
1240
+
1241
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1242
+
1243
+
1244
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1245
+
1246
+
1247
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1248
+
1249
+
1250
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1251
+
1252
+
1253
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1254
+
1255
+
1256
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1257
+
1258
+
1259
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1260
+
1261
+
1262
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:17 -0400
1263
+
1264
+
1265
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:18 -0400
1266
+
1267
+
1268
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:18 -0400
1269
+
1270
+
1271
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:18 -0400
1272
+
1273
+
1274
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:18 -0400
1275
+
1276
+
1277
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1278
+ Processing by ApplicationController#show as HTML
1279
+ Rendered application/show.html within layouts/application (0.0ms)
1280
+ Completed 200 OK in 137ms (Views: 136.7ms)
1281
+
1282
+
1283
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1284
+
1285
+
1286
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1287
+
1288
+
1289
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1290
+
1291
+
1292
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1293
+
1294
+
1295
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1296
+
1297
+
1298
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1299
+
1300
+
1301
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1302
+
1303
+
1304
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1305
+
1306
+
1307
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1308
+
1309
+
1310
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1311
+
1312
+
1313
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1314
+
1315
+
1316
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1317
+
1318
+
1319
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1320
+
1321
+
1322
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1323
+
1324
+
1325
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1326
+
1327
+
1328
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:48:48 -0400
1329
+
1330
+
1331
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1332
+ Processing by ApplicationController#show as HTML
1333
+ Rendered application/show.html within layouts/application (0.1ms)
1334
+ Completed 200 OK in 176ms (Views: 176.1ms)
1335
+
1336
+
1337
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1338
+
1339
+
1340
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1341
+
1342
+
1343
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1344
+
1345
+
1346
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1347
+
1348
+
1349
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1350
+
1351
+
1352
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1353
+
1354
+
1355
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1356
+
1357
+
1358
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1359
+
1360
+
1361
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1362
+
1363
+
1364
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1365
+
1366
+
1367
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1368
+
1369
+
1370
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1371
+
1372
+
1373
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1374
+
1375
+
1376
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1377
+
1378
+
1379
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1380
+
1381
+
1382
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:00 -0400
1383
+
1384
+
1385
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:49:16 -0400
1386
+ Processing by ApplicationController#show as HTML
1387
+ Rendered application/show.html within layouts/application (1.4ms)
1388
+ Completed 200 OK in 1071ms (Views: 1070.2ms)
1389
+
1390
+
1391
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1392
+
1393
+
1394
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1395
+
1396
+
1397
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1398
+
1399
+
1400
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1401
+
1402
+
1403
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1404
+
1405
+
1406
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1407
+
1408
+
1409
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1410
+
1411
+
1412
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1413
+
1414
+
1415
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1416
+
1417
+
1418
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:17 -0400
1419
+
1420
+
1421
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:18 -0400
1422
+
1423
+
1424
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:18 -0400
1425
+
1426
+
1427
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:18 -0400
1428
+
1429
+
1430
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:18 -0400
1431
+
1432
+
1433
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:18 -0400
1434
+
1435
+
1436
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:18 -0400
1437
+
1438
+
1439
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1440
+ Processing by ApplicationController#show as HTML
1441
+ Rendered application/show.html within layouts/application (0.0ms)
1442
+ Completed 200 OK in 187ms (Views: 186.9ms)
1443
+
1444
+
1445
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1446
+
1447
+
1448
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1449
+
1450
+
1451
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1452
+
1453
+
1454
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1455
+
1456
+
1457
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1458
+
1459
+
1460
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1461
+
1462
+
1463
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1464
+
1465
+
1466
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1467
+
1468
+
1469
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1470
+
1471
+
1472
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1473
+
1474
+
1475
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1476
+
1477
+
1478
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1479
+
1480
+
1481
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1482
+
1483
+
1484
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1485
+
1486
+
1487
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1488
+
1489
+
1490
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:49:48 -0400
1491
+
1492
+
1493
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:51:18 -0400
1494
+ Processing by ApplicationController#show as HTML
1495
+ Rendered application/show.html within layouts/application (0.0ms)
1496
+ Completed 200 OK in 130ms (Views: 129.9ms)
1497
+
1498
+
1499
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1500
+
1501
+
1502
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1503
+
1504
+
1505
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1506
+
1507
+
1508
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1509
+
1510
+
1511
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1512
+
1513
+
1514
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1515
+
1516
+
1517
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1518
+
1519
+
1520
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1521
+
1522
+
1523
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1524
+
1525
+
1526
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1527
+
1528
+
1529
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1530
+
1531
+
1532
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1533
+
1534
+
1535
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1536
+
1537
+
1538
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:19 -0400
1539
+
1540
+
1541
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:22 -0400
1542
+
1543
+
1544
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:51:22 -0400
1545
+
1546
+
1547
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:54:36 -0400
1548
+ Processing by ApplicationController#show as HTML
1549
+ Rendered application/show.html within layouts/application (0.0ms)
1550
+ Completed 200 OK in 278ms (Views: 278.2ms)
1551
+
1552
+
1553
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:54:36 -0400
1554
+ Processing by ApplicationController#show as HTML
1555
+ Rendered application/show.html within layouts/application (0.0ms)
1556
+ Completed 200 OK in 6ms (Views: 5.5ms)
1557
+
1558
+
1559
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:54:36 -0400
1560
+
1561
+
1562
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:36 -0400
1563
+
1564
+
1565
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:36 -0400
1566
+
1567
+
1568
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:36 -0400
1569
+
1570
+
1571
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:36 -0400
1572
+
1573
+
1574
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1575
+
1576
+
1577
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1578
+
1579
+
1580
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1581
+
1582
+
1583
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1584
+
1585
+
1586
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1587
+
1588
+
1589
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1590
+
1591
+
1592
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1593
+
1594
+
1595
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1596
+
1597
+
1598
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1599
+
1600
+
1601
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1602
+
1603
+
1604
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:54:37 -0400
1605
+
1606
+
1607
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:55:09 -0400
1608
+ Processing by ApplicationController#show as HTML
1609
+ Rendered application/show.html within layouts/application (0.1ms)
1610
+ Completed 200 OK in 261ms (Views: 260.4ms)
1611
+
1612
+
1613
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1614
+ Processing by ApplicationController#show as HTML
1615
+ Rendered application/show.html within layouts/application (0.0ms)
1616
+ Completed 200 OK in 5ms (Views: 5.2ms)
1617
+
1618
+
1619
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1620
+
1621
+
1622
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1623
+
1624
+
1625
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1626
+
1627
+
1628
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1629
+
1630
+
1631
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1632
+
1633
+
1634
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1635
+
1636
+
1637
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1638
+
1639
+
1640
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1641
+
1642
+
1643
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1644
+
1645
+
1646
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1647
+
1648
+
1649
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1650
+
1651
+
1652
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1653
+
1654
+
1655
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1656
+
1657
+
1658
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:10 -0400
1659
+
1660
+
1661
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:51 -0400
1662
+
1663
+
1664
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:55:51 -0400
1665
+
1666
+
1667
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1668
+ Processing by ApplicationController#show as HTML
1669
+ Rendered application/show.html within layouts/application (0.0ms)
1670
+ Completed 200 OK in 285ms (Views: 284.8ms)
1671
+
1672
+
1673
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1674
+
1675
+
1676
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1677
+
1678
+
1679
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1680
+
1681
+
1682
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1683
+
1684
+
1685
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1686
+
1687
+
1688
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1689
+
1690
+
1691
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1692
+
1693
+
1694
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1695
+
1696
+
1697
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1698
+
1699
+
1700
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1701
+
1702
+
1703
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1704
+
1705
+
1706
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1707
+
1708
+
1709
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1710
+
1711
+
1712
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1713
+
1714
+
1715
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1716
+
1717
+
1718
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:22 -0400
1719
+
1720
+
1721
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:56:58 -0400
1722
+
1723
+
1724
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:36 -0400
1725
+
1726
+
1727
+ Started GET "/" for 127.0.0.1 at 2013-10-28 17:58:38 -0400
1728
+ Processing by ApplicationController#show as HTML
1729
+ Rendered application/show.html within layouts/application (0.0ms)
1730
+ Completed 200 OK in 264ms (Views: 263.4ms)
1731
+
1732
+
1733
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1734
+
1735
+
1736
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1737
+
1738
+
1739
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1740
+
1741
+
1742
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1743
+
1744
+
1745
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1746
+
1747
+
1748
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1749
+
1750
+
1751
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1752
+
1753
+
1754
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1755
+
1756
+
1757
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1758
+
1759
+
1760
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1761
+
1762
+
1763
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1764
+
1765
+
1766
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1767
+
1768
+
1769
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1770
+
1771
+
1772
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:58:39 -0400
1773
+
1774
+
1775
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 17:59:13 -0400
1776
+
1777
+
1778
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 17:59:13 -0400
1779
+
1780
+
1781
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:02:31 -0400
1782
+ Processing by ApplicationController#show as HTML
1783
+ Rendered application/show.html within layouts/application (0.0ms)
1784
+ Completed 200 OK in 414ms (Views: 413.4ms)
1785
+
1786
+
1787
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1788
+
1789
+
1790
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1791
+
1792
+
1793
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1794
+
1795
+
1796
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1797
+
1798
+
1799
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1800
+
1801
+
1802
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1803
+
1804
+
1805
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1806
+
1807
+
1808
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1809
+
1810
+
1811
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1812
+
1813
+
1814
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1815
+
1816
+
1817
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1818
+
1819
+
1820
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1821
+
1822
+
1823
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1824
+
1825
+
1826
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:32 -0400
1827
+
1828
+
1829
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:44 -0400
1830
+
1831
+
1832
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:02:44 -0400
1833
+
1834
+
1835
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:03:18 -0400
1836
+ Processing by ApplicationController#show as HTML
1837
+ Rendered application/show.html within layouts/application (0.1ms)
1838
+ Completed 200 OK in 408ms (Views: 408.1ms)
1839
+
1840
+
1841
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1842
+
1843
+
1844
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1845
+
1846
+
1847
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1848
+
1849
+
1850
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1851
+
1852
+
1853
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1854
+
1855
+
1856
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1857
+
1858
+
1859
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1860
+
1861
+
1862
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1863
+
1864
+
1865
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1866
+
1867
+
1868
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1869
+
1870
+
1871
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1872
+
1873
+
1874
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1875
+
1876
+
1877
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1878
+
1879
+
1880
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:19 -0400
1881
+
1882
+
1883
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:22 -0400
1884
+
1885
+
1886
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:03:22 -0400
1887
+
1888
+
1889
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:05:00 -0400
1890
+ Processing by ApplicationController#show as HTML
1891
+ Rendered application/show.html within layouts/application (0.1ms)
1892
+ Completed 500 Internal Server Error in 145ms
1893
+
1894
+ ActionView::Template::Error (couldn't find file 'router'
1895
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:6)):
1896
+ 3: <head>
1897
+ 4: <title>Dummy</title>
1898
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
1899
+ 6: <%= javascript_include_tag "application" %>
1900
+ 7: <%= csrf_meta_tags %>
1901
+ 8: </head>
1902
+ 9: <body>
1903
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__3394678353757781089_70203546058240'
1904
+
1905
+
1906
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1907
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1908
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.9ms)
1909
+
1910
+
1911
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:05:14 -0400
1912
+ Processing by ApplicationController#show as HTML
1913
+ Rendered application/show.html within layouts/application (0.2ms)
1914
+ Completed 200 OK in 667ms (Views: 666.3ms)
1915
+
1916
+
1917
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1918
+
1919
+
1920
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1921
+
1922
+
1923
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1924
+
1925
+
1926
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1927
+
1928
+
1929
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1930
+
1931
+
1932
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1933
+
1934
+
1935
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1936
+
1937
+
1938
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1939
+
1940
+
1941
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1942
+
1943
+
1944
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1945
+
1946
+
1947
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1948
+
1949
+
1950
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1951
+
1952
+
1953
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1954
+
1955
+
1956
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1957
+
1958
+
1959
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1960
+
1961
+
1962
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:05:15 -0400
1963
+
1964
+
1965
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1966
+ Processing by ApplicationController#show as HTML
1967
+ Rendered application/show.html within layouts/application (0.1ms)
1968
+ Completed 200 OK in 9ms (Views: 8.5ms)
1969
+
1970
+
1971
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1972
+
1973
+
1974
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1975
+
1976
+
1977
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1978
+
1979
+
1980
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1981
+
1982
+
1983
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1984
+
1985
+
1986
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1987
+
1988
+
1989
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1990
+
1991
+
1992
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1993
+
1994
+
1995
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1996
+
1997
+
1998
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
1999
+
2000
+
2001
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
2002
+
2003
+
2004
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
2005
+
2006
+
2007
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
2008
+
2009
+
2010
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
2011
+
2012
+
2013
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
2014
+
2015
+
2016
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:06:39 -0400
2017
+
2018
+
2019
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2020
+ Processing by ApplicationController#show as HTML
2021
+ Rendered application/show.html within layouts/application (0.0ms)
2022
+ Completed 200 OK in 6ms (Views: 5.6ms)
2023
+
2024
+
2025
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2026
+
2027
+
2028
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2029
+
2030
+
2031
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2032
+
2033
+
2034
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2035
+
2036
+
2037
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2038
+
2039
+
2040
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2041
+
2042
+
2043
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2044
+
2045
+
2046
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2047
+
2048
+
2049
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2050
+
2051
+
2052
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2053
+
2054
+
2055
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2056
+
2057
+
2058
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2059
+
2060
+
2061
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2062
+
2063
+
2064
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:26 -0400
2065
+
2066
+
2067
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2068
+
2069
+
2070
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2071
+
2072
+
2073
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2074
+
2075
+
2076
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2077
+
2078
+
2079
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2080
+
2081
+
2082
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2083
+
2084
+
2085
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2086
+
2087
+
2088
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2089
+
2090
+
2091
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2092
+
2093
+
2094
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2095
+
2096
+
2097
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2098
+
2099
+
2100
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:07:27 -0400
2101
+
2102
+
2103
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:08:37 -0400
2104
+ Processing by ApplicationController#show as HTML
2105
+ Rendered application/show.html within layouts/application (0.1ms)
2106
+ Completed 200 OK in 238ms (Views: 237.4ms)
2107
+
2108
+
2109
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2110
+
2111
+
2112
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2113
+
2114
+
2115
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2116
+
2117
+
2118
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2119
+
2120
+
2121
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2122
+
2123
+
2124
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2125
+
2126
+
2127
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2128
+
2129
+
2130
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2131
+
2132
+
2133
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2134
+
2135
+
2136
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2137
+
2138
+
2139
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2140
+
2141
+
2142
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2143
+
2144
+
2145
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2146
+
2147
+
2148
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2149
+
2150
+
2151
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2152
+
2153
+
2154
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:08:38 -0400
2155
+
2156
+
2157
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:09:26 -0400
2158
+ Processing by ApplicationController#show as HTML
2159
+ Rendered application/show.html within layouts/application (0.0ms)
2160
+ Completed 200 OK in 377ms (Views: 377.2ms)
2161
+
2162
+
2163
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2164
+
2165
+
2166
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2167
+
2168
+
2169
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2170
+
2171
+
2172
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2173
+
2174
+
2175
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2176
+
2177
+
2178
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2179
+
2180
+
2181
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2182
+
2183
+
2184
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2185
+
2186
+
2187
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2188
+
2189
+
2190
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2191
+
2192
+
2193
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2194
+
2195
+
2196
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2197
+
2198
+
2199
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2200
+
2201
+
2202
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2203
+
2204
+
2205
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2206
+
2207
+
2208
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:27 -0400
2209
+
2210
+
2211
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2212
+ Processing by ApplicationController#show as HTML
2213
+ Rendered application/show.html within layouts/application (0.0ms)
2214
+ Completed 200 OK in 6ms (Views: 5.4ms)
2215
+
2216
+
2217
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2218
+
2219
+
2220
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2221
+
2222
+
2223
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2224
+
2225
+
2226
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2227
+
2228
+
2229
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2230
+
2231
+
2232
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2233
+
2234
+
2235
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2236
+
2237
+
2238
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2239
+
2240
+
2241
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2242
+
2243
+
2244
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2245
+
2246
+
2247
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2248
+
2249
+
2250
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2251
+
2252
+
2253
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2254
+
2255
+
2256
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2257
+
2258
+
2259
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2260
+
2261
+
2262
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:09:55 -0400
2263
+
2264
+
2265
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:10:17 -0400
2266
+
2267
+
2268
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2269
+ Processing by ApplicationController#show as HTML
2270
+ Rendered application/show.html within layouts/application (0.0ms)
2271
+ Completed 200 OK in 249ms (Views: 248.8ms)
2272
+
2273
+
2274
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2275
+
2276
+
2277
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2278
+
2279
+
2280
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2281
+
2282
+
2283
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2284
+
2285
+
2286
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2287
+
2288
+
2289
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2290
+
2291
+
2292
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2293
+
2294
+
2295
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2296
+
2297
+
2298
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2299
+
2300
+
2301
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2302
+
2303
+
2304
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2305
+
2306
+
2307
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2308
+
2309
+
2310
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2311
+
2312
+
2313
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2314
+
2315
+
2316
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2317
+
2318
+
2319
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:17 -0400
2320
+
2321
+
2322
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2323
+ Processing by ApplicationController#show as HTML
2324
+ Rendered application/show.html within layouts/application (0.0ms)
2325
+ Completed 200 OK in 7ms (Views: 6.6ms)
2326
+
2327
+
2328
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2329
+
2330
+
2331
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2332
+
2333
+
2334
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2335
+
2336
+
2337
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2338
+
2339
+
2340
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2341
+
2342
+
2343
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2344
+
2345
+
2346
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2347
+
2348
+
2349
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2350
+
2351
+
2352
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2353
+
2354
+
2355
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2356
+
2357
+
2358
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2359
+
2360
+
2361
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:35 -0400
2362
+
2363
+
2364
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:36 -0400
2365
+
2366
+
2367
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:36 -0400
2368
+
2369
+
2370
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:36 -0400
2371
+
2372
+
2373
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:11:36 -0400
2374
+
2375
+
2376
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2377
+ Processing by ApplicationController#show as HTML
2378
+ Rendered application/show.html within layouts/application (0.0ms)
2379
+ Completed 200 OK in 6ms (Views: 5.8ms)
2380
+
2381
+
2382
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2383
+
2384
+
2385
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2386
+
2387
+
2388
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2389
+
2390
+
2391
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2392
+
2393
+
2394
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2395
+
2396
+
2397
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2398
+
2399
+
2400
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2401
+
2402
+
2403
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2404
+
2405
+
2406
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2407
+
2408
+
2409
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2410
+
2411
+
2412
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2413
+
2414
+
2415
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:10 -0400
2416
+
2417
+
2418
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:11 -0400
2419
+
2420
+
2421
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:11 -0400
2422
+
2423
+
2424
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:11 -0400
2425
+
2426
+
2427
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:12:11 -0400
2428
+
2429
+
2430
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2431
+ Processing by ApplicationController#show as HTML
2432
+ Rendered application/show.html within layouts/application (0.1ms)
2433
+ Completed 200 OK in 212ms (Views: 211.4ms)
2434
+
2435
+
2436
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2437
+
2438
+
2439
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2440
+
2441
+
2442
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2443
+
2444
+
2445
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2446
+
2447
+
2448
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2449
+
2450
+
2451
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2452
+
2453
+
2454
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2455
+
2456
+
2457
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2458
+
2459
+
2460
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2461
+
2462
+
2463
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2464
+
2465
+
2466
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2467
+
2468
+
2469
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2470
+
2471
+
2472
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2473
+
2474
+
2475
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2476
+
2477
+
2478
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2479
+
2480
+
2481
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:13:43 -0400
2482
+
2483
+
2484
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2485
+ Processing by ApplicationController#show as HTML
2486
+ Rendered application/show.html within layouts/application (0.0ms)
2487
+ Completed 200 OK in 250ms (Views: 250.0ms)
2488
+
2489
+
2490
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2491
+
2492
+
2493
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2494
+
2495
+
2496
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2497
+
2498
+
2499
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2500
+
2501
+
2502
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2503
+
2504
+
2505
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2506
+
2507
+
2508
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2509
+
2510
+
2511
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2512
+
2513
+
2514
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2515
+
2516
+
2517
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2518
+
2519
+
2520
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2521
+
2522
+
2523
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2524
+
2525
+
2526
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2527
+
2528
+
2529
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2530
+
2531
+
2532
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2533
+
2534
+
2535
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:16:44 -0400
2536
+
2537
+
2538
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:18:06 -0400
2539
+ Processing by ApplicationController#show as HTML
2540
+ Rendered application/show.html within layouts/application (0.1ms)
2541
+ Completed 200 OK in 285ms (Views: 284.5ms)
2542
+
2543
+
2544
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2545
+
2546
+
2547
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2548
+
2549
+
2550
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2551
+
2552
+
2553
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2554
+
2555
+
2556
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2557
+
2558
+
2559
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2560
+
2561
+
2562
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2563
+
2564
+
2565
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2566
+
2567
+
2568
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2569
+
2570
+
2571
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2572
+
2573
+
2574
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2575
+
2576
+
2577
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:13 -0400
2578
+
2579
+
2580
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:14 -0400
2581
+
2582
+
2583
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:14 -0400
2584
+
2585
+
2586
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:14 -0400
2587
+
2588
+
2589
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:14 -0400
2590
+
2591
+
2592
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:18:15 -0400
2593
+ Processing by ApplicationController#show as HTML
2594
+ Rendered application/show.html within layouts/application (0.0ms)
2595
+ Completed 200 OK in 10ms (Views: 9.5ms)
2596
+
2597
+
2598
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2599
+
2600
+
2601
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2602
+
2603
+
2604
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2605
+
2606
+
2607
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2608
+
2609
+
2610
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2611
+
2612
+
2613
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2614
+
2615
+
2616
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2617
+
2618
+
2619
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2620
+
2621
+
2622
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2623
+
2624
+
2625
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2626
+
2627
+
2628
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2629
+
2630
+
2631
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:20 -0400
2632
+
2633
+
2634
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:21 -0400
2635
+
2636
+
2637
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:21 -0400
2638
+
2639
+
2640
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:21 -0400
2641
+
2642
+
2643
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:21 -0400
2644
+
2645
+
2646
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:18:33 -0400
2647
+ Processing by ApplicationController#show as HTML
2648
+ Rendered application/show.html within layouts/application (0.0ms)
2649
+ Completed 200 OK in 5ms (Views: 5.0ms)
2650
+
2651
+
2652
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2653
+
2654
+
2655
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2656
+
2657
+
2658
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2659
+
2660
+
2661
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2662
+
2663
+
2664
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2665
+
2666
+
2667
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2668
+
2669
+
2670
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2671
+
2672
+
2673
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2674
+
2675
+
2676
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2677
+
2678
+
2679
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2680
+
2681
+
2682
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2683
+
2684
+
2685
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2686
+
2687
+
2688
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2689
+
2690
+
2691
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2692
+
2693
+
2694
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2695
+
2696
+
2697
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:18:34 -0400
2698
+
2699
+
2700
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:21:56 -0400
2701
+ Processing by ApplicationController#show as HTML
2702
+ Rendered application/show.html within layouts/application (0.0ms)
2703
+ Completed 200 OK in 422ms (Views: 421.9ms)
2704
+
2705
+
2706
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2707
+
2708
+
2709
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2710
+
2711
+
2712
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2713
+
2714
+
2715
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2716
+
2717
+
2718
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2719
+
2720
+
2721
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2722
+
2723
+
2724
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2725
+
2726
+
2727
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2728
+
2729
+
2730
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2731
+
2732
+
2733
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2734
+
2735
+
2736
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2737
+
2738
+
2739
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2740
+
2741
+
2742
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2743
+
2744
+
2745
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2746
+
2747
+
2748
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2749
+
2750
+
2751
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:21:57 -0400
2752
+
2753
+
2754
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2755
+ Processing by ApplicationController#show as HTML
2756
+ Rendered application/show.html within layouts/application (0.0ms)
2757
+ Completed 200 OK in 6ms (Views: 6.3ms)
2758
+
2759
+
2760
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2761
+
2762
+
2763
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2764
+
2765
+
2766
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2767
+
2768
+
2769
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2770
+
2771
+
2772
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2773
+
2774
+
2775
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2776
+
2777
+
2778
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2779
+
2780
+
2781
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2782
+
2783
+
2784
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2785
+
2786
+
2787
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2788
+
2789
+
2790
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2791
+
2792
+
2793
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2794
+
2795
+
2796
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2797
+
2798
+
2799
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2800
+
2801
+
2802
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2803
+
2804
+
2805
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:10 -0400
2806
+
2807
+
2808
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2809
+ Processing by ApplicationController#show as HTML
2810
+ Rendered application/show.html within layouts/application (0.0ms)
2811
+ Completed 200 OK in 250ms (Views: 250.1ms)
2812
+
2813
+
2814
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2815
+
2816
+
2817
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2818
+
2819
+
2820
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2821
+
2822
+
2823
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2824
+
2825
+
2826
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2827
+
2828
+
2829
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2830
+
2831
+
2832
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2833
+
2834
+
2835
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2836
+
2837
+
2838
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2839
+
2840
+
2841
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2842
+
2843
+
2844
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2845
+
2846
+
2847
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:41 -0400
2848
+
2849
+
2850
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:42 -0400
2851
+
2852
+
2853
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:42 -0400
2854
+
2855
+
2856
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:42 -0400
2857
+
2858
+
2859
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:22:42 -0400
2860
+
2861
+
2862
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:24:13 -0400
2863
+ Processing by ApplicationController#show as HTML
2864
+ Rendered application/show.html within layouts/application (0.1ms)
2865
+ Completed 200 OK in 259ms (Views: 259.3ms)
2866
+
2867
+
2868
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:24:13 -0400
2869
+
2870
+
2871
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:13 -0400
2872
+
2873
+
2874
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:13 -0400
2875
+
2876
+
2877
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:13 -0400
2878
+
2879
+
2880
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:13 -0400
2881
+
2882
+
2883
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:13 -0400
2884
+
2885
+
2886
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2887
+
2888
+
2889
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2890
+
2891
+
2892
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2893
+
2894
+
2895
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2896
+
2897
+
2898
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2899
+
2900
+
2901
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2902
+
2903
+
2904
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2905
+
2906
+
2907
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2908
+
2909
+
2910
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2911
+
2912
+
2913
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:24:14 -0400
2914
+
2915
+
2916
+ Started GET "/" for 127.0.0.1 at 2013-10-28 18:24:59 -0400
2917
+ Processing by ApplicationController#show as HTML
2918
+ Rendered application/show.html within layouts/application (0.0ms)
2919
+ Completed 200 OK in 380ms (Views: 379.5ms)
2920
+
2921
+
2922
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2923
+
2924
+
2925
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2926
+
2927
+
2928
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2929
+
2930
+
2931
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2932
+
2933
+
2934
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2935
+
2936
+
2937
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2938
+
2939
+
2940
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2941
+
2942
+
2943
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2944
+
2945
+
2946
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2947
+
2948
+
2949
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2950
+
2951
+
2952
+ Started GET "/assets/appkit/router.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2953
+
2954
+
2955
+ Started GET "/assets/appkit/models/person.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2956
+
2957
+
2958
+ Started GET "/assets/appkit/templates/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2959
+
2960
+
2961
+ Started GET "/assets/appkit/templates/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:25:00 -0400
2962
+
2963
+
2964
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-28 18:33:10 -0400
2965
+
2966
+
2967
+ Started GET "/assets/appkit/routes/index.js?body=1" for 127.0.0.1 at 2013-10-28 18:33:10 -0400
2968
+
2969
+
2970
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:02:22 -0400
2971
+ Processing by ApplicationController#show as HTML
2972
+ Rendered application/show.html within layouts/application (1.5ms)
2973
+ Completed 500 Internal Server Error in 85ms
2974
+
2975
+ ActionView::Template::Error (couldn't find file 'appkit/router'
2976
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:6)):
2977
+ 3: <head>
2978
+ 4: <title>Dummy</title>
2979
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
2980
+ 6: <%= javascript_include_tag "application" %>
2981
+ 7: <%= csrf_meta_tags %>
2982
+ 8: </head>
2983
+ 9: <body>
2984
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2878533605654092640_70281461820540'
2985
+
2986
+
2987
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
2988
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.3ms)
2989
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.6ms)
2990
+
2991
+
2992
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:02:55 -0400
2993
+ Processing by ApplicationController#show as HTML
2994
+ Rendered application/show.html within layouts/application (0.1ms)
2995
+ Completed 200 OK in 341ms (Views: 341.1ms)
2996
+
2997
+
2998
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
2999
+
3000
+
3001
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3002
+
3003
+
3004
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3005
+
3006
+
3007
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3008
+
3009
+
3010
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3011
+
3012
+
3013
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3014
+
3015
+
3016
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3017
+
3018
+
3019
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3020
+
3021
+
3022
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3023
+
3024
+
3025
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3026
+
3027
+
3028
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3029
+
3030
+
3031
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3032
+
3033
+
3034
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3035
+
3036
+
3037
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3038
+
3039
+
3040
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3041
+
3042
+
3043
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:02:56 -0400
3044
+
3045
+
3046
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:03:01 -0400
3047
+
3048
+
3049
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:03:23 -0400
3050
+
3051
+
3052
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:04:40 -0400
3053
+ Processing by ApplicationController#show as HTML
3054
+ Rendered application/show.html within layouts/application (1.0ms)
3055
+ Completed 200 OK in 1049ms (Views: 1049.0ms)
3056
+
3057
+
3058
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:04:44 -0400
3059
+
3060
+
3061
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:04:57 -0400
3062
+
3063
+
3064
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:05:06 -0400
3065
+
3066
+
3067
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:05:30 -0400
3068
+
3069
+
3070
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3071
+ Processing by ApplicationController#show as HTML
3072
+ Rendered application/show.html within layouts/application (0.9ms)
3073
+ Completed 200 OK in 187ms (Views: 186.6ms)
3074
+
3075
+
3076
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3077
+
3078
+
3079
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3080
+
3081
+
3082
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3083
+
3084
+
3085
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3086
+
3087
+
3088
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3089
+
3090
+
3091
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3092
+
3093
+
3094
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3095
+
3096
+
3097
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3098
+
3099
+
3100
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3101
+
3102
+
3103
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3104
+
3105
+
3106
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3107
+
3108
+
3109
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3110
+
3111
+
3112
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3113
+
3114
+
3115
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:19 -0400
3116
+
3117
+
3118
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:20 -0400
3119
+
3120
+
3121
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:20 -0400
3122
+
3123
+
3124
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:20 -0400
3125
+
3126
+
3127
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:20 -0400
3128
+
3129
+
3130
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:20 -0400
3131
+
3132
+
3133
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:20 -0400
3134
+
3135
+
3136
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:20 -0400
3137
+
3138
+
3139
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:38 -0400
3140
+
3141
+
3142
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:15:49 -0400
3143
+
3144
+
3145
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:16:03 -0400
3146
+ Processing by ApplicationController#show as HTML
3147
+ Rendered application/show.html within layouts/application (0.9ms)
3148
+ Completed 200 OK in 1067ms (Views: 1066.7ms)
3149
+
3150
+
3151
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3152
+
3153
+
3154
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3155
+
3156
+
3157
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3158
+
3159
+
3160
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3161
+
3162
+
3163
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3164
+
3165
+
3166
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3167
+
3168
+
3169
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3170
+
3171
+
3172
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3173
+
3174
+
3175
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3176
+
3177
+
3178
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3179
+
3180
+
3181
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3182
+
3183
+
3184
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3185
+
3186
+
3187
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3188
+
3189
+
3190
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:04 -0400
3191
+
3192
+
3193
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:07 -0400
3194
+
3195
+
3196
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:07 -0400
3197
+
3198
+
3199
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:12 -0400
3200
+
3201
+
3202
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:16:40 -0400
3203
+ Processing by ApplicationController#show as HTML
3204
+ Rendered application/show.html within layouts/application (0.8ms)
3205
+ Completed 200 OK in 1066ms (Views: 1065.5ms)
3206
+
3207
+
3208
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3209
+
3210
+
3211
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3212
+
3213
+
3214
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3215
+
3216
+
3217
+ Started GET "/assets/ember-app_kit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3218
+
3219
+
3220
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3221
+
3222
+
3223
+ Started GET "/assets/ember-app_kit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3224
+
3225
+
3226
+ Started GET "/assets/ember-app_kit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3227
+
3228
+
3229
+ Started GET "/assets/ember-app_kit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:41 -0400
3230
+
3231
+
3232
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:42 -0400
3233
+
3234
+
3235
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:42 -0400
3236
+
3237
+
3238
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:42 -0400
3239
+
3240
+
3241
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:42 -0400
3242
+
3243
+
3244
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:42 -0400
3245
+
3246
+
3247
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:42 -0400
3248
+
3249
+
3250
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:44 -0400
3251
+
3252
+
3253
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:44 -0400
3254
+
3255
+
3256
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:16:48 -0400
3257
+
3258
+
3259
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:21:00 -0400
3260
+ Processing by ApplicationController#show as HTML
3261
+ Rendered application/show.html within layouts/application (0.9ms)
3262
+ Completed 200 OK in 1084ms (Views: 1083.5ms)
3263
+
3264
+
3265
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3266
+
3267
+
3268
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3269
+
3270
+
3271
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3272
+
3273
+
3274
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3275
+
3276
+
3277
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3278
+
3279
+
3280
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3281
+
3282
+
3283
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3284
+
3285
+
3286
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3287
+
3288
+
3289
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3290
+
3291
+
3292
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3293
+
3294
+
3295
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3296
+
3297
+
3298
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3299
+
3300
+
3301
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3302
+
3303
+
3304
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3305
+
3306
+
3307
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3308
+
3309
+
3310
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:21:02 -0400
3311
+
3312
+
3313
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:21:59 -0400
3314
+ Processing by ApplicationController#show as HTML
3315
+ Rendered application/show.html within layouts/application (0.9ms)
3316
+ Completed 200 OK in 372ms (Views: 372.0ms)
3317
+
3318
+
3319
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3320
+
3321
+
3322
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3323
+
3324
+
3325
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3326
+
3327
+
3328
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3329
+
3330
+
3331
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3332
+
3333
+
3334
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3335
+
3336
+
3337
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3338
+
3339
+
3340
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3341
+
3342
+
3343
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3344
+
3345
+
3346
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3347
+
3348
+
3349
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3350
+
3351
+
3352
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3353
+
3354
+
3355
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3356
+
3357
+
3358
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:00 -0400
3359
+
3360
+
3361
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:03 -0400
3362
+
3363
+
3364
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:22:03 -0400
3365
+
3366
+
3367
+ Started GET "/" for 127.0.0.1 at 2013-10-29 01:33:08 -0400
3368
+ Processing by ApplicationController#show as HTML
3369
+ Rendered application/show.html within layouts/application (0.0ms)
3370
+ Completed 200 OK in 266ms (Views: 266.0ms)
3371
+
3372
+
3373
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3374
+
3375
+
3376
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3377
+
3378
+
3379
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3380
+
3381
+
3382
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3383
+
3384
+
3385
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3386
+
3387
+
3388
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3389
+
3390
+
3391
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3392
+
3393
+
3394
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3395
+
3396
+
3397
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3398
+
3399
+
3400
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3401
+
3402
+
3403
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3404
+
3405
+
3406
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3407
+
3408
+
3409
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3410
+
3411
+
3412
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3413
+
3414
+
3415
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3416
+
3417
+
3418
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 01:33:09 -0400
3419
+
3420
+
3421
+ Started GET "/" for 127.0.0.1 at 2013-10-29 09:00:48 -0400
3422
+ Processing by ApplicationController#show as HTML
3423
+ Rendered application/show.html within layouts/application (1.3ms)
3424
+ Completed 500 Internal Server Error in 36ms
3425
+
3426
+ ActionView::Template::Error (couldn't find file 'app'
3427
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:4)):
3428
+ 3: <head>
3429
+ 4: <title>Dummy</title>
3430
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
3431
+ 6: <%= javascript_include_tag "application" %>
3432
+ 7: <%= csrf_meta_tags %>
3433
+ 8: </head>
3434
+ 9: <body>
3435
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4166502415211137996_70302908394940'
3436
+
3437
+
3438
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (28.4ms)
3439
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.1ms)
3440
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (53.8ms)
3441
+
3442
+
3443
+ Started GET "/" for 127.0.0.1 at 2013-10-29 09:01:50 -0400
3444
+ Processing by ApplicationController#show as HTML
3445
+ Rendered application/show.html within layouts/application (1.1ms)
3446
+ Completed 200 OK in 1190ms (Views: 1190.0ms)
3447
+
3448
+
3449
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3450
+
3451
+
3452
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3453
+
3454
+
3455
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3456
+
3457
+
3458
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3459
+
3460
+
3461
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3462
+
3463
+
3464
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3465
+
3466
+
3467
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3468
+
3469
+
3470
+ Started GET "/assets/ember-appkit/app.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3471
+
3472
+
3473
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3474
+
3475
+
3476
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3477
+
3478
+
3479
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3480
+
3481
+
3482
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3483
+
3484
+
3485
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3486
+
3487
+
3488
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3489
+
3490
+
3491
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3492
+
3493
+
3494
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 09:01:51 -0400
3495
+
3496
+
3497
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 09:02:03 -0400
3498
+
3499
+
3500
+ Started GET "/assets/ember-appkit/app.js?body=1" for 127.0.0.1 at 2013-10-29 09:02:38 -0400
3501
+
3502
+
3503
+ Started GET "/" for 127.0.0.1 at 2013-10-29 09:03:39 -0400
3504
+ Processing by ApplicationController#show as HTML
3505
+ Rendered application/show.html within layouts/application (0.9ms)
3506
+ Completed 200 OK in 1077ms (Views: 1076.9ms)
3507
+
3508
+
3509
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3510
+
3511
+
3512
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3513
+
3514
+
3515
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3516
+
3517
+
3518
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3519
+
3520
+
3521
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3522
+
3523
+
3524
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3525
+
3526
+
3527
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3528
+
3529
+
3530
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3531
+
3532
+
3533
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3534
+
3535
+
3536
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3537
+
3538
+
3539
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3540
+
3541
+
3542
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3543
+
3544
+
3545
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3546
+
3547
+
3548
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3549
+
3550
+
3551
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3552
+
3553
+
3554
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 09:03:40 -0400
3555
+
3556
+
3557
+ Started GET "/" for 127.0.0.1 at 2013-10-29 09:48:23 -0400
3558
+ Processing by ApplicationController#show as HTML
3559
+ Rendered application/show.html within layouts/application (1.5ms)
3560
+ Completed 200 OK in 532ms (Views: 531.9ms)
3561
+
3562
+
3563
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3564
+
3565
+
3566
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3567
+
3568
+
3569
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3570
+
3571
+
3572
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3573
+
3574
+
3575
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3576
+
3577
+
3578
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3579
+
3580
+
3581
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3582
+
3583
+
3584
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3585
+
3586
+
3587
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3588
+
3589
+
3590
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3591
+
3592
+
3593
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3594
+
3595
+
3596
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3597
+
3598
+
3599
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3600
+
3601
+
3602
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3603
+
3604
+
3605
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3606
+
3607
+
3608
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 09:48:24 -0400
3609
+
3610
+
3611
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 10:07:44 -0400
3612
+
3613
+
3614
+ Started GET "/" for 127.0.0.1 at 2013-10-29 14:18:19 -0400
3615
+ Processing by ApplicationController#show as HTML
3616
+ Rendered application/show.html within layouts/application (5.3ms)
3617
+ Completed 200 OK in 1558ms (Views: 1554.3ms)
3618
+
3619
+
3620
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3621
+
3622
+
3623
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3624
+
3625
+
3626
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3627
+
3628
+
3629
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3630
+
3631
+
3632
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3633
+
3634
+
3635
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3636
+
3637
+
3638
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3639
+
3640
+
3641
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3642
+
3643
+
3644
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3645
+
3646
+
3647
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3648
+
3649
+
3650
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:21 -0400
3651
+
3652
+
3653
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:22 -0400
3654
+
3655
+
3656
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:22 -0400
3657
+
3658
+
3659
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:22 -0400
3660
+
3661
+
3662
+ Started GET "/assets/controllers/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:22 -0400
3663
+
3664
+
3665
+ Started GET "/assets/utils/register-components.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:22 -0400
3666
+
3667
+
3668
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:22 -0400
3669
+
3670
+
3671
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:18:22 -0400
3672
+
3673
+
3674
+ Started GET "/" for 127.0.0.1 at 2013-10-29 14:25:13 -0400
3675
+ Processing by ApplicationController#show as HTML
3676
+ Rendered application/show.html within layouts/application (1.3ms)
3677
+ Completed 500 Internal Server Error in 85ms
3678
+
3679
+ ActionView::Template::Error (require_tree argument must be a directory
3680
+ (in /Users/bcardarella/Dropbox/projects/ember_app_kit-rails/test/dummy/app/assets/javascripts/ember-app.js:7)):
3681
+ 3: <head>
3682
+ 4: <title>Dummy</title>
3683
+ 5: <%= stylesheet_link_tag "application", media: "all" %>
3684
+ 6: <%= javascript_include_tag "application" %>
3685
+ 7: <%= csrf_meta_tags %>
3686
+ 8: </head>
3687
+ 9: <body>
3688
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__422237449975691517_70320858647180'
3689
+
3690
+
3691
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
3692
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.0ms)
3693
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.8ms)
3694
+
3695
+
3696
+ Started GET "/" for 127.0.0.1 at 2013-10-29 14:25:29 -0400
3697
+ Processing by ApplicationController#show as HTML
3698
+ Rendered application/show.html within layouts/application (0.0ms)
3699
+ Completed 200 OK in 264ms (Views: 263.4ms)
3700
+
3701
+
3702
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3703
+
3704
+
3705
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3706
+
3707
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
3708
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3709
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3710
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
3711
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
3712
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3713
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
3714
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
3715
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
3716
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3717
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3718
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3719
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3720
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3721
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3722
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
3723
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
3724
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3725
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3726
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3727
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3728
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3729
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3730
+
3731
+
3732
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
3733
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
3734
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.2ms)
3735
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (51.0ms)
3736
+
3737
+
3738
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3739
+
3740
+
3741
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3742
+
3743
+
3744
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3745
+
3746
+
3747
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3748
+
3749
+
3750
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3751
+
3752
+
3753
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3754
+
3755
+
3756
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3757
+
3758
+
3759
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3760
+
3761
+
3762
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3763
+
3764
+
3765
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3766
+
3767
+
3768
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3769
+
3770
+
3771
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3772
+
3773
+
3774
+ Started GET "/assets/controllers/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3775
+
3776
+
3777
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3778
+
3779
+
3780
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:25:30 -0400
3781
+
3782
+
3783
+ Started GET "/" for 127.0.0.1 at 2013-10-29 14:47:28 -0400
3784
+ Processing by ApplicationController#show as HTML
3785
+ Rendered application/show.html within layouts/application (1.0ms)
3786
+ Completed 200 OK in 1303ms (Views: 1302.4ms)
3787
+
3788
+
3789
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3790
+
3791
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
3792
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3793
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3794
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
3795
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
3796
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3797
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
3798
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
3799
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
3800
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3801
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3802
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3803
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3804
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3805
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3806
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
3807
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
3808
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3809
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3810
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3811
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3812
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3813
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3814
+
3815
+
3816
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
3817
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
3818
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms)
3819
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.0ms)
3820
+
3821
+
3822
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3823
+
3824
+
3825
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3826
+
3827
+
3828
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3829
+
3830
+
3831
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3832
+
3833
+
3834
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3835
+
3836
+
3837
+ Started GET "/assets/ember-appkit/register_components.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3838
+
3839
+
3840
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3841
+
3842
+
3843
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3844
+
3845
+
3846
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3847
+
3848
+
3849
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3850
+
3851
+
3852
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3853
+
3854
+
3855
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3856
+
3857
+
3858
+ Started GET "/assets/templates/components/my-component.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3859
+
3860
+
3861
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3862
+
3863
+
3864
+ Started GET "/assets/controllers/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3865
+
3866
+
3867
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3868
+
3869
+
3870
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 14:47:30 -0400
3871
+
3872
+
3873
+ Started GET "/" for 127.0.0.1 at 2013-10-29 18:20:05 -0400
3874
+ Processing by ApplicationController#show as HTML
3875
+ Rendered application/show.html within layouts/application (0.9ms)
3876
+ Completed 200 OK in 463ms (Views: 462.3ms)
3877
+
3878
+
3879
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3880
+
3881
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
3882
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3883
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3884
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
3885
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
3886
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3887
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
3888
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
3889
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
3890
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3891
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3892
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3893
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3894
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3895
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3896
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
3897
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
3898
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3899
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3900
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3901
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3902
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3903
+ /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3904
+
3905
+
3906
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
3907
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
3908
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.8ms)
3909
+ Rendered /Users/bcardarella/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.0ms)
3910
+
3911
+
3912
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3913
+
3914
+
3915
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3916
+
3917
+
3918
+ Started GET "/assets/ember-appkit/almond.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3919
+
3920
+
3921
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3922
+
3923
+
3924
+ Started GET "/assets/ember-appkit/resolver.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3925
+
3926
+
3927
+ Started GET "/assets/app.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3928
+
3929
+
3930
+ Started GET "/assets/ember-appkit/index.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3931
+
3932
+
3933
+ Started GET "/assets/ember-app.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3934
+
3935
+
3936
+ Started GET "/assets/router.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3937
+
3938
+
3939
+ Started GET "/assets/models/person.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3940
+
3941
+
3942
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3943
+
3944
+
3945
+ Started GET "/assets/templates/components/my-component.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3946
+
3947
+
3948
+ Started GET "/assets/templates/index.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3949
+
3950
+
3951
+ Started GET "/assets/controllers/index.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3952
+
3953
+
3954
+ Started GET "/assets/routes/index.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400
3955
+
3956
+
3957
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-29 18:20:06 -0400