bitsnote-assets 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 (120) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +15 -0
  4. data/Rakefile +32 -0
  5. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  6. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
  7. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  8. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  9. data/app/assets/fonts/ionic/ionicons.eot +0 -0
  10. data/app/assets/fonts/ionic/ionicons.svg +1899 -0
  11. data/app/assets/fonts/ionic/ionicons.ttf +0 -0
  12. data/app/assets/fonts/ionic/ionicons.woff +0 -0
  13. data/app/assets/javascripts/angular/angular-animate.js +1689 -0
  14. data/app/assets/javascripts/angular/angular-animate.min.js +28 -0
  15. data/app/assets/javascripts/angular/angular-cookies.js +206 -0
  16. data/app/assets/javascripts/angular/angular-cookies.min.js +8 -0
  17. data/app/assets/javascripts/angular/angular-loader.js +415 -0
  18. data/app/assets/javascripts/angular/angular-loader.min.js +9 -0
  19. data/app/assets/javascripts/angular/angular-mocks.js +2175 -0
  20. data/app/assets/javascripts/angular/angular-resource.js +621 -0
  21. data/app/assets/javascripts/angular/angular-resource.min.js +13 -0
  22. data/app/assets/javascripts/angular/angular-route.js +925 -0
  23. data/app/assets/javascripts/angular/angular-route.min.js +14 -0
  24. data/app/assets/javascripts/angular/angular-sanitize.js +647 -0
  25. data/app/assets/javascripts/angular/angular-sanitize.min.js +15 -0
  26. data/app/assets/javascripts/angular/angular-scenario.js +33954 -0
  27. data/app/assets/javascripts/angular/angular-touch.js +584 -0
  28. data/app/assets/javascripts/angular/angular-touch.min.js +13 -0
  29. data/app/assets/javascripts/angular/angular.js +21954 -0
  30. data/app/assets/javascripts/angular/angular.min.js +215 -0
  31. data/app/assets/javascripts/angular-ui/angular-ui-router.js +3223 -0
  32. data/app/assets/javascripts/angular-ui/angular-ui-router.min.js +7 -0
  33. data/app/assets/javascripts/bootstrap/bootstrap.js +2114 -0
  34. data/app/assets/javascripts/bootstrap/bootstrap.min.js +6 -0
  35. data/app/assets/javascripts/ionic/ionic-angular.js +8317 -0
  36. data/app/assets/javascripts/ionic/ionic-angular.min.js +17 -0
  37. data/app/assets/javascripts/ionic/ionic.bundle.js +43371 -0
  38. data/app/assets/javascripts/ionic/ionic.bundle.min.js +341 -0
  39. data/app/assets/javascripts/ionic/ionic.js +7850 -0
  40. data/app/assets/javascripts/ionic/ionic.min.js +17 -0
  41. data/app/assets/javascripts/jquery-ui/jquery-ui.js +16375 -0
  42. data/app/assets/javascripts/jquery-ui/jquery-ui.min.js +13 -0
  43. data/app/assets/stylesheets/angular/angular-csp.css +24 -0
  44. data/app/assets/stylesheets/bootstrap/bootstrap-theme.css +442 -0
  45. data/app/assets/stylesheets/bootstrap/bootstrap-theme.min.css +5 -0
  46. data/app/assets/stylesheets/bootstrap/bootstrap.css +6203 -0
  47. data/app/assets/stylesheets/bootstrap/bootstrap.min.css +5 -0
  48. data/app/assets/stylesheets/ionic/ionic.css +7651 -0
  49. data/app/assets/stylesheets/ionic/ionic.min.css +18 -0
  50. data/lib/bitsnote-assets/version.rb +3 -0
  51. data/lib/bitsnote-assets.rb +101 -0
  52. data/lib/tasks/bitsnote-assets_tasks.rake +4 -0
  53. data/test/bitsnote_assets_test.rb +7 -0
  54. data/test/dummy/README.rdoc +28 -0
  55. data/test/dummy/Rakefile +6 -0
  56. data/test/dummy/app/assets/javascripts/application.js +13 -0
  57. data/test/dummy/app/assets/javascripts/main.js +2 -0
  58. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  59. data/test/dummy/app/assets/stylesheets/main.css +4 -0
  60. data/test/dummy/app/controllers/application_controller.rb +5 -0
  61. data/test/dummy/app/controllers/main_controller.rb +4 -0
  62. data/test/dummy/app/helpers/application_helper.rb +2 -0
  63. data/test/dummy/app/helpers/main_helper.rb +2 -0
  64. data/test/dummy/app/views/layouts/application.html.erb +18 -0
  65. data/test/dummy/app/views/main/index.html.erb +2 -0
  66. data/test/dummy/bin/bundle +3 -0
  67. data/test/dummy/bin/rails +4 -0
  68. data/test/dummy/bin/rake +4 -0
  69. data/test/dummy/config/application.rb +23 -0
  70. data/test/dummy/config/boot.rb +5 -0
  71. data/test/dummy/config/database.yml +25 -0
  72. data/test/dummy/config/environment.rb +5 -0
  73. data/test/dummy/config/environments/development.rb +37 -0
  74. data/test/dummy/config/environments/production.rb +82 -0
  75. data/test/dummy/config/environments/test.rb +39 -0
  76. data/test/dummy/config/initializers/assets.rb +9 -0
  77. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  78. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  79. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  80. data/test/dummy/config/initializers/inflections.rb +16 -0
  81. data/test/dummy/config/initializers/mime_types.rb +4 -0
  82. data/test/dummy/config/initializers/session_store.rb +3 -0
  83. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  84. data/test/dummy/config/locales/en.yml +23 -0
  85. data/test/dummy/config/routes.rb +58 -0
  86. data/test/dummy/config/secrets.yml +22 -0
  87. data/test/dummy/config.ru +4 -0
  88. data/test/dummy/db/development.sqlite3 +0 -0
  89. data/test/dummy/db/schema.rb +16 -0
  90. data/test/dummy/db/test.sqlite3 +0 -0
  91. data/test/dummy/log/development.log +587 -0
  92. data/test/dummy/public/404.html +67 -0
  93. data/test/dummy/public/422.html +67 -0
  94. data/test/dummy/public/500.html +66 -0
  95. data/test/dummy/public/favicon.ico +0 -0
  96. data/test/dummy/test/controllers/main_controller_test.rb +9 -0
  97. data/test/dummy/test/helpers/main_helper_test.rb +4 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/25fca4643219052b0d5c66cf2c71f72f +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/386e9196dd0f9efdce6f92ce93a6d107 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/3f9170db678c4e1fdfa51752e5ec8e39 +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/489af12e680adec109e506328fdc1368 +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/50b9a4dd63d203039ce5b560ff2c33d7 +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/64f399e2eee4409012ebcc8ea938419a +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/6d98f39010827cad999334e769f03398 +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/91056193051f3741ee35672c43f02cc2 +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/babe75ab5fc2c1762e161e6eaae5c30b +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/bf21891f6ce2dc468abfcb9bb75c6a1e +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/d34631840b4592db0d749b96ab27a620 +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/e36b8fcf5914a3a6bf058abfe7367b19 +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/eb199fcd85e4107f4eb5d71939ea330c +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/ee10c355250f9cd7adb9593445676545 +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/f6eeb33602682bd6ff6d1f177f6b142d +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  119. data/test/test_helper.rb +15 -0
  120. metadata +263 -0
@@ -0,0 +1,39 @@
1
+ Rails.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
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,9 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Precompile additional assets.
7
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
8
+ # Rails.application.config.assets.precompile += %w( search.js )
9
+ Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.js jquery-ui/jquery-ui.min.js angular/angular.min.js angular/angular.js)
@@ -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,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -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,4 @@
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
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.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,58 @@
1
+ Rails.application.routes.draw do
2
+ get 'main/index'
3
+
4
+ # The priority is based upon order of creation: first created -> highest priority.
5
+ # See how all your routes lay out with "rake routes".
6
+
7
+ # You can have the root of your site routed with "root"
8
+ # root 'welcome#index'
9
+
10
+ # Example of regular route:
11
+ # get 'products/:id' => 'catalog#view'
12
+
13
+ # Example of named route that can be invoked with purchase_url(id: product.id)
14
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
15
+
16
+ # Example resource route (maps HTTP verbs to controller actions automatically):
17
+ # resources :products
18
+
19
+ # Example resource route with options:
20
+ # resources :products do
21
+ # member do
22
+ # get 'short'
23
+ # post 'toggle'
24
+ # end
25
+ #
26
+ # collection do
27
+ # get 'sold'
28
+ # end
29
+ # end
30
+
31
+ # Example resource route with sub-resources:
32
+ # resources :products do
33
+ # resources :comments, :sales
34
+ # resource :seller
35
+ # end
36
+
37
+ # Example resource route with more complex sub-resources:
38
+ # resources :products do
39
+ # resources :comments
40
+ # resources :sales do
41
+ # get 'recent', on: :collection
42
+ # end
43
+ # end
44
+
45
+ # Example resource route with concerns:
46
+ # concern :toggleable do
47
+ # post 'toggle'
48
+ # end
49
+ # resources :posts, concerns: :toggleable
50
+ # resources :photos, concerns: :toggleable
51
+
52
+ # Example resource route within a namespace:
53
+ # namespace :admin do
54
+ # # Directs /admin/products/* to Admin::ProductsController
55
+ # # (app/controllers/admin/products_controller.rb)
56
+ # resources :products
57
+ # end
58
+ end
@@ -0,0 +1,22 @@
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 the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 8f4c923e3131cfd9fb74c1f77b2f99231abd42906e011b150319ccb998dcf7ea4e17f2391925a732840242d505279ffd77d6097f6ccf6631c9f9c1a5b22ed991
15
+
16
+ test:
17
+ secret_key_base: 96e7c75aaa202be0257d5d78afc7a89c3ca621d8b7a35fde9bdd559473a5edd8af222933cfdbd424ae739a9f4bbd83bbf74caac664f11b1ea2424144fd9ab967
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
Binary file
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ end
File without changes
@@ -0,0 +1,587 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-08-26 20:50:11 +0800
4
+
5
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
6
+ activerecord (4.1.5) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
7
+ activerecord (4.1.5) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
8
+ activerecord (4.1.5) lib/active_record/connection_handling.rb:50:in `establish_connection'
9
+ activerecord (4.1.5) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
10
+ activesupport (4.1.5) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
11
+ activesupport (4.1.5) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
12
+ activesupport (4.1.5) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
13
+ activesupport (4.1.5) lib/active_support/lazy_load_hooks.rb:44:in `each'
14
+ activesupport (4.1.5) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
15
+ activerecord (4.1.5) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
16
+ activerecord (4.1.5) lib/active_record/base.rb:23:in `<top (required)>'
17
+ activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
18
+ activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
19
+ activerecord (4.1.5) lib/active_record/migration.rb:380:in `call'
20
+ actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21
+ activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks'
22
+ actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23
+ actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
24
+ actionpack (4.1.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
25
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
26
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
27
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
28
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
29
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
30
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
31
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
32
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
33
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
34
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
35
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
36
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
37
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
38
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
39
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
40
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
41
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
42
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
43
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
44
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
45
+ /Users/yjchen/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
46
+ /Users/yjchen/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
47
+ /Users/yjchen/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
48
+
49
+
50
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
51
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
52
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
53
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.9ms)
54
+
55
+
56
+ Started GET "/" for 127.0.0.1 at 2014-08-26 20:51:11 +0800
57
+ Processing by Rails::WelcomeController#index as HTML
58
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/railties-4.1.5/lib/rails/templates/rails/welcome/index.html.erb (1.6ms)
59
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
60
+
61
+
62
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:52:14 +0800
63
+ Processing by MainController#index as HTML
64
+ Rendered main/index.html.erb within layouts/application (1.0ms)
65
+ Completed 200 OK in 61ms (Views: 60.4ms | ActiveRecord: 0.0ms)
66
+
67
+
68
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2014-08-26 20:52:14 +0800
69
+
70
+
71
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2014-08-26 20:52:14 +0800
72
+
73
+
74
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-26 20:52:14 +0800
75
+
76
+
77
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-26 20:52:14 +0800
78
+
79
+
80
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:53:19 +0800
81
+ Processing by MainController#index as HTML
82
+ Rendered main/index.html.erb within layouts/application (0.0ms)
83
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
84
+
85
+
86
+ Started GET "/javascripts/jquery/jquery-ui.js" for 127.0.0.1 at 2014-08-26 20:53:21 +0800
87
+
88
+ ActionController::RoutingError (No route matches [GET] "/javascripts/jquery/jquery-ui.js"):
89
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
90
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
91
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
92
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
93
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
94
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
95
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
96
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
97
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
98
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
99
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
100
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
101
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
102
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
103
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
104
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
105
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
106
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
107
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
108
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
109
+ /Users/yjchen/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
110
+ /Users/yjchen/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
111
+ /Users/yjchen/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
112
+
113
+
114
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
115
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
116
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (32.0ms)
117
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.0ms)
118
+
119
+
120
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:54:22 +0800
121
+ Processing by MainController#index as HTML
122
+ Rendered main/index.html.erb within layouts/application (0.1ms)
123
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
124
+
125
+
126
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:54:24 +0800
127
+ Processing by MainController#index as HTML
128
+ Rendered main/index.html.erb within layouts/application (0.0ms)
129
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
130
+
131
+
132
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:54:34 +0800
133
+ Processing by MainController#index as HTML
134
+ Rendered main/index.html.erb within layouts/application (1.0ms)
135
+ Completed 500 Internal Server Error in 133ms
136
+
137
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.js )` to `config/initializers/assets.rb` and restart your server):
138
+ 4: <title>Dummy</title>
139
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
140
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
141
+ 7: <%= jquery_ui_include_tag 'google' %>
142
+ 8: <%= csrf_meta_tags %>
143
+ 9: </head>
144
+ 10: <body>
145
+ app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__2935211672441221793_2185711260'
146
+
147
+
148
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
149
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.0ms)
150
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (24.1ms)
151
+
152
+
153
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:57:37 +0800
154
+ Processing by MainController#index as HTML
155
+ Rendered main/index.html.erb within layouts/application (1.7ms)
156
+ Completed 200 OK in 38ms (Views: 36.9ms | ActiveRecord: 0.0ms)
157
+
158
+
159
+ Started GET "/assets/jquery-ui/jquery-ui.js?body=1" for 127.0.0.1 at 2014-08-26 20:57:40 +0800
160
+
161
+
162
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:58:14 +0800
163
+ Processing by MainController#index as HTML
164
+ Rendered main/index.html.erb within layouts/application (0.1ms)
165
+ Completed 500 Internal Server Error in 11ms
166
+
167
+ ActionView::Template::Error (undefined local variable or method `name' for #<#<Class:0x000001042d01b8>:0x00000103845d88>):
168
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
169
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
170
+ 7: <%= jquery_ui_include_tag 'google' %>
171
+ 8: <%= jquery_ui_include_tag 'google', :force => true %>
172
+ 9: <%= csrf_meta_tags %>
173
+ 10: </head>
174
+ 11: <body>
175
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1928859488431244492_2170866360'
176
+
177
+
178
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
179
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.2ms)
180
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.7ms)
181
+
182
+
183
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:58:17 +0800
184
+ Processing by MainController#index as HTML
185
+ Rendered main/index.html.erb within layouts/application (0.0ms)
186
+ Completed 500 Internal Server Error in 8ms
187
+
188
+ ActionView::Template::Error (undefined local variable or method `name' for #<#<Class:0x000001042d01b8>:0x00000101789220>):
189
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
190
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
191
+ 7: <%= jquery_ui_include_tag 'google' %>
192
+ 8: <%= jquery_ui_include_tag 'google', :force => true %>
193
+ 9: <%= csrf_meta_tags %>
194
+ 10: </head>
195
+ 11: <body>
196
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1928859488431244492_2170866360'
197
+
198
+
199
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
200
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
201
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.3ms)
202
+
203
+
204
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:59:11 +0800
205
+ Processing by MainController#index as HTML
206
+ Rendered main/index.html.erb within layouts/application (1.0ms)
207
+ Completed 200 OK in 35ms (Views: 34.8ms | ActiveRecord: 0.0ms)
208
+
209
+
210
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-26 20:59:11 +0800
211
+
212
+
213
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2014-08-26 20:59:11 +0800
214
+
215
+
216
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2014-08-26 20:59:11 +0800
217
+
218
+
219
+ Started GET "/assets/jquery-ui/jquery-ui.js?body=1" for 127.0.0.1 at 2014-08-26 20:59:11 +0800
220
+
221
+
222
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-26 20:59:11 +0800
223
+
224
+
225
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 20:59:13 +0800
226
+ Processing by MainController#index as HTML
227
+ Rendered main/index.html.erb within layouts/application (0.0ms)
228
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
229
+
230
+
231
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:00:32 +0800
232
+ Processing by MainController#index as HTML
233
+ Rendered main/index.html.erb within layouts/application (1.0ms)
234
+ Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.0ms)
235
+
236
+
237
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:00:54 +0800
238
+ Processing by MainController#index as HTML
239
+ Rendered main/index.html.erb within layouts/application (1.0ms)
240
+ Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.0ms)
241
+
242
+
243
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:02:10 +0800
244
+ Processing by MainController#index as HTML
245
+ Rendered main/index.html.erb within layouts/application (1.0ms)
246
+ Completed 200 OK in 35ms (Views: 34.5ms | ActiveRecord: 0.0ms)
247
+
248
+
249
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:03:25 +0800
250
+ Processing by MainController#index as HTML
251
+ Rendered main/index.html.erb within layouts/application (1.0ms)
252
+ Completed 500 Internal Server Error in 7ms
253
+
254
+ SyntaxError (/Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting ')'
255
+ ... jquery_ui_include_tag :google', :force => true );@output_bu...
256
+ ... ^
257
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:10: syntax error, unexpected '<', expecting ')'
258
+ </head>
259
+ ^
260
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:15: unknown regexp options - bdy
261
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:16: syntax error, unexpected '<'
262
+ </html>
263
+ ^
264
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:16: unterminated regexp meets end of file):
265
+ app/views/layouts/application.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting ')'
266
+ app/views/layouts/application.html.erb:10: syntax error, unexpected '<', expecting ')'
267
+ app/views/layouts/application.html.erb:15: unknown regexp options - bdy
268
+ app/views/layouts/application.html.erb:16: syntax error, unexpected '<'
269
+ app/views/layouts/application.html.erb:16: unterminated regexp meets end of file
270
+
271
+
272
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
273
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
274
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.9ms)
275
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.2ms)
276
+
277
+
278
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:03:27 +0800
279
+ Processing by MainController#index as HTML
280
+ Rendered main/index.html.erb within layouts/application (0.0ms)
281
+ Completed 500 Internal Server Error in 2ms
282
+
283
+ SyntaxError (/Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting ')'
284
+ ... jquery_ui_include_tag :google', :force => true );@output_bu...
285
+ ... ^
286
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:10: syntax error, unexpected '<', expecting ')'
287
+ </head>
288
+ ^
289
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:15: unknown regexp options - bdy
290
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:16: syntax error, unexpected '<'
291
+ </html>
292
+ ^
293
+ /Users/yjchen/Stack/bitsnote-assets/test/dummy/app/views/layouts/application.html.erb:16: unterminated regexp meets end of file):
294
+ app/views/layouts/application.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting ')'
295
+ app/views/layouts/application.html.erb:10: syntax error, unexpected '<', expecting ')'
296
+ app/views/layouts/application.html.erb:15: unknown regexp options - bdy
297
+ app/views/layouts/application.html.erb:16: syntax error, unexpected '<'
298
+ app/views/layouts/application.html.erb:16: unterminated regexp meets end of file
299
+
300
+
301
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
302
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
303
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
304
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
305
+
306
+
307
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:03:42 +0800
308
+ Processing by MainController#index as HTML
309
+ Rendered main/index.html.erb within layouts/application (0.1ms)
310
+ Completed 200 OK in 27ms (Views: 27.3ms | ActiveRecord: 0.0ms)
311
+
312
+
313
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2014-08-26 21:03:42 +0800
314
+
315
+
316
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-26 21:03:42 +0800
317
+
318
+
319
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-26 21:03:42 +0800
320
+
321
+
322
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2014-08-26 21:03:42 +0800
323
+
324
+
325
+ Started GET "/assets/jquery-ui/jquery-ui.js?body=1" for 127.0.0.1 at 2014-08-26 21:03:42 +0800
326
+
327
+
328
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:03:44 +0800
329
+ Processing by MainController#index as HTML
330
+ Rendered main/index.html.erb within layouts/application (0.1ms)
331
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
332
+
333
+
334
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:04:02 +0800
335
+ Processing by MainController#index as HTML
336
+ Rendered main/index.html.erb within layouts/application (0.0ms)
337
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
338
+
339
+
340
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:10:54 +0800
341
+ Processing by MainController#index as HTML
342
+ Rendered main/index.html.erb within layouts/application (1.0ms)
343
+ Completed 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.0ms)
344
+
345
+
346
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:11:00 +0800
347
+ Processing by MainController#index as HTML
348
+ Rendered main/index.html.erb within layouts/application (0.0ms)
349
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
350
+
351
+
352
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:11:26 +0800
353
+ Processing by MainController#index as HTML
354
+ Rendered main/index.html.erb within layouts/application (0.0ms)
355
+ Completed 500 Internal Server Error in 19ms
356
+
357
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.min.js )` to `config/initializers/assets.rb` and restart your server):
358
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
359
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
360
+ 7: <%= jquery_ui_include_tag :google %>
361
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
362
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
363
+ 10: <%= csrf_meta_tags %>
364
+ 11: </head>
365
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1717700179200720969_2170650960'
366
+
367
+
368
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
369
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
370
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.4ms)
371
+
372
+
373
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:11:52 +0800
374
+ Processing by MainController#index as HTML
375
+ Rendered main/index.html.erb within layouts/application (0.1ms)
376
+ Completed 500 Internal Server Error in 6ms
377
+
378
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.min.js )` to `config/initializers/assets.rb` and restart your server):
379
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
380
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
381
+ 7: <%= jquery_ui_include_tag :google %>
382
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
383
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
384
+ 10: <%= csrf_meta_tags %>
385
+ 11: </head>
386
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1717700179200720969_2170650960'
387
+
388
+
389
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
390
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
391
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.4ms)
392
+
393
+
394
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:12:00 +0800
395
+ Processing by MainController#index as HTML
396
+ Rendered main/index.html.erb within layouts/application (0.0ms)
397
+ Completed 500 Internal Server Error in 4ms
398
+
399
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.min.js )` to `config/initializers/assets.rb` and restart your server):
400
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
401
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
402
+ 7: <%= jquery_ui_include_tag :google %>
403
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
404
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
405
+ 10: <%= csrf_meta_tags %>
406
+ 11: </head>
407
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1717700179200720969_2170650960'
408
+
409
+
410
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
411
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
412
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.6ms)
413
+
414
+
415
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:12:10 +0800
416
+ Processing by MainController#index as HTML
417
+ Rendered main/index.html.erb within layouts/application (0.0ms)
418
+ Completed 500 Internal Server Error in 5ms
419
+
420
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.min.js )` to `config/initializers/assets.rb` and restart your server):
421
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
422
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
423
+ 7: <%= jquery_ui_include_tag :google %>
424
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
425
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
426
+ 10: <%= csrf_meta_tags %>
427
+ 11: </head>
428
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1717700179200720969_2170650960'
429
+
430
+
431
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
432
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
433
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.2ms)
434
+
435
+
436
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:12:18 +0800
437
+ Processing by MainController#index as HTML
438
+ Rendered main/index.html.erb within layouts/application (1.0ms)
439
+ Completed 500 Internal Server Error in 24ms
440
+
441
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.js )` to `config/initializers/assets.rb` and restart your server):
442
+ 4: <title>Dummy</title>
443
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
444
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
445
+ 7: <%= jquery_ui_include_tag :google %>
446
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
447
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
448
+ 10: <%= csrf_meta_tags %>
449
+ app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__3972286105833127931_2172408780'
450
+
451
+
452
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
453
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
454
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.6ms)
455
+
456
+
457
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:12:37 +0800
458
+ Processing by MainController#index as HTML
459
+ Rendered main/index.html.erb within layouts/application (1.0ms)
460
+ Completed 500 Internal Server Error in 28ms
461
+
462
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.min.js )` to `config/initializers/assets.rb` and restart your server):
463
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
464
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
465
+ 7: <%= jquery_ui_include_tag :google %>
466
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
467
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
468
+ 10: <%= csrf_meta_tags %>
469
+ 11: </head>
470
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb___3228560216698295847_2160670540'
471
+
472
+
473
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
474
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
475
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.3ms)
476
+
477
+
478
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:12:52 +0800
479
+ Processing by MainController#index as HTML
480
+ Rendered main/index.html.erb within layouts/application (1.0ms)
481
+ Completed 500 Internal Server Error in 28ms
482
+
483
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( jquery-ui/jquery-ui.min.js )` to `config/initializers/assets.rb` and restart your server):
484
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
485
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
486
+ 7: <%= jquery_ui_include_tag :google %>
487
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
488
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
489
+ 10: <%= csrf_meta_tags %>
490
+ 11: </head>
491
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb___1156550868334827495_2181912360'
492
+
493
+
494
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
495
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms)
496
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.8ms)
497
+
498
+
499
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:13:13 +0800
500
+ Processing by MainController#index as HTML
501
+ Rendered main/index.html.erb within layouts/application (1.0ms)
502
+ Completed 200 OK in 36ms (Views: 36.2ms | ActiveRecord: 0.0ms)
503
+
504
+
505
+ Started GET "/assets/jquery-ui/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-08-26 21:13:13 +0800
506
+
507
+
508
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-26 21:13:13 +0800
509
+
510
+
511
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2014-08-26 21:13:13 +0800
512
+
513
+
514
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-26 21:13:13 +0800
515
+
516
+
517
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2014-08-26 21:13:13 +0800
518
+
519
+
520
+ Started GET "/assets/jquery-ui/jquery-ui.js?body=1" for 127.0.0.1 at 2014-08-26 21:13:13 +0800
521
+
522
+
523
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:13:15 +0800
524
+ Processing by MainController#index as HTML
525
+ Rendered main/index.html.erb within layouts/application (0.0ms)
526
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
527
+
528
+
529
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:13:44 +0800
530
+ Processing by MainController#index as HTML
531
+ Rendered main/index.html.erb within layouts/application (0.0ms)
532
+ Completed 200 OK in 7ms (Views: 7.3ms | ActiveRecord: 0.0ms)
533
+
534
+
535
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:13:49 +0800
536
+ Processing by MainController#index as HTML
537
+ Rendered main/index.html.erb within layouts/application (0.1ms)
538
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
539
+
540
+
541
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:14:07 +0800
542
+ Processing by MainController#index as HTML
543
+ Rendered main/index.html.erb within layouts/application (0.0ms)
544
+ Completed 500 Internal Server Error in 34ms
545
+
546
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( angular/angular.js )` to `config/initializers/assets.rb` and restart your server):
547
+ 7: <%= jquery_ui_include_tag :google %>
548
+ 8: <%= jquery_ui_include_tag :google, :compressed => true %>
549
+ 9: <%= jquery_ui_include_tag :google, :force => true, :local_copy => true %>
550
+ 10: <%= angular_js_include_tag :google, :force => true, :local_copy => true %>
551
+ 11: <%= csrf_meta_tags %>
552
+ 12: </head>
553
+ 13: <body>
554
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___1705855809999139839_2173143500'
555
+
556
+
557
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
558
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
559
+ Rendered /Users/yjchen/.rvm/gems/ruby-2.1.1@rails41/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.1ms)
560
+
561
+
562
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:14:26 +0800
563
+ Processing by MainController#index as HTML
564
+ Rendered main/index.html.erb within layouts/application (1.1ms)
565
+ Completed 200 OK in 43ms (Views: 43.2ms | ActiveRecord: 0.0ms)
566
+
567
+
568
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:15:06 +0800
569
+ Processing by MainController#index as HTML
570
+ Rendered main/index.html.erb within layouts/application (0.1ms)
571
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
572
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
573
+  (0.1ms) select sqlite_version(*)
574
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
575
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
576
+
577
+
578
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:18:53 +0800
579
+ Processing by MainController#index as HTML
580
+ Rendered main/index.html.erb within layouts/application (1.1ms)
581
+ Completed 200 OK in 215ms (Views: 215.2ms | ActiveRecord: 0.0ms)
582
+
583
+
584
+ Started GET "/main/index" for 127.0.0.1 at 2014-08-26 21:18:54 +0800
585
+ Processing by MainController#index as HTML
586
+ Rendered main/index.html.erb within layouts/application (0.0ms)
587
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)