iced-rails 0.1 → 0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +10 -0
  3. data/iced-rails.gemspec +4 -1
  4. data/lib/iced/rails/version.rb +1 -1
  5. data/spec/application_spec.rb +9 -0
  6. data/spec/dummy/README.rdoc +261 -0
  7. data/spec/dummy/Rakefile +7 -0
  8. data/spec/dummy/app/assets/javascripts/application.iced +10 -0
  9. data/spec/dummy/app/assets/javascripts/example.iced +1 -0
  10. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  11. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  12. data/spec/dummy/app/controllers/dashboard_controller.rb +4 -0
  13. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  14. data/spec/dummy/app/mailers/.gitkeep +0 -0
  15. data/spec/dummy/app/models/.gitkeep +0 -0
  16. data/spec/dummy/app/views/dashboard/index.html.erb +1 -0
  17. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  18. data/spec/dummy/config.ru +4 -0
  19. data/spec/dummy/config/application.rb +59 -0
  20. data/spec/dummy/config/boot.rb +10 -0
  21. data/spec/dummy/config/database.yml +11 -0
  22. data/spec/dummy/config/database.yml.example +11 -0
  23. data/spec/dummy/config/environment.rb +5 -0
  24. data/spec/dummy/config/environments/development.rb +37 -0
  25. data/spec/dummy/config/environments/production.rb +67 -0
  26. data/spec/dummy/config/environments/test.rb +37 -0
  27. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/spec/dummy/config/initializers/inflections.rb +15 -0
  29. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  30. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  31. data/spec/dummy/config/initializers/session_store.rb +8 -0
  32. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/spec/dummy/config/locales/en.yml +6 -0
  34. data/spec/dummy/config/routes.rb +3 -0
  35. data/spec/dummy/db/development.sqlite3 +0 -0
  36. data/spec/dummy/db/schema.rb +16 -0
  37. data/spec/dummy/db/test.sqlite3 +0 -0
  38. data/spec/dummy/lib/assets/.gitkeep +0 -0
  39. data/spec/dummy/log/.gitkeep +0 -0
  40. data/spec/dummy/log/development.log +388 -0
  41. data/spec/dummy/log/test.log +4 -0
  42. data/spec/dummy/public/404.html +26 -0
  43. data/spec/dummy/public/422.html +26 -0
  44. data/spec/dummy/public/500.html +25 -0
  45. data/spec/dummy/public/favicon.ico +0 -0
  46. data/spec/dummy/script/rails +6 -0
  47. data/spec/iced_spec.rb +79 -0
  48. data/spec/spec_helper.rb +23 -0
  49. metadata +153 -14
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,11 @@
1
+ development:
2
+ adapter: sqlite3
3
+ database: db/development.sqlite3
4
+ pool: 5
5
+ timeout: 5000
6
+
7
+ test:
8
+ adapter: sqlite3
9
+ database: db/test.sqlite3
10
+ pool: 5
11
+ timeout: 5000
@@ -0,0 +1,11 @@
1
+ development:
2
+ adapter: sqlite3
3
+ database: db/development.sqlite3
4
+ pool: 5
5
+ timeout: 5000
6
+
7
+ test:
8
+ adapter: sqlite3
9
+ database: db/test.sqlite3
10
+ pool: 5
11
+ timeout: 5000
@@ -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,37 @@
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
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
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
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
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
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ 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
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
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,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,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,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'be0da64ce2635172e54914948a6cab21225072a83ee3e2a698404e9bb18b681f3b331b8984eea573b1302017459683ad5b01bea43b88833497d5dcd9b37748e5'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,6 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
6
+ restorable: "Click to Dismiss or Show"
@@ -0,0 +1,3 @@
1
+ Dummy::Application.routes.draw do
2
+ root "dashboard#index"
3
+ end
File without changes
@@ -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 to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20121231010454) do
15
+
16
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,388 @@
1
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138)
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:28:18 +0100
5
+ Processing by Rails::WelcomeController#index as HTML
6
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.0.1/lib/rails/templates/rails/welcome/index.html.erb (1.2ms)
7
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
8
+
9
+
10
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:29:24 +0100
11
+ Processing by DashboardController#index as HTML
12
+ Rendered dashboard/index.html.erb within layouts/application (0.2ms)
13
+ Completed 200 OK in 174ms (Views: 173.7ms | ActiveRecord: 0.0ms)
14
+
15
+
16
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:29:24 +0100
17
+
18
+
19
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:29:24 +0100
20
+
21
+
22
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:30:08 +0100
23
+ Processing by DashboardController#index as HTML
24
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
25
+ Completed 200 OK in 128ms (Views: 127.6ms | ActiveRecord: 0.0ms)
26
+
27
+
28
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:30:08 +0100
29
+
30
+
31
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:30:08 +0100
32
+
33
+
34
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:30:10 +0100
35
+ Processing by DashboardController#index as HTML
36
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
37
+ Completed 200 OK in 2ms (Views: 2.4ms | ActiveRecord: 0.0ms)
38
+
39
+
40
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:30:10 +0100
41
+
42
+
43
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:30:10 +0100
44
+
45
+
46
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:30:22 +0100
47
+ Processing by DashboardController#index as HTML
48
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
49
+ Completed 500 Internal Server Error in 14ms
50
+
51
+ ActionView::Template::Error (couldn't find file 'jquery'
52
+ (in /Users/nicolai86/Workspace/rails/iced-rails/spec/dummy/app/assets/javascripts/application.iced:1)):
53
+ 3: <head>
54
+ 4: <title>Dummy</title>
55
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
56
+ 6: <%= javascript_include_tag "application" %>
57
+ 7: <%= csrf_meta_tags %>
58
+ 8: </head>
59
+ 9: <body>
60
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4451018645776762917_70124601196820'
61
+
62
+
63
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
64
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
65
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
66
+
67
+
68
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:31:17 +0100
69
+ Processing by DashboardController#index as HTML
70
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
71
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
72
+
73
+
74
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:31:17 +0100
75
+
76
+
77
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:31:17 +0100
78
+
79
+
80
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:31:22 +0100
81
+ Processing by DashboardController#index as HTML
82
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
83
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
84
+
85
+
86
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:31:22 +0100
87
+
88
+
89
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:31:22 +0100
90
+
91
+
92
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:31:50 +0100
93
+ Processing by DashboardController#index as HTML
94
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
95
+ Completed 200 OK in 132ms (Views: 132.1ms | ActiveRecord: 0.0ms)
96
+
97
+
98
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:31:50 +0100
99
+
100
+
101
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:31:50 +0100
102
+
103
+
104
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:31:50 +0100
105
+ Processing by DashboardController#index as */*
106
+ Rendered dashboard/index.html.erb within layouts/application (0.4ms)
107
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
108
+
109
+
110
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:31:57 +0100
111
+ Processing by DashboardController#index as HTML
112
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
113
+ Completed 200 OK in 122ms (Views: 122.0ms | ActiveRecord: 0.0ms)
114
+
115
+
116
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:31:57 +0100
117
+
118
+
119
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:31:57 +0100
120
+
121
+
122
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:31:57 +0100
123
+ Processing by DashboardController#index as */*
124
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
125
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
126
+
127
+
128
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:09 +0100
129
+ Processing by DashboardController#index as HTML
130
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
131
+ Completed 200 OK in 119ms (Views: 118.4ms | ActiveRecord: 0.0ms)
132
+
133
+
134
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:32:09 +0100
135
+
136
+
137
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:32:09 +0100
138
+
139
+
140
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:09 +0100
141
+ Processing by DashboardController#index as */*
142
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
143
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
144
+
145
+
146
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:10 +0100
147
+ Processing by DashboardController#index as HTML
148
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
149
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
150
+
151
+
152
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:32:10 +0100
153
+
154
+
155
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:32:10 +0100
156
+
157
+
158
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:10 +0100
159
+ Processing by DashboardController#index as */*
160
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
161
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
162
+
163
+
164
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:24 +0100
165
+ Processing by DashboardController#index as HTML
166
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
167
+ Completed 200 OK in 5004ms (Views: 4.0ms | ActiveRecord: 0.0ms)
168
+
169
+
170
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:32:29 +0100
171
+
172
+
173
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:32:29 +0100
174
+
175
+
176
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:29 +0100
177
+ Processing by DashboardController#index as */*
178
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
179
+ Completed 200 OK in 5004ms (Views: 3.4ms | ActiveRecord: 0.0ms)
180
+
181
+
182
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:44 +0100
183
+ Processing by DashboardController#index as HTML
184
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
185
+ Completed 200 OK in 5003ms (Views: 2.6ms | ActiveRecord: 0.0ms)
186
+
187
+
188
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:32:49 +0100
189
+
190
+
191
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:32:49 +0100
192
+
193
+
194
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:32:50 +0100
195
+ Processing by DashboardController#index as */*
196
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
197
+ Completed 200 OK in 5005ms (Views: 4.5ms | ActiveRecord: 0.0ms)
198
+
199
+
200
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:33:01 +0100
201
+ Processing by DashboardController#index as HTML
202
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
203
+ Completed 500 Internal Server Error in 5118ms
204
+
205
+ ActionView::Template::Error (Error: Parse error on line 9: Unexpected ','
206
+ (in /Users/nicolai86/Workspace/rails/iced-rails/spec/dummy/app/assets/javascripts/application.iced)):
207
+ 4: <title>Dummy</title>
208
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
209
+ 6: <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
210
+ 7: <%= javascript_include_tag "application" %>
211
+ 8: <%= csrf_meta_tags %>
212
+ 9: </head>
213
+ 10: <body>
214
+ app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb___4451018645776762917_70124601627140'
215
+
216
+
217
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
218
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
219
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
220
+
221
+
222
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:33:14 +0100
223
+ Processing by DashboardController#index as HTML
224
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
225
+ Completed 200 OK in 5127ms (Views: 126.5ms | ActiveRecord: 0.0ms)
226
+
227
+
228
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:33:19 +0100
229
+
230
+
231
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:33:19 +0100
232
+
233
+
234
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:33:19 +0100
235
+ Processing by DashboardController#index as */*
236
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
237
+ Completed 200 OK in 5004ms (Views: 3.2ms | ActiveRecord: 0.0ms)
238
+
239
+
240
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:33:36 +0100
241
+ Processing by DashboardController#index as HTML
242
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
243
+ Completed 500 Internal Server Error in 5119ms
244
+
245
+ ActionView::Template::Error (TypeError: Object
246
+ c
247
+ b "$"
248
+ b "get"
249
+ b ""http://localhost:3000"" has no method 'toSlot'
250
+ (in /Users/nicolai86/Workspace/rails/iced-rails/spec/dummy/app/assets/javascripts/application.iced)):
251
+ 4: <title>Dummy</title>
252
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
253
+ 6: <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
254
+ 7: <%= javascript_include_tag "application" %>
255
+ 8: <%= csrf_meta_tags %>
256
+ 9: </head>
257
+ 10: <body>
258
+ app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb___4451018645776762917_70124601627140'
259
+
260
+
261
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
262
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
263
+ Rendered /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
264
+
265
+
266
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:34:00 +0100
267
+ Processing by DashboardController#index as HTML
268
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
269
+ Completed 200 OK in 5125ms (Views: 124.0ms | ActiveRecord: 0.0ms)
270
+
271
+
272
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:34:05 +0100
273
+
274
+
275
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:34:05 +0100
276
+
277
+
278
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:34:20 +0100
279
+ Processing by DashboardController#index as HTML
280
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
281
+ Completed 200 OK in 5155ms (Views: 154.2ms | ActiveRecord: 0.0ms)
282
+
283
+
284
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:34:25 +0100
285
+
286
+
287
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:34:25 +0100
288
+
289
+
290
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:34:36 +0100
291
+ Processing by DashboardController#index as HTML
292
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
293
+ Completed 200 OK in 5129ms (Views: 127.8ms | ActiveRecord: 0.0ms)
294
+
295
+
296
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:34:41 +0100
297
+
298
+
299
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:34:41 +0100
300
+
301
+
302
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:34:43 +0100
303
+ Processing by DashboardController#index as HTML
304
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
305
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
306
+
307
+
308
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:34:43 +0100
309
+
310
+
311
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:34:43 +0100
312
+
313
+
314
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:34:44 +0100
315
+ Processing by DashboardController#index as HTML
316
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
317
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
318
+
319
+
320
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:34:44 +0100
321
+
322
+
323
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:34:44 +0100
324
+
325
+
326
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:34:46 +0100
327
+ Processing by DashboardController#index as HTML
328
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
329
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
330
+
331
+
332
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:34:46 +0100
333
+
334
+
335
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:34:46 +0100
336
+
337
+
338
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:34:47 +0100
339
+ Processing by DashboardController#index as HTML
340
+ Rendered dashboard/index.html.erb within layouts/application (0.0ms)
341
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
342
+
343
+
344
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:34:47 +0100
345
+
346
+
347
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:34:47 +0100
348
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138)
349
+
350
+
351
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:36:23 +0100
352
+ Processing by DashboardController#index as HTML
353
+ Rendered dashboard/index.html.erb within layouts/application (0.7ms)
354
+ Completed 200 OK in 139ms (Views: 138.6ms | ActiveRecord: 0.0ms)
355
+
356
+
357
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:36:23 +0100
358
+
359
+
360
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:36:23 +0100
361
+
362
+
363
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:36:25 +0100
364
+ Processing by DashboardController#index as HTML
365
+ Rendered dashboard/index.html.erb within layouts/application (0.1ms)
366
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
367
+
368
+
369
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:36:25 +0100
370
+
371
+
372
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:36:25 +0100
373
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/nicolai86/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138)
374
+
375
+
376
+ Started GET "/" for 127.0.0.1 at 2014-03-11 20:37:57 +0100
377
+ Processing by DashboardController#index as HTML
378
+ Rendered dashboard/index.html.erb within layouts/application (0.8ms)
379
+ Completed 200 OK in 251ms (Views: 250.2ms | ActiveRecord: 0.0ms)
380
+
381
+
382
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-11 20:37:57 +0100
383
+
384
+
385
+ Started GET "/assets/example.js?body=1" for 127.0.0.1 at 2014-03-11 20:37:57 +0100
386
+
387
+
388
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-11 20:37:57 +0100