ads-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +18 -0
  3. data/Rakefile +38 -0
  4. data/lib/ads-rails.rb +4 -0
  5. data/lib/ads/rails.rb +7 -0
  6. data/lib/ads/rails/helpers.rb +21 -0
  7. data/lib/ads/rails/railtie.rb +11 -0
  8. data/lib/ads/rails/version.rb +7 -0
  9. data/test/ads_rails_test.rb +9 -0
  10. data/test/dummy/README.rdoc +261 -0
  11. data/test/dummy/Rakefile +7 -0
  12. data/test/dummy/app/assets/javascripts/application.js +15 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/controllers/application_controller.rb +3 -0
  15. data/test/dummy/app/controllers/statics_controller.rb +6 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/app/views/statics/home.html.erb +1 -0
  19. data/test/dummy/config.ru +4 -0
  20. data/test/dummy/config/application.rb +59 -0
  21. data/test/dummy/config/boot.rb +10 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +37 -0
  25. data/test/dummy/config/environments/production.rb +67 -0
  26. data/test/dummy/config/environments/test.rb +37 -0
  27. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/dummy/config/initializers/inflections.rb +15 -0
  29. data/test/dummy/config/initializers/mime_types.rb +5 -0
  30. data/test/dummy/config/initializers/secret_token.rb +7 -0
  31. data/test/dummy/config/initializers/session_store.rb +8 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +5 -0
  34. data/test/dummy/config/routes.rb +61 -0
  35. data/test/dummy/db/development.sqlite3 +0 -0
  36. data/test/dummy/log/development.log +865 -0
  37. data/test/dummy/public/404.html +26 -0
  38. data/test/dummy/public/422.html +26 -0
  39. data/test/dummy/public/500.html +25 -0
  40. data/test/dummy/public/favicon.ico +0 -0
  41. data/test/dummy/script/rails +6 -0
  42. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  43. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  44. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  45. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  46. data/test/dummy/tmp/cache/assets/D9B/E00/sprockets%2Fb66a75bd10bef6da5f16f4fa9113926c +0 -0
  47. data/test/dummy/tmp/cache/assets/DAC/650/sprockets%2Ff8ec2e25f819797cb9a491d0af22ae9b +0 -0
  48. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  49. data/test/dummy/tmp/cache/assets/DEF/100/sprockets%2F8b9d88bfa8f8eed7910469ef2ab8a8c7 +0 -0
  50. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  51. data/test/dummy/tmp/cache/assets/E29/AA0/sprockets%2F6eaab4ab4dbae1b8b5a6f9286aa966d4 +0 -0
  52. data/test/test_helper.rb +15 -0
  53. metadata +173 -0
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,6 @@
1
+ class StaticsController < ApplicationController
2
+
3
+ def home
4
+ end
5
+
6
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1 @@
1
+ <%= google_adsense_include_tag :client => 'client', :slot => 'slot', :width => 'width', :height => 'height' %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,59 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require(*Rails.groups)
6
+ require 'ads/rails'
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable escaping HTML in JSON.
39
+ config.active_support.escape_html_entities_in_json = true
40
+
41
+ # Use SQL instead of Active Record's schema dumper when creating the database.
42
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
43
+ # like if you have constraints or database-specific column types
44
+ # config.active_record.schema_format = :sql
45
+
46
+ # Enforce whitelist mode for mass assignment.
47
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
48
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
+ # parameters by using an attr_accessible or attr_protected declaration.
50
+ config.active_record.whitelist_attributes = true
51
+
52
+ # Enable the asset pipeline
53
+ config.assets.enabled = true
54
+
55
+ # Version of your assets, change this if you want to expire all your assets
56
+ config.assets.version = '1.0'
57
+ end
58
+ end
59
+
@@ -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,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: ":memory:"
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ 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 = '7bf78955d5de7cd2bce59c9629833b9df43b9bce8d56aaa15b62e1563421e7eba942f2e3c43964113ea00df4fd5931bdd3fc7b7bf9a289e18563c261fe5f3366'
@@ -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,5 @@
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"
@@ -0,0 +1,61 @@
1
+ Dummy::Application.routes.draw do
2
+
3
+ root :to => 'statics#home'
4
+
5
+ # The priority is based upon order of creation:
6
+ # first created -> highest priority.
7
+
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
+
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)
15
+
16
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
17
+ # resources :products
18
+
19
+ # Sample resource route with options:
20
+ # resources :products do
21
+ # member do
22
+ # get 'short'
23
+ # post 'toggle'
24
+ # end
25
+ #
26
+ # collection do
27
+ # get 'sold'
28
+ # end
29
+ # end
30
+
31
+ # Sample resource route with sub-resources:
32
+ # resources :products do
33
+ # resources :comments, :sales
34
+ # resource :seller
35
+ # end
36
+
37
+ # Sample resource route with more complex sub-resources
38
+ # resources :products do
39
+ # resources :comments
40
+ # resources :sales do
41
+ # get 'recent', :on => :collection
42
+ # end
43
+ # end
44
+
45
+ # Sample resource route within a namespace:
46
+ # namespace :admin do
47
+ # # Directs /admin/products/* to Admin::ProductsController
48
+ # # (app/controllers/admin/products_controller.rb)
49
+ # resources :products
50
+ # 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
+ end
File without changes
@@ -0,0 +1,865 @@
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)