ads-rails 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -8
  3. data/lib/ads-rails.rb +0 -3
  4. data/lib/ads/rails/version.rb +1 -1
  5. data/test/dummy/README.rdoc +15 -248
  6. data/test/dummy/Rakefile +0 -1
  7. data/test/dummy/app/assets/javascripts/application.js +3 -5
  8. data/test/dummy/app/controllers/application_controller.rb +3 -1
  9. data/test/dummy/bin/bundle +3 -0
  10. data/test/dummy/bin/rails +4 -0
  11. data/test/dummy/bin/rake +4 -0
  12. data/test/dummy/config.ru +1 -1
  13. data/test/dummy/config/application.rb +2 -34
  14. data/test/dummy/config/boot.rb +4 -9
  15. data/test/dummy/config/environment.rb +2 -2
  16. data/test/dummy/config/environments/development.rb +11 -16
  17. data/test/dummy/config/environments/production.rb +40 -30
  18. data/test/dummy/config/environments/test.rb +13 -11
  19. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  20. data/test/dummy/config/initializers/inflections.rb +6 -5
  21. data/test/dummy/config/initializers/secret_token.rb +7 -2
  22. data/test/dummy/config/initializers/session_store.rb +0 -5
  23. data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
  24. data/test/dummy/config/locales/en.yml +20 -2
  25. data/test/dummy/config/routes.rb +23 -25
  26. data/test/dummy/db/development.sqlite3 +0 -0
  27. data/test/dummy/db/schema.rb +16 -0
  28. data/test/dummy/db/test.sqlite3 +0 -0
  29. data/test/dummy/log/development.log +7 -1054
  30. data/test/dummy/log/test.log +11 -56
  31. data/test/dummy/public/404.html +43 -11
  32. data/test/dummy/public/422.html +43 -11
  33. data/test/dummy/public/500.html +43 -11
  34. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  35. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  36. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  37. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  38. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  39. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  40. data/test/test_helper.rb +6 -0
  41. metadata +14 -32
  42. data/test/dummy/script/rails +0 -6
  43. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  44. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  45. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  46. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  47. data/test/dummy/tmp/cache/assets/D9B/E00/sprockets%2Fb66a75bd10bef6da5f16f4fa9113926c +0 -0
  48. data/test/dummy/tmp/cache/assets/DAC/650/sprockets%2Ff8ec2e25f819797cb9a491d0af22ae9b +0 -0
  49. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  50. data/test/dummy/tmp/cache/assets/DEF/100/sprockets%2F8b9d88bfa8f8eed7910469ef2ab8a8c7 +0 -0
  51. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  52. data/test/dummy/tmp/cache/assets/E29/AA0/sprockets%2F6eaab4ab4dbae1b8b5a6f9286aa966d4 +0 -0
  53. data/test/dummy/tmp/cache/assets/test/sprockets/6ee31c758c2207128f3b2fb9f1e7fc1c +0 -0
  54. data/test/dummy/tmp/cache/assets/test/sprockets/78bbdd3d4b68f961ea76c51d172aec6b +0 -0
  55. data/test/dummy/tmp/cache/assets/test/sprockets/c7342e04b6a4ad6af1bb72c5c094c804 +0 -0
  56. data/test/dummy/tmp/cache/assets/test/sprockets/f09692c097713119fa701a4122205808 +0 -0
@@ -1,34 +1,29 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
4
  # In the development environment your application's code is reloaded on
5
5
  # every request. This slows down response time but is perfect for development
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.eager_load = true
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
11
 
12
- # Show full error reports and disable caching
12
+ # Show full error reports and disable caching.
13
13
  config.consider_all_requests_local = true
14
14
  config.action_controller.perform_caching = false
15
15
 
16
- # Don't care if the mailer can't send
16
+ # Don't care if the mailer can't send.
17
17
  config.action_mailer.raise_delivery_errors = false
18
18
 
19
- # Print deprecation notices to the Rails logger
19
+ # Print deprecation notices to the Rails logger.
20
20
  config.active_support.deprecation = :log
21
21
 
22
- # Only use best-standards-support built into browsers
23
- config.action_dispatch.best_standards_support = :builtin
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
24
 
25
- # Log the query plan for queries taking more than this (works
26
- # with SQLite, MySQL, and PostgreSQL)
27
- config.active_record.auto_explain_threshold_in_seconds = 0.5
28
-
29
- # Do not compress assets
30
- config.assets.compress = false
31
-
32
- # Expands the lines which load the assets
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.
33
28
  config.assets.debug = true
34
29
  end
@@ -1,70 +1,80 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
- # Code is not reloaded between requests
4
+ # Code is not reloaded between requests.
5
5
  config.cache_classes = true
6
6
 
7
- # Full error reports are disabled and caching is turned on
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.
8
14
  config.consider_all_requests_local = false
9
15
  config.action_controller.perform_caching = true
10
16
 
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
12
- config.serve_static_assets = false
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
13
21
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.config.eager_load = false
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
16
24
 
17
- # Compress JavaScripts and CSS
18
- config.assets.compress = true
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
19
28
 
20
- # Don't fallback to assets pipeline if a precompiled asset is missed
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
21
30
  config.assets.compile = false
22
31
 
23
- # Generate digests for assets URLs
32
+ # Generate digests for assets URLs.
24
33
  config.assets.digest = true
25
34
 
26
- # Defaults to nil and saved in location specified by config.assets.prefix
27
- # config.assets.manifest = YOUR_PATH
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
28
37
 
29
- # Specifies the header that your server uses for sending files
38
+ # Specifies the header that your server uses for sending files.
30
39
  # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
31
40
  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
32
41
 
33
42
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
34
43
  # config.force_ssl = true
35
44
 
36
- # See everything in the log (default is :info)
37
- # config.log_level = :debug
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
38
47
 
39
- # Prepend all log lines with the following tags
48
+ # Prepend all log lines with the following tags.
40
49
  # config.log_tags = [ :subdomain, :uuid ]
41
50
 
42
- # Use a different logger for distributed setups
51
+ # Use a different logger for distributed setups.
43
52
  # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
44
53
 
45
- # Use a different cache store in production
54
+ # Use a different cache store in production.
46
55
  # config.cache_store = :mem_cache_store
47
56
 
48
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
49
58
  # config.action_controller.asset_host = "http://assets.example.com"
50
59
 
51
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
52
62
  # config.assets.precompile += %w( search.js )
53
63
 
54
- # Disable delivery errors, bad email addresses will be ignored
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.
55
66
  # config.action_mailer.raise_delivery_errors = false
56
67
 
57
- # Enable threaded mode
58
- # config.threadsafe!
59
-
60
68
  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
61
- # the I18n.default_locale when a translation can not be found)
69
+ # the I18n.default_locale when a translation can not be found).
62
70
  config.i18n.fallbacks = true
63
71
 
64
- # Send deprecation notices to registered listeners
72
+ # Send deprecation notices to registered listeners.
65
73
  config.active_support.deprecation = :notify
66
74
 
67
- # Log the query plan for queries taking more than this (works
68
- # with SQLite, MySQL, and PostgreSQL)
69
- # config.active_record.auto_explain_threshold_in_seconds = 0.5
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
70
80
  end
@@ -1,5 +1,5 @@
1
1
  Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
4
  # The test environment is used exclusively to run your application's
5
5
  # test suite. You never need to work with it otherwise. Remember that
@@ -7,28 +7,30 @@ Dummy::Application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
9
 
10
- # 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
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.
15
13
  config.eager_load = false
16
14
 
17
- # Show full error reports and disable caching
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.
18
20
  config.consider_all_requests_local = true
19
21
  config.action_controller.perform_caching = false
20
22
 
21
- # Raise exceptions instead of rendering exception templates
23
+ # Raise exceptions instead of rendering exception templates.
22
24
  config.action_dispatch.show_exceptions = false
23
25
 
24
- # Disable request forgery protection in test environment
25
- config.action_controller.allow_forgery_protection = false
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
26
28
 
27
29
  # Tell Action Mailer not to deliver emails to the real world.
28
30
  # The :test delivery method accumulates sent emails in the
29
31
  # ActionMailer::Base.deliveries array.
30
32
  config.action_mailer.delivery_method = :test
31
33
 
32
- # Print deprecation notices to the stderr
34
+ # Print deprecation notices to the stderr.
33
35
  config.active_support.deprecation = :stderr
34
36
  end
@@ -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]
@@ -1,15 +1,16 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Add new inflection rules using the following format
4
- # (all these examples are active by default):
5
- # ActiveSupport::Inflector.inflections do |inflect|
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|
6
7
  # inflect.plural /^(ox)$/i, '\1en'
7
8
  # inflect.singular /^(ox)en/i, '\1'
8
9
  # inflect.irregular 'person', 'people'
9
10
  # inflect.uncountable %w( fish sheep )
10
11
  # end
11
- #
12
+
12
13
  # These inflection rules are supported but not enabled by default:
13
- # ActiveSupport::Inflector.inflections do |inflect|
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
14
15
  # inflect.acronym 'RESTful'
15
16
  # end
@@ -1,7 +1,12 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Your secret key for verifying the integrity of signed cookies.
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
4
  # If you change this key, all old signed cookies will become invalid!
5
+
5
6
  # Make sure the secret is at least 30 characters and all random,
6
7
  # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = '7bf78955d5de7cd2bce59c9629833b9df43b9bce8d56aaa15b62e1563421e7eba942f2e3c43964113ea00df4fd5931bdd3fc7b7bf9a289e18563c261fe5f3366'
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 = '3761e5818ce76ffc66003c18a54f10ea508328bda385c5de7987bdd89e1bb990ba0545c71a3015102055064b9a6ed06d46424758b3bb60ff243eaea584a5657f'
@@ -1,8 +1,3 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
3
  Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
-
5
- # Use the database for sessions instead of the cookie-based default,
6
- # which shouldn't be used to store highly confidential information
7
- # (create the session table with "rails generate session_migration")
8
- # Dummy::Application.config.session_store :active_record_store
@@ -1,14 +1,14 @@
1
1
  # Be sure to restart your server when you modify this file.
2
- #
2
+
3
3
  # This file contains settings for ActionController::ParamsWrapper which
4
4
  # is enabled by default.
5
5
 
6
6
  # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
7
  ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json]
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
9
  end
10
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
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
@@ -1,5 +1,23 @@
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.
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.
3
21
 
4
22
  en:
5
23
  hello: "Hello world"
@@ -1,22 +1,23 @@
1
1
  Dummy::Application.routes.draw do
2
-
2
+
3
3
  root to: 'pages#index'
4
+
5
+ # The priority is based upon order of creation: first created -> highest priority.
6
+ # See how all your routes lay out with "rake routes".
4
7
 
5
- # The priority is based upon order of creation:
6
- # first created -> highest priority.
8
+ # You can have the root of your site routed with "root"
9
+ # root 'welcome#index'
7
10
 
8
- # Sample of regular route:
9
- # match 'products/:id' => 'catalog#view'
10
- # Keep in mind you can assign values other than :controller and :action
11
+ # Example of regular route:
12
+ # get 'products/:id' => 'catalog#view'
11
13
 
12
- # Sample of named route:
13
- # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
14
- # This route can be invoked with purchase_url(:id => product.id)
14
+ # Example of named route that can be invoked with purchase_url(id: product.id)
15
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
15
16
 
16
- # Sample resource route (maps HTTP verbs to controller actions automatically):
17
+ # Example resource route (maps HTTP verbs to controller actions automatically):
17
18
  # resources :products
18
19
 
19
- # Sample resource route with options:
20
+ # Example resource route with options:
20
21
  # resources :products do
21
22
  # member do
22
23
  # get 'short'
@@ -28,34 +29,31 @@ Dummy::Application.routes.draw do
28
29
  # end
29
30
  # end
30
31
 
31
- # Sample resource route with sub-resources:
32
+ # Example resource route with sub-resources:
32
33
  # resources :products do
33
34
  # resources :comments, :sales
34
35
  # resource :seller
35
36
  # end
36
37
 
37
- # Sample resource route with more complex sub-resources
38
+ # Example resource route with more complex sub-resources:
38
39
  # resources :products do
39
40
  # resources :comments
40
41
  # resources :sales do
41
- # get 'recent', :on => :collection
42
+ # get 'recent', on: :collection
42
43
  # end
43
44
  # end
45
+
46
+ # Example resource route with concerns:
47
+ # concern :toggleable do
48
+ # post 'toggle'
49
+ # end
50
+ # resources :posts, concerns: :toggleable
51
+ # resources :photos, concerns: :toggleable
44
52
 
45
- # Sample resource route within a namespace:
53
+ # Example resource route within a namespace:
46
54
  # namespace :admin do
47
55
  # # Directs /admin/products/* to Admin::ProductsController
48
56
  # # (app/controllers/admin/products_controller.rb)
49
57
  # resources :products
50
58
  # end
51
-
52
- # You can have the root of your site routed with "root"
53
- # just remember to delete public/index.html.
54
- # root :to => 'welcome#index'
55
-
56
- # See how all your routes lay out with "rake routes"
57
-
58
- # This is a legacy wild controller route that's not recommended for RESTful applications.
59
- # Note: This route will make all actions in every controller accessible via GET requests.
60
- # match ':controller(/:action(/:id))(.:format)'
61
59
  end
@@ -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
@@ -1,1054 +1,7 @@
1
- Connecting to database specified by database.yml
2
-
3
-
4
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:56:03 -0300
5
- Processing by StaticsController#home as HTML
6
- Rendered statics/home.html.erb within layouts/application (10.4ms)
7
- Completed 500 Internal Server Error in 64ms
8
-
9
- ActionView::Template::Error (undefined method `env' for Ads::Rails:Module):
10
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
11
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___1958936158276160257_70366564399460'
12
-
13
-
14
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
15
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
16
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.1ms)
17
-
18
-
19
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:56:28 -0300
20
- Processing by StaticsController#home as HTML
21
- Rendered statics/home.html.erb within layouts/application (0.8ms)
22
- Completed 500 Internal Server Error in 3ms
23
-
24
- ActionView::Template::Error (undefined method `env' for Ads::Rails:Module):
25
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
26
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___1958936158276160257_70366564399460'
27
-
28
-
29
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
30
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
31
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
32
-
33
-
34
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:56:30 -0300
35
- Processing by StaticsController#home as HTML
36
- Rendered statics/home.html.erb within layouts/application (0.8ms)
37
- Completed 500 Internal Server Error in 3ms
38
-
39
- ActionView::Template::Error (undefined method `env' for Ads::Rails:Module):
40
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
41
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___1958936158276160257_70366564399460'
42
-
43
-
44
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
45
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
46
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
47
-
48
-
49
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:56:53 -0300
50
- Processing by StaticsController#home as HTML
51
- Rendered statics/home.html.erb within layouts/application (0.7ms)
52
- Completed 500 Internal Server Error in 3ms
53
-
54
- ActionView::Template::Error (undefined method `env' for Ads::Rails:Module):
55
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
56
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___1958936158276160257_70366564399460'
57
-
58
-
59
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
60
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
61
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
62
-
63
-
64
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:57:22 -0300
65
- Processing by StaticsController#home as HTML
66
- Rendered statics/home.html.erb within layouts/application (1.1ms)
67
- Completed 500 Internal Server Error in 3ms
68
-
69
- ActionView::Template::Error (undefined method `env' for Ads::Rails:Module):
70
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
71
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___1958936158276160257_70366564399460'
72
-
73
-
74
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
75
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
76
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms)
77
- Connecting to database specified by database.yml
78
-
79
-
80
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:57:44 -0300
81
- Processing by StaticsController#home as HTML
82
- Rendered statics/home.html.erb within layouts/application (3.0ms)
83
- Compiled application.css (1ms) (pid 50917)
84
- Compiled jquery.js (3ms) (pid 50917)
85
- Compiled jquery_ujs.js (0ms) (pid 50917)
86
- Compiled application.js (88ms) (pid 50917)
87
- Completed 200 OK in 173ms (Views: 172.5ms | ActiveRecord: 0.0ms)
88
-
89
-
90
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 14:57:44 -0300
91
- Served asset /jquery.js - 304 Not Modified (40ms)
92
-
93
-
94
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 14:57:44 -0300
95
- Served asset /application.css - 200 OK (2ms)
96
-
97
-
98
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 14:57:44 -0300
99
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
100
-
101
-
102
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 14:57:44 -0300
103
- Served asset /application.js - 200 OK (5ms)
104
-
105
-
106
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:58:11 -0300
107
- Processing by StaticsController#home as HTML
108
- Rendered statics/home.html.erb within layouts/application (0.1ms)
109
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
110
-
111
-
112
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 14:58:11 -0300
113
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
114
-
115
-
116
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 14:58:11 -0300
117
- Served asset /application.js - 304 Not Modified (0ms)
118
-
119
-
120
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 14:58:11 -0300
121
- Served asset /jquery.js - 304 Not Modified (0ms)
122
-
123
-
124
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 14:58:11 -0300
125
- Served asset /application.css - 304 Not Modified (0ms)
126
-
127
-
128
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:59:02 -0300
129
- Processing by StaticsController#home as HTML
130
- Rendered statics/home.html.erb within layouts/application (0.1ms)
131
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
132
- Connecting to database specified by database.yml
133
-
134
-
135
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:59:11 -0300
136
- Processing by StaticsController#home as HTML
137
- Rendered statics/home.html.erb within layouts/application (12.6ms)
138
- Completed 500 Internal Server Error in 47ms
139
-
140
- ActionView::Template::Error (undefined local variable or method `output' for #<#<Class:0x007fedfa4ca370>:0x007fedfa4cf870>):
141
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
142
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__670168336544101229_70330051732580'
143
-
144
-
145
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
146
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
147
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.3ms)
148
-
149
-
150
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:59:22 -0300
151
- Processing by StaticsController#home as HTML
152
- Rendered statics/home.html.erb within layouts/application (5.4ms)
153
- Completed 500 Internal Server Error in 8ms
154
-
155
- ActionView::Template::Error (undefined local variable or method `output' for #<#<Class:0x007fedfa4ca370>:0x007fedfa75c0c0>):
156
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
157
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__670168336544101229_70330051732580'
158
-
159
-
160
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
161
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
162
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.3ms)
163
-
164
-
165
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:59:48 -0300
166
- Processing by StaticsController#home as HTML
167
- Rendered statics/home.html.erb within layouts/application (5.6ms)
168
- Completed 500 Internal Server Error in 8ms
169
-
170
- ActionView::Template::Error (undefined local variable or method `output' for #<#<Class:0x007fedfa4ca370>:0x007fedfa522598>):
171
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
172
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__670168336544101229_70330051732580'
173
-
174
-
175
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
176
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (23.5ms)
177
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (33.5ms)
178
-
179
-
180
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:59:49 -0300
181
- Processing by StaticsController#home as HTML
182
- Rendered statics/home.html.erb within layouts/application (5.8ms)
183
- Completed 500 Internal Server Error in 8ms
184
-
185
- ActionView::Template::Error (undefined local variable or method `output' for #<#<Class:0x007fedfa4ca370>:0x007fedfbbdf8a8>):
186
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
187
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__670168336544101229_70330051732580'
188
-
189
-
190
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
191
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
192
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.3ms)
193
- Connecting to database specified by database.yml
194
-
195
-
196
- Started GET "/" for 127.0.0.1 at 2013-04-03 14:59:59 -0300
197
- Processing by StaticsController#home as HTML
198
- Rendered statics/home.html.erb within layouts/application (8.7ms)
199
- Completed 500 Internal Server Error in 43ms
200
-
201
- ActionView::Template::Error (undefined method `<<' for nil:NilClass):
202
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
203
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__85094007197810484_70330928552260'
204
-
205
-
206
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
207
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
208
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
209
- Connecting to database specified by database.yml
210
-
211
-
212
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:00:22 -0300
213
- Processing by StaticsController#home as HTML
214
- Rendered statics/home.html.erb within layouts/application (3.4ms)
215
- Completed 200 OK in 53ms (Views: 52.8ms | ActiveRecord: 0.0ms)
216
-
217
-
218
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:00:23 -0300
219
- Served asset /application.css - 304 Not Modified (2ms)
220
-
221
-
222
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:00:23 -0300
223
- Served asset /jquery.js - 304 Not Modified (5ms)
224
-
225
-
226
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:00:23 -0300
227
- Served asset /application.js - 304 Not Modified (9ms)
228
-
229
-
230
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:00:23 -0300
231
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
232
- Connecting to database specified by database.yml
233
-
234
-
235
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:00:56 -0300
236
- Processing by StaticsController#home as HTML
237
- Rendered statics/home.html.erb within layouts/application (3.4ms)
238
- Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.0ms)
239
-
240
-
241
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:00:56 -0300
242
- Served asset /application.css - 304 Not Modified (2ms)
243
-
244
-
245
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:00:56 -0300
246
- Served asset /jquery_ujs.js - 304 Not Modified (3ms)
247
-
248
-
249
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:00:56 -0300
250
- Served asset /jquery.js - 304 Not Modified (3ms)
251
-
252
-
253
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:00:56 -0300
254
- Served asset /application.js - 304 Not Modified (5ms)
255
- Connecting to database specified by database.yml
256
-
257
-
258
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:02:13 -0300
259
- Processing by StaticsController#home as HTML
260
- Rendered statics/home.html.erb within layouts/application (3.3ms)
261
- Completed 200 OK in 31ms (Views: 31.0ms | ActiveRecord: 0.0ms)
262
- Connecting to database specified by database.yml
263
-
264
-
265
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:02:44 -0300
266
- Processing by StaticsController#home as HTML
267
- Rendered statics/home.html.erb within layouts/application (3.4ms)
268
- Completed 200 OK in 54ms (Views: 53.3ms | ActiveRecord: 0.0ms)
269
-
270
-
271
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:02:47 -0300
272
- Processing by StaticsController#home as HTML
273
- Rendered statics/home.html.erb within layouts/application (0.2ms)
274
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
275
- Connecting to database specified by database.yml
276
-
277
-
278
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:03:14 -0300
279
- Processing by StaticsController#home as HTML
280
- Rendered statics/home.html.erb within layouts/application (3.3ms)
281
- Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.0ms)
282
- Connecting to database specified by database.yml
283
-
284
-
285
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:03:49 -0300
286
- Processing by StaticsController#home as HTML
287
- Rendered statics/home.html.erb within layouts/application (3.3ms)
288
- Completed 200 OK in 53ms (Views: 52.6ms | ActiveRecord: 0.0ms)
289
- Connecting to database specified by database.yml
290
-
291
-
292
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:04:21 -0300
293
- Processing by StaticsController#home as HTML
294
- Rendered statics/home.html.erb within layouts/application (3.5ms)
295
- Completed 200 OK in 54ms (Views: 53.8ms | ActiveRecord: 0.0ms)
296
- Connecting to database specified by database.yml
297
-
298
-
299
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:05:43 -0300
300
- Processing by StaticsController#home as HTML
301
- Rendered statics/home.html.erb within layouts/application (3.5ms)
302
- Completed 200 OK in 55ms (Views: 54.2ms | ActiveRecord: 0.0ms)
303
-
304
-
305
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:05:46 -0300
306
- Processing by StaticsController#home as HTML
307
- Rendered statics/home.html.erb within layouts/application (0.2ms)
308
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
309
- Connecting to database specified by database.yml
310
-
311
-
312
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:07:01 -0300
313
- Processing by StaticsController#home as HTML
314
- Rendered statics/home.html.erb within layouts/application (3.4ms)
315
- Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.0ms)
316
- Connecting to database specified by database.yml
317
-
318
-
319
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:07:22 -0300
320
- Processing by StaticsController#home as HTML
321
- Rendered statics/home.html.erb within layouts/application (8.6ms)
322
- Completed 500 Internal Server Error in 42ms
323
-
324
- ActionView::Template::Error (wrong number of arguments (5 for 4)):
325
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
326
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___2920417228567572622_70250653560620'
327
-
328
-
329
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
330
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
331
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.2ms)
332
- Connecting to database specified by database.yml
333
-
334
-
335
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:07:46 -0300
336
- Processing by StaticsController#home as HTML
337
- Rendered statics/home.html.erb within layouts/application (3.4ms)
338
- Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.0ms)
339
-
340
-
341
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:08:06 -0300
342
- Processing by StaticsController#home as HTML
343
- Rendered statics/home.html.erb within layouts/application (0.2ms)
344
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
345
-
346
-
347
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:08:06 -0300
348
- Served asset /jquery.js - 304 Not Modified (11ms)
349
-
350
-
351
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:08:06 -0300
352
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
353
-
354
-
355
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:08:06 -0300
356
- Served asset /application.css - 304 Not Modified (2ms)
357
-
358
-
359
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:08:06 -0300
360
- Served asset /application.js - 304 Not Modified (6ms)
361
- Connecting to database specified by database.yml
362
-
363
-
364
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:08:47 -0300
365
- Processing by StaticsController#home as HTML
366
- Rendered statics/home.html.erb within layouts/application (3.7ms)
367
- Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.0ms)
368
-
369
-
370
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:08:47 -0300
371
- Served asset /jquery.js - 304 Not Modified (3ms)
372
-
373
-
374
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:08:47 -0300
375
- Served asset /application.css - 304 Not Modified (2ms)
376
-
377
-
378
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:08:47 -0300
379
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
380
-
381
-
382
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:08:47 -0300
383
- Served asset /application.js - 304 Not Modified (6ms)
384
- Connecting to database specified by database.yml
385
-
386
-
387
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:09:11 -0300
388
- Processing by StaticsController#home as HTML
389
- Rendered statics/home.html.erb within layouts/application (3.2ms)
390
- Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.0ms)
391
-
392
-
393
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:09:11 -0300
394
- Served asset /application.css - 304 Not Modified (6ms)
395
-
396
-
397
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:09:11 -0300
398
- Served asset /jquery_ujs.js - 304 Not Modified (3ms)
399
-
400
-
401
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:09:11 -0300
402
- Served asset /jquery.js - 304 Not Modified (3ms)
403
-
404
-
405
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:09:11 -0300
406
- Served asset /application.js - 304 Not Modified (6ms)
407
- Connecting to database specified by database.yml
408
-
409
-
410
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:12:09 -0300
411
- Processing by StaticsController#home as HTML
412
- Rendered statics/home.html.erb within layouts/application (3.2ms)
413
- Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms)
414
-
415
-
416
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:12:09 -0300
417
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
418
-
419
-
420
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:12:09 -0300
421
- Served asset /application.css - 304 Not Modified (2ms)
422
-
423
-
424
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:12:09 -0300
425
- Served asset /jquery.js - 304 Not Modified (3ms)
426
-
427
-
428
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:12:09 -0300
429
- Served asset /application.js - 304 Not Modified (6ms)
430
- Connecting to database specified by database.yml
431
-
432
-
433
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:13:21 -0300
434
- Processing by StaticsController#home as HTML
435
- Rendered statics/home.html.erb within layouts/application (3.1ms)
436
- Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.0ms)
437
-
438
-
439
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:13:21 -0300
440
- Served asset /application.css - 304 Not Modified (2ms)
441
-
442
-
443
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:13:21 -0300
444
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
445
-
446
-
447
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:13:21 -0300
448
- Served asset /application.js - 304 Not Modified (6ms)
449
-
450
-
451
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:13:21 -0300
452
- Served asset /jquery.js - 304 Not Modified (28ms)
453
- Connecting to database specified by database.yml
454
-
455
-
456
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:17:37 -0300
457
- Processing by StaticsController#home as HTML
458
- Rendered statics/home.html.erb within layouts/application (13.3ms)
459
- Completed 500 Internal Server Error in 26ms
460
-
461
- ActionView::Template::Error (undefined local variable or method `content' for #<#<Class:0x007fa3036fec28>:0x007fa3036f23d8>):
462
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
463
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__57558523429593912_70169095321700'
464
-
465
-
466
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
467
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
468
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
469
- Connecting to database specified by database.yml
470
-
471
-
472
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:17:56 -0300
473
- Processing by StaticsController#home as HTML
474
- Rendered statics/home.html.erb within layouts/application (3.4ms)
475
- Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
476
-
477
-
478
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:17:56 -0300
479
- Served asset /application.css - 304 Not Modified (2ms)
480
-
481
-
482
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:17:56 -0300
483
- Served asset /jquery.js - 304 Not Modified (6ms)
484
-
485
-
486
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:17:56 -0300
487
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
488
-
489
-
490
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:17:56 -0300
491
- Served asset /application.js - 304 Not Modified (5ms)
492
- Connecting to database specified by database.yml
493
-
494
-
495
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:18:38 -0300
496
- Processing by StaticsController#home as HTML
497
- Rendered statics/home.html.erb within layouts/application (3.1ms)
498
- Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
499
-
500
-
501
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:18:38 -0300
502
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
503
-
504
-
505
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:18:38 -0300
506
- Served asset /application.js - 304 Not Modified (5ms)
507
-
508
-
509
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:18:38 -0300
510
- Served asset /application.css - 304 Not Modified (2ms)
511
-
512
-
513
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:18:38 -0300
514
- Served asset /jquery.js - 304 Not Modified (3ms)
515
- Connecting to database specified by database.yml
516
-
517
-
518
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:18:55 -0300
519
- Processing by StaticsController#home as HTML
520
- Rendered statics/home.html.erb within layouts/application (3.3ms)
521
- Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms)
522
-
523
-
524
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:18:55 -0300
525
- Served asset /application.css - 304 Not Modified (2ms)
526
-
527
-
528
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:18:55 -0300
529
- Served asset /jquery.js - 304 Not Modified (4ms)
530
-
531
-
532
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:18:55 -0300
533
- Served asset /application.js - 304 Not Modified (33ms)
534
-
535
-
536
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:18:55 -0300
537
- Served asset /jquery_ujs.js - 304 Not Modified (4ms)
538
-
539
-
540
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:19:02 -0300
541
- Processing by StaticsController#home as HTML
542
- Rendered statics/home.html.erb within layouts/application (0.3ms)
543
- Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
544
-
545
-
546
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:19:03 -0300
547
- Served asset /application.js - 304 Not Modified (0ms)
548
-
549
-
550
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:19:03 -0300
551
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
552
-
553
-
554
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:19:03 -0300
555
- Served asset /application.css - 304 Not Modified (0ms)
556
-
557
-
558
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:19:03 -0300
559
- Served asset /jquery.js - 304 Not Modified (0ms)
560
- Connecting to database specified by database.yml
561
-
562
-
563
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:19:51 -0300
564
- Processing by StaticsController#home as HTML
565
- Rendered statics/home.html.erb within layouts/application (3.2ms)
566
- Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.0ms)
567
-
568
-
569
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:19:51 -0300
570
- Served asset /application.css - 304 Not Modified (2ms)
571
-
572
-
573
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:19:51 -0300
574
- Served asset /jquery_ujs.js - 304 Not Modified (5ms)
575
-
576
-
577
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:19:51 -0300
578
- Served asset /jquery.js - 304 Not Modified (3ms)
579
-
580
-
581
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:19:51 -0300
582
- Served asset /application.js - 304 Not Modified (32ms)
583
- Connecting to database specified by database.yml
584
-
585
-
586
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:20:05 -0300
587
- Processing by StaticsController#home as HTML
588
- Rendered statics/home.html.erb within layouts/application (3.2ms)
589
- Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms)
590
-
591
-
592
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:20:05 -0300
593
- Served asset /application.css - 304 Not Modified (2ms)
594
-
595
-
596
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:20:05 -0300
597
- Served asset /application.js - 304 Not Modified (6ms)
598
-
599
-
600
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:20:05 -0300
601
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
602
-
603
-
604
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:20:05 -0300
605
- Served asset /jquery.js - 304 Not Modified (25ms)
606
- Connecting to database specified by database.yml
607
-
608
-
609
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:20:27 -0300
610
- Processing by StaticsController#home as HTML
611
- Rendered statics/home.html.erb within layouts/application (3.3ms)
612
- Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
613
- Connecting to database specified by database.yml
614
-
615
-
616
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:21:05 -0300
617
- Processing by StaticsController#home as HTML
618
- Rendered statics/home.html.erb within layouts/application (3.5ms)
619
- Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.0ms)
620
-
621
-
622
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:21:05 -0300
623
- Served asset /jquery.js - 304 Not Modified (9ms)
624
-
625
-
626
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:21:05 -0300
627
- Served asset /application.css - 304 Not Modified (2ms)
628
-
629
-
630
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:21:05 -0300
631
- Served asset /jquery_ujs.js - 304 Not Modified (3ms)
632
-
633
-
634
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:21:05 -0300
635
- Served asset /application.js - 304 Not Modified (6ms)
636
- Connecting to database specified by database.yml
637
-
638
-
639
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:21:44 -0300
640
- Processing by StaticsController#home as HTML
641
- Rendered statics/home.html.erb within layouts/application (3.3ms)
642
- Completed 200 OK in 31ms (Views: 31.0ms | ActiveRecord: 0.0ms)
643
- Connecting to database specified by database.yml
644
-
645
-
646
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:22:01 -0300
647
- Processing by StaticsController#home as HTML
648
- Rendered statics/home.html.erb within layouts/application (3.4ms)
649
- Completed 200 OK in 54ms (Views: 53.4ms | ActiveRecord: 0.0ms)
650
- Connecting to database specified by database.yml
651
-
652
-
653
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:22:47 -0300
654
- Processing by StaticsController#home as HTML
655
- Rendered statics/home.html.erb within layouts/application (3.4ms)
656
- Completed 200 OK in 54ms (Views: 53.2ms | ActiveRecord: 0.0ms)
657
- Connecting to database specified by database.yml
658
-
659
-
660
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:23:04 -0300
661
- Processing by StaticsController#home as HTML
662
- Rendered statics/home.html.erb within layouts/application (3.5ms)
663
- Completed 200 OK in 55ms (Views: 54.3ms | ActiveRecord: 0.0ms)
664
- Connecting to database specified by database.yml
665
-
666
-
667
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:30:44 -0300
668
- Processing by StaticsController#home as HTML
669
- Rendered statics/home.html.erb within layouts/application (3.6ms)
670
- Completed 200 OK in 56ms (Views: 55.9ms | ActiveRecord: 0.0ms)
671
- Connecting to database specified by database.yml
672
-
673
-
674
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:31:02 -0300
675
- Processing by StaticsController#home as HTML
676
- Rendered statics/home.html.erb within layouts/application (3.2ms)
677
- Completed 200 OK in 53ms (Views: 52.2ms | ActiveRecord: 0.0ms)
678
- Connecting to database specified by database.yml
679
-
680
-
681
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:31:31 -0300
682
- Processing by StaticsController#home as HTML
683
- Rendered statics/home.html.erb within layouts/application (3.4ms)
684
- Completed 200 OK in 55ms (Views: 54.5ms | ActiveRecord: 0.0ms)
685
- Connecting to database specified by database.yml
686
-
687
-
688
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:32:40 -0300
689
- Processing by StaticsController#home as HTML
690
- Rendered statics/home.html.erb within layouts/application (8.8ms)
691
- Completed 500 Internal Server Error in 44ms
692
-
693
- ActionView::Template::Error (undefined method `html_safe!' for #<String:0x007f8e1c3fa0a0>):
694
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
695
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___2227350576336022281_70124166088040'
696
-
697
-
698
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
699
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
700
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
701
- Connecting to database specified by database.yml
702
-
703
-
704
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:34:50 -0300
705
- Processing by StaticsController#home as HTML
706
- Rendered statics/home.html.erb within layouts/application (13.2ms)
707
- Completed 500 Internal Server Error in 46ms
708
-
709
- ActionView::Template::Error (undefined local variable or method `confg' for #<#<Class:0x007fd4c3a1fe60>:0x007fd4c3a25360>):
710
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
711
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___1432530806258903626_70275907639260'
712
-
713
-
714
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
715
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
716
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
717
- Connecting to database specified by database.yml
718
-
719
-
720
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:35:05 -0300
721
- Processing by StaticsController#home as HTML
722
- Rendered statics/home.html.erb within layouts/application (3.3ms)
723
- Completed 200 OK in 53ms (Views: 52.1ms | ActiveRecord: 0.0ms)
724
-
725
-
726
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:35:06 -0300
727
- Served asset /application.css - 304 Not Modified (2ms)
728
-
729
-
730
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:35:06 -0300
731
- Served asset /jquery.js - 304 Not Modified (3ms)
732
-
733
-
734
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:35:06 -0300
735
- Served asset /application.js - 304 Not Modified (8ms)
736
-
737
-
738
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:35:06 -0300
739
- Served asset /jquery_ujs.js - 304 Not Modified (3ms)
740
- Connecting to database specified by database.yml
741
-
742
-
743
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:38:52 -0300
744
- Processing by StaticsController#home as HTML
745
- Rendered statics/home.html.erb within layouts/application (3.1ms)
746
- Completed 200 OK in 54ms (Views: 53.2ms | ActiveRecord: 0.0ms)
747
- Connecting to database specified by database.yml
748
-
749
-
750
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:41:44 -0300
751
- Processing by StaticsController#home as HTML
752
- Rendered statics/home.html.erb within layouts/application (3.5ms)
753
- Completed 200 OK in 55ms (Views: 54.1ms | ActiveRecord: 0.0ms)
754
- Connecting to database specified by database.yml
755
-
756
-
757
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:42:15 -0300
758
- Processing by StaticsController#home as HTML
759
- Rendered statics/home.html.erb within layouts/application (3.4ms)
760
- Completed 200 OK in 53ms (Views: 53.0ms | ActiveRecord: 0.0ms)
761
-
762
-
763
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:42:37 -0300
764
- Processing by StaticsController#home as HTML
765
- Rendered statics/home.html.erb within layouts/application (0.4ms)
766
- Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
767
-
768
-
769
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:42:37 -0300
770
- Served asset /application.css - 304 Not Modified (6ms)
771
-
772
-
773
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:42:37 -0300
774
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
775
-
776
-
777
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:42:37 -0300
778
- Served asset /jquery.js - 304 Not Modified (4ms)
779
-
780
-
781
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:42:37 -0300
782
- Served asset /application.js - 304 Not Modified (9ms)
783
- Connecting to database specified by database.yml
784
-
785
-
786
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:43:28 -0300
787
- Processing by StaticsController#home as HTML
788
- Rendered statics/home.html.erb within layouts/application (3.3ms)
789
- Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.0ms)
790
-
791
-
792
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 15:43:28 -0300
793
- Served asset /application.css - 304 Not Modified (2ms)
794
-
795
-
796
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 15:43:28 -0300
797
- Served asset /jquery.js - 304 Not Modified (3ms)
798
-
799
-
800
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 15:43:28 -0300
801
- Served asset /jquery_ujs.js - 304 Not Modified (3ms)
802
-
803
-
804
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 15:43:28 -0300
805
- Served asset /application.js - 304 Not Modified (6ms)
806
- Connecting to database specified by database.yml
807
-
808
-
809
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:44:50 -0300
810
- Processing by StaticsController#home as HTML
811
- Rendered statics/home.html.erb within layouts/application (3.0ms)
812
- Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms)
813
- Connecting to database specified by database.yml
814
-
815
-
816
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:46:15 -0300
817
- Processing by StaticsController#home as HTML
818
- Rendered statics/home.html.erb within layouts/application (3.4ms)
819
- Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
820
- Connecting to database specified by database.yml
821
-
822
-
823
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:47:05 -0300
824
- Processing by StaticsController#home as HTML
825
- Rendered statics/home.html.erb within layouts/application (8.9ms)
826
- Completed 500 Internal Server Error in 45ms
827
-
828
- ActionView::Template::Error (undefined method `env' for Ads::Rails:Module):
829
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
830
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___2145965424575698165_70245835108020'
831
-
832
-
833
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
834
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
835
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
836
- Connecting to database specified by database.yml
837
-
838
-
839
- Started GET "/" for 127.0.0.1 at 2013-04-03 15:47:18 -0300
840
- Processing by StaticsController#home as HTML
841
- Rendered statics/home.html.erb within layouts/application (3.1ms)
842
- Completed 200 OK in 54ms (Views: 53.3ms | ActiveRecord: 0.0ms)
843
- Connecting to database specified by database.yml
844
-
845
-
846
- Started GET "/" for 127.0.0.1 at 2013-04-03 16:15:55 -0300
847
- Processing by StaticsController#home as HTML
848
- Rendered statics/home.html.erb within layouts/application (3.2ms)
849
- Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.0ms)
850
-
851
-
852
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-03 16:15:55 -0300
853
- Served asset /jquery.js - 304 Not Modified (12ms)
854
-
855
-
856
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-03 16:15:55 -0300
857
- Served asset /application.css - 304 Not Modified (2ms)
858
-
859
-
860
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-03 16:15:55 -0300
861
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
862
-
863
-
864
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-03 16:15:55 -0300
865
- Served asset /application.js - 304 Not Modified (7ms)
866
- Connecting to database specified by database.yml
867
-
868
-
869
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:34:41 -0300
870
- Processing by StaticsController#home as HTML
871
- Rendered statics/home.html.erb within layouts/application (3.1ms)
872
- Completed 200 OK in 86ms (Views: 85.1ms | ActiveRecord: 0.0ms)
873
-
874
-
875
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-17 18:34:41 -0300
876
- Served asset /application.css - 200 OK (2ms)
877
-
878
-
879
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 18:34:41 -0300
880
- Served asset /jquery.js - 200 OK (6ms)
881
-
882
-
883
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 18:34:41 -0300
884
- Served asset /jquery_ujs.js - 200 OK (2ms)
885
-
886
-
887
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 18:34:41 -0300
888
- Served asset /application.js - 200 OK (6ms)
889
-
890
-
891
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:35:23 -0300
892
- Processing by StaticsController#home as HTML
893
- Rendered statics/home.html.erb within layouts/application (0.1ms)
894
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
895
-
896
-
897
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-17 18:35:23 -0300
898
- Served asset /application.css - 304 Not Modified (0ms)
899
-
900
-
901
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 18:35:23 -0300
902
- Served asset /jquery.js - 304 Not Modified (0ms)
903
-
904
-
905
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 18:35:23 -0300
906
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
907
-
908
-
909
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 18:35:23 -0300
910
- Served asset /application.js - 304 Not Modified (0ms)
911
- Connecting to database specified by database.yml
912
-
913
-
914
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:35:39 -0300
915
- Processing by StaticsController#home as HTML
916
- Rendered statics/home.html.erb within layouts/application (3.2ms)
917
- Completed 200 OK in 53ms (Views: 52.6ms | ActiveRecord: 0.0ms)
918
-
919
-
920
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:36:09 -0300
921
- Processing by StaticsController#home as HTML
922
- Rendered statics/home.html.erb within layouts/application (0.2ms)
923
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
924
-
925
-
926
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:36:12 -0300
927
- Processing by StaticsController#home as HTML
928
- Rendered statics/home.html.erb within layouts/application (0.2ms)
929
- Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
930
- Connecting to database specified by database.yml
931
-
932
-
933
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:36:24 -0300
934
- Processing by StaticsController#home as HTML
935
- Rendered statics/home.html.erb within layouts/application (20.1ms)
936
- Completed 500 Internal Server Error in 33ms
937
-
938
- ActionView::Template::Error (undefined method `indent' for #<String:0x007fd38d506398>):
939
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
940
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__3523656761263041212_70273292602900'
941
-
942
-
943
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
944
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
945
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.7ms)
946
-
947
-
948
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:37:21 -0300
949
- Processing by StaticsController#home as HTML
950
- Rendered statics/home.html.erb within layouts/application (0.9ms)
951
- Completed 500 Internal Server Error in 3ms
952
-
953
- ActionView::Template::Error (undefined method `indent' for #<String:0x007fd38a883bb8>):
954
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
955
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb__3523656761263041212_70273292602900'
956
-
957
-
958
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
959
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
960
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
961
- Connecting to database specified by database.yml
962
-
963
-
964
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:37:37 -0300
965
- Processing by StaticsController#home as HTML
966
- Rendered statics/home.html.erb within layouts/application (8.8ms)
967
- Completed 500 Internal Server Error in 22ms
968
-
969
- ActionView::Template::Error (undefined method `indent' for #<String:0x007ff8ce78f248>):
970
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
971
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___4345885114792958661_70353294670920'
972
-
973
-
974
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
975
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
976
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
977
-
978
-
979
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:37:54 -0300
980
- Processing by StaticsController#home as HTML
981
- Rendered statics/home.html.erb within layouts/application (0.9ms)
982
- Completed 500 Internal Server Error in 3ms
983
-
984
- ActionView::Template::Error (undefined method `indent' for #<String:0x007ff8c9cd27a0>):
985
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
986
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___4345885114792958661_70353294670920'
987
-
988
-
989
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
990
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
991
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms)
992
- Connecting to database specified by database.yml
993
-
994
-
995
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:39:30 -0300
996
- Processing by StaticsController#home as HTML
997
- Rendered statics/home.html.erb within layouts/application (8.9ms)
998
- Completed 500 Internal Server Error in 22ms
999
-
1000
- ActionView::Template::Error (undefined method `indent' for #<String:0x007fa6dd0ed540>):
1001
- 1: <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
1002
- app/views/statics/home.html.erb:1:in `_app_views_statics_home_html_erb___3331059223424000021_70177328274200'
1003
-
1004
-
1005
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
1006
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1007
- Rendered /Users/Matt/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
1008
- Connecting to database specified by database.yml
1009
-
1010
-
1011
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:41:52 -0300
1012
- Processing by StaticsController#home as HTML
1013
- Rendered statics/home.html.erb within layouts/application (3.2ms)
1014
- Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms)
1015
- Connecting to database specified by database.yml
1016
-
1017
-
1018
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:42:25 -0300
1019
- Processing by StaticsController#home as HTML
1020
- Rendered statics/home.html.erb within layouts/application (3.4ms)
1021
- Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.0ms)
1022
- Connecting to database specified by database.yml
1023
-
1024
-
1025
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:44:42 -0300
1026
- Processing by StaticsController#home as HTML
1027
- Rendered statics/home.html.erb within layouts/application (3.2ms)
1028
- Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms)
1029
- Connecting to database specified by database.yml
1030
-
1031
-
1032
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:45:24 -0300
1033
- Processing by StaticsController#home as HTML
1034
- Rendered statics/home.html.erb within layouts/application (3.2ms)
1035
- Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
1036
-
1037
-
1038
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:45:26 -0300
1039
- Processing by StaticsController#home as HTML
1040
- Rendered statics/home.html.erb within layouts/application (0.3ms)
1041
- Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1042
-
1043
-
1044
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:45:50 -0300
1045
- Processing by StaticsController#home as HTML
1046
- Rendered statics/home.html.erb within layouts/application (0.3ms)
1047
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1048
- Connecting to database specified by database.yml
1049
-
1050
-
1051
- Started GET "/" for 127.0.0.1 at 2013-04-17 18:46:38 -0300
1052
- Processing by StaticsController#home as HTML
1053
- Rendered statics/home.html.erb within layouts/application (3.3ms)
1054
- Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
1
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.0ms) SELECT version FROM "schema_migrations"
7
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')