red_panda 0.0.1.pre1 → 0.0.1.pre2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,3 +1,96 @@
1
1
  # RedPanda
2
2
 
3
+ ##Installation
4
+ Add to GemFile:
5
+
6
+ >> "red_panda","~>0.0.1.pre2"
7
+
8
+ Then run the boot generator which accepts in order: col placed in service, col lifetime, col initial value.
9
+
10
+ >> rails g red_panda:boot purchase_date lifetime purchase_price
11
+
12
+ Then add the extension to your assets you want to depricate:
13
+
14
+ ```ruby
15
+ include RedPanda::Extension
16
+ ```
17
+
18
+ ##Supports
19
+
20
+ Red_Panda tries to conform to IRS publication 946 and supports:
21
+
22
+ - Any property that does not fall under the mid-month convention (Residential and Some RR Property)
23
+ - GDS Recovery Period
24
+
25
+ Red_Panda does not support:
26
+
27
+ - Automated checks
28
+ - ADS Recovery Period
29
+ - Completion of form 4562
30
+
31
+ Red_Panda is used at the risk of the programmer and any company choosing to use it in their own software.
32
+ While Red_Panda was designed we tried to implement it according to IRS publication 946 acuratly. However,
33
+ no responsibility for any malfunction of Red_Panda can be given to Red_Panda or its creators. This software
34
+ is provided as-is with no waranty written or implied. Proceed with use at own risk.
35
+
36
+ ##Use
37
+
38
+ The RedPanda model extension (RedPanda::Extension) provides methods that can be used directly on the object itself.
39
+
40
+ ```ruby
41
+ @asset.get_convention #=> Will return string "HY" or "MQ" depending on the year placed in service
42
+
43
+ @asset.get_convention_rate #=> Returns percentage bassed on convention (given as decimal ie 80% = 0.8)
44
+
45
+ # Anything that takes year or tax_year, if not given will default to last years tax year
46
+ # So, if it is 2013 then the determined tax year will be 2012
47
+
48
+ @asset.get_remaining_life(year=nil) #=> Returns the amount of life remaining as an integer.
49
+
50
+ @asset.get_adjusted_basis(year=nil) #=> Returns the value of the asset after applying previous years adjustments
51
+
52
+ @asset.get_depreciation_amount(year=nil) #=> Gives the amount that can be used for that year's depreciation
53
+
54
+ ```
55
+
56
+ ActiveRecord is lacking in support for an agnostic way to add an integer to a date so, RedPanda implements agnostic_date_add
57
+ which takes an argument on the date column followed by the integer column and what you want to add it to.
58
+
59
+ For example:
60
+
61
+ ```ruby
62
+ Asset.find(agnostic_date_add("purchase_date","lifetime year"))
63
+ ```
64
+
65
+ Year can be any of the following:
66
+
67
+ - Day
68
+ - Month
69
+ - Year
70
+
71
+ The method `agnostic_date_add` does not support all databases and may not be tested on some. The following adapters have implementations
72
+
73
+ - Sqlite3 (implemented and tested)
74
+ - MySql2 (implemented not tested)
75
+ - PostgreSQL (implemented not tested)
76
+
77
+ *Note:* This _probably_ will not work in JRuby at the current time, but should be easy to implement
78
+
79
+ ###How to get deductions for assets placed in service before the tax year which have not expired:
80
+
81
+ ```ruby
82
+ @assets = Asset.where("#{agnostic_date_add("purchase_date","lifetime year")}> ? AND purchase_date < ?",Date.today,Date.today).all
83
+ ```
84
+
85
+ Then we need to sum the depriciations by year therefore:
86
+
87
+ ```ruby
88
+ @assets.sum{|asset|asset.get_deprication_amount(params[:tax_year].to_i)}
89
+ ```
90
+
91
+ ##CAUTIONS
92
+ This gem uses floating number calculations which are known to have problems in some calculations and accuracy cannot be trusted. For accuracy
93
+ it is advised to store all currency objects as an integer and later inject the decimal.
94
+
95
+
3
96
  This project rocks and uses MIT-LICENSE.
data/lib/red_panda.rb CHANGED
@@ -3,6 +3,7 @@ require "red_panda/models/extension"
3
3
  require "red_panda/conventions/convention"
4
4
  require "red_panda/conventions/mid_quarter"
5
5
  require "red_panda/conventions/half_year"
6
+ require "red_panda/sql/sql_extension"
6
7
 
7
8
  module RedPanda
8
9
  mattr_accessor :col_placed_in_service
@@ -1,5 +1,10 @@
1
+ require "rails"
1
2
  module RedPanda
2
3
  class Engine < ::Rails::Engine
3
4
  isolate_namespace RedPanda
5
+ initializer "red_panda.sql_extension" do |app|
6
+ ActiveRecord::Base.send :extend, RedPanda::SqlExtension
7
+ ActionController::Base.send :extend, RedPanda::SqlExtension
8
+ end
4
9
  end
5
10
  end
@@ -7,8 +7,10 @@ module RedPanda
7
7
  model = self.class.name.constantize
8
8
  date = Date.new(self.send(RedPanda.col_placed_in_service).year,1,1)
9
9
  assets = model.where("#{RedPanda.col_placed_in_service} >= ? and #{RedPanda.col_placed_in_service} < ?",date,date.next_year).all
10
- last_quarter_count = assets.count{|asset| !!(Date::MONTHNAMES[asset.send(RedPanda.col_placed_in_service).month] =~ /(oct|nov|dec)/i)}
11
- if (last_quarter_count.to_f/assets.size) < 0.4
10
+ #needs to be 40% of basis
11
+ last_quarter_basis = assets.inject(0.0){|sum,asset| (!!(Date::MONTHNAMES[asset.send(RedPanda.col_placed_in_service).month] =~ /(oct|nov|dec)/i))? sum + asset.send(RedPanda.col_init_val) : sum}
12
+ total_basis = assets.sum{|asset| asset.send(RedPanda.col_init_val)}
13
+ if (last_quarter_basis/total_basis) < 0.4
12
14
  convention = RedPanda::HalfYear.new
13
15
  else
14
16
  convention = RedPanda::MidQuarter.new
@@ -44,5 +46,10 @@ module RedPanda
44
46
  get_adjusted_basis(year) * get_convention_rate(year) * (1.0/get_remaining_life(year).to_i)
45
47
  end
46
48
 
49
+ def self.find_assets_still_availible(*args)
50
+ model = self.class.name.constantize
51
+
52
+ end
53
+
47
54
  end
48
55
  end
@@ -0,0 +1,46 @@
1
+ module RedPanda
2
+ module SqlExtension
3
+
4
+ def agnostic_date_add(*args)
5
+ #Simple possiblye col + col Type < ?
6
+ if defined? SQLite3
7
+ return sqlite_date_add(args)
8
+ elsif defined? Mysql2
9
+ return mysql2_date_add(args)
10
+ elsif defined? PG
11
+ #POSTGRES
12
+ return postgres_date_add(args)
13
+ else
14
+ #We will use EXTRACT(YEAR/DAY/MONTH) POSSIBLY OR DATEADD or DATE_ADD Depending on DB
15
+ throw "Unknown Database Adapter"
16
+ end
17
+ end
18
+
19
+ private
20
+ def postgres_date_add(args)
21
+ # NOT SURE IF THIS WORKS!!!
22
+ return "#{args[0]} + INTERVAL '#{args[0]}'"
23
+ end
24
+
25
+ def mysql2_date_add(args)
26
+ return "DATE_ADD(#{args[0]},INTERVAL #{args[1]})" #That was easy. Does it work?
27
+ end
28
+
29
+ def sqlite_date_add(args)
30
+ #Determine the type
31
+ first_col = args[0]
32
+ puts "ARGS: #{args}"
33
+ throw "SQLite ARGS are NULL" if args.nil?
34
+ type = nil
35
+ if !!(args[1] =~ /year/i)
36
+ type = "YEAR"
37
+ elsif !!(args[1] =~ /month/i)
38
+ type = "MONTH"
39
+ else
40
+ type = "DAY"
41
+ end
42
+ col = /^\w*/.match(args[1]).to_s
43
+ return "date(#{first_col}, '+'|| #{col}||' #{type}')"
44
+ end
45
+ end
46
+ end
@@ -1,3 +1,3 @@
1
1
  module RedPanda
2
- VERSION = "0.0.1.pre1"
2
+ VERSION = "0.0.1.pre2"
3
3
  end
@@ -80,4 +80,9 @@ class AssetsController < ApplicationController
80
80
  format.json { head :no_content }
81
81
  end
82
82
  end
83
+
84
+ def tax_year
85
+ puts "PARAMS: #{params}"
86
+ @assets = Asset.where("#{Asset.agnostic_date_add("purchase_date","lifetime year")} > ? AND purchase_date < ?",Date.new(params[:tax_year].to_i,1,1),Date.new(params[:tax_year].to_i,1,1)).all
87
+ end
83
88
  end
@@ -1,4 +1,5 @@
1
1
  class Asset < ActiveRecord::Base
2
2
  include RedPanda::Extension
3
+ #extend RedPanda::SqlExtension
3
4
  attr_accessible :lifetime, :name, :purchase_date, :purchase_price
4
5
  end
@@ -26,4 +26,4 @@
26
26
 
27
27
  <br />
28
28
 
29
- <%= link_to 'New Asset', new_asset_path %>
29
+ <%= link_to 'New Asset', new_asset_path %>|<%= link_to "Last years taxes",tax_year_asset_path(Date.today.year)%>
@@ -0,0 +1,30 @@
1
+ <%@assets.each do |asset|%>
2
+ <p>
3
+ <b>Asset Name:</b>
4
+ <%= asset.name %>
5
+ </p>
6
+ <p>
7
+ <b>Remaining Life:</b>
8
+ <%= asset.get_remaining_life(params[:tax_year].to_i) %>
9
+ </p>
10
+ <p>
11
+ <b>This years depreciation amount:</b>
12
+ <%= asset.get_deprication_amount(params[:tax_year].to_i) %>
13
+ </p>
14
+ <p>
15
+ <b>Convention used:</b>
16
+ <%= asset.get_convention.to_s%>
17
+ </p>
18
+ <p>
19
+ <b>Placed in service:</b>
20
+ <%= asset.send(RedPanda.col_placed_in_service)%>
21
+ </p>
22
+ <hr />
23
+
24
+ <%end%>
25
+
26
+ <p>
27
+ <b>Total Deprication this year:</b>
28
+ <%= total = @assets.sum{|asset|asset.get_deprication_amount(params[:tax_year].to_i)}%>
29
+ <pre><%= total.to_yaml %></pre>
30
+ </p>
@@ -1,6 +1,9 @@
1
1
  Rails.application.routes.draw do
2
2
 
3
3
  resources :assets
4
+ resource :asset do
5
+ get 'tax_year/:tax_year'=>'assets#tax_year', :as=>"tax_year"
6
+ end
4
7
 
5
8
 
6
9
  mount RedPanda::Engine => "/red_panda"
Binary file
@@ -14724,3 +14724,2798 @@ Served asset /assets.js - 304 Not Modified (2ms)
14724
14724
 
14725
14725
  Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-05 07:58:23 -0600
14726
14726
  Served asset /application.js - 304 Not Modified (14ms)
14727
+ Connecting to database specified by database.yml
14728
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT "assets".* FROM "assets" WHERE (purchase_date < DATE_ADD('2013-1-1', INTERVAL lifetime YEAR))
14729
+ Connecting to database specified by database.yml
14730
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT "assets".* FROM "assets" WHERE (purchase_date < (purchase_date + INTERVAL lifetime YEAR))
14731
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT "assets".* FROM "assets" WHERE (purchase_date < (purchase_date + INTERVAL lifetime YEAR))
14732
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT "assets".* FROM "assets" WHERE (purchase_date < (purchase_date + INTERVAL lifetime YEAR))
14733
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT "assets".* FROM "assets" WHERE (purchase_date < (purchase_date + INTERVAL lifetime YEAR))
14734
+ Connecting to database specified by database.yml
14735
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT * FROM assets WHERE purchase_date + INTERVAL lifetime YEAR < CURRENT_DATE
14736
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT "assets".* FROM "assets" WHERE ('2012-01-01' < DATE_ADD(purchase_date,INTERVAL lifetime YEAR) AND purchase_date >= '2012-01-01')
14737
+ SQLite3::SQLException: near "lifetime": syntax error: SELECT "assets".* FROM "assets" WHERE ('2012-01-01' < DATE_ADD(purchase_date,INTERVAL lifetime YEARS) AND purchase_date >= '2012-01-01')
14738
+ SQLite3::SQLException: near "YEARS": syntax error: SELECT "assets".* FROM "assets" WHERE ('2012-01-01' < DATE(purchase_date,INTERVAL +lifetime YEARS) AND purchase_date >= '2012-01-01')
14739
+ SQLite3::SQLException: near "YEAR": syntax error: SELECT "assets".* FROM "assets" WHERE ('0202-01-01' < DATE(purchase_date,INTERVAL +lifetime YEAR) AND purchase_date >= '2012-01-01')
14740
+ Connecting to database specified by database.yml
14741
+ Connecting to database specified by database.yml
14742
+ Connecting to database specified by database.yml
14743
+
14744
+
14745
+ Started GET "/" for 127.0.0.1 at 2013-06-05 15:11:40 -0600
14746
+
14747
+ ActionController::RoutingError (No route matches [GET] "/"):
14748
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
14749
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
14750
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
14751
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
14752
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
14753
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
14754
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14755
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
14756
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
14757
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
14758
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
14759
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
14760
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
14761
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
14762
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
14763
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
14764
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
14765
+ c:/Ruby19/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
14766
+ c:/Ruby19/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
14767
+ c:/Ruby19/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
14768
+
14769
+
14770
+ Rendered c:/Ruby19/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
14771
+ Connecting to database specified by database.yml
14772
+
14773
+
14774
+ Started GET "/assets/6?search_year=" for 127.0.0.1 at 2013-06-05 16:00:44 -0600
14775
+ Served asset /6 - 404 Not Found (7ms)
14776
+ Processing by AssetsController#show as HTML
14777
+ Parameters: {"search_year"=>"", "id"=>"6"}
14778
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "6"]]
14779
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
14780
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
14781
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
14782
+ Rendered assets/show.html.erb within layouts/application (4.0ms)
14783
+ Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 2.0ms)
14784
+
14785
+
14786
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-05 16:00:44 -0600
14787
+ Served asset /application.css - 304 Not Modified (1ms)
14788
+
14789
+
14790
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-05 16:00:45 -0600
14791
+ Served asset /assets.css - 304 Not Modified (0ms)
14792
+
14793
+
14794
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-05 16:00:45 -0600
14795
+ Served asset /scaffold.css - 304 Not Modified (0ms)
14796
+
14797
+
14798
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:45 -0600
14799
+ Served asset /jquery.js - 304 Not Modified (0ms)
14800
+
14801
+
14802
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:45 -0600
14803
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
14804
+
14805
+
14806
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:45 -0600
14807
+ Served asset /assets.js - 304 Not Modified (0ms)
14808
+
14809
+
14810
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:45 -0600
14811
+ Served asset /application.js - 304 Not Modified (0ms)
14812
+
14813
+
14814
+ Started GET "/assets/6?search_year=10" for 127.0.0.1 at 2013-06-05 16:00:51 -0600
14815
+ Served asset /6 - 404 Not Found (4ms)
14816
+ Processing by AssetsController#show as HTML
14817
+ Parameters: {"search_year"=>"10", "id"=>"6"}
14818
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "6"]]
14819
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
14820
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
14821
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
14822
+ Rendered assets/show.html.erb within layouts/application (4.0ms)
14823
+ Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 2.0ms)
14824
+
14825
+
14826
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-05 16:00:51 -0600
14827
+ Served asset /application.css - 304 Not Modified (0ms)
14828
+
14829
+
14830
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-05 16:00:52 -0600
14831
+ Served asset /assets.css - 304 Not Modified (0ms)
14832
+
14833
+
14834
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-05 16:00:52 -0600
14835
+ Served asset /scaffold.css - 304 Not Modified (0ms)
14836
+
14837
+
14838
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:52 -0600
14839
+ Served asset /jquery.js - 304 Not Modified (0ms)
14840
+
14841
+
14842
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:52 -0600
14843
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
14844
+
14845
+
14846
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:52 -0600
14847
+ Served asset /assets.js - 304 Not Modified (0ms)
14848
+
14849
+
14850
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-05 16:00:52 -0600
14851
+ Served asset /application.js - 304 Not Modified (0ms)
14852
+ Connecting to database specified by database.yml
14853
+ Connecting to database specified by database.yml
14854
+ Connecting to database specified by database.yml
14855
+ Connecting to database specified by database.yml
14856
+ Connecting to database specified by database.yml
14857
+ SQLite3::SQLException: no such column: purchase_date.year: SELECT "assets".* FROM "assets" WHERE "purchase_date"."year" + "assets"."lifetime" < 2013
14858
+ SQLite3::SQLException: no such column: purchase_date.to_i: SELECT "assets".* FROM "assets" WHERE "purchase_date"."to_i" + "assets"."lifetime" * 365 * 24 * 60 < '2013-06-05 22:17:49.701942'
14859
+ Connecting to database specified by database.yml
14860
+ Connecting to database specified by database.yml
14861
+ Connecting to database specified by database.yml
14862
+ Connecting to database specified by database.yml
14863
+ Connecting to database specified by database.yml
14864
+ Connecting to database specified by database.yml
14865
+ Connecting to database specified by database.yml
14866
+ Connecting to database specified by database.yml
14867
+ SQLite3::SQLException: near "FROM": syntax error: SELECT "assets".* FROM "assets" WHERE (EXTRACT(year FROM purchase_date))
14868
+ SQLite3::SQLException: near "FROM": syntax error: SELECT "assets".* FROM "assets" WHERE (EXTRACT(year FROM purchase_date) > 1)
14869
+ SQLite3::SQLException: near "FROM": syntax error: SELECT "assets".* FROM "assets" WHERE (EXTRACT(year FROM purchase_date) > 1)
14870
+ SQLite3::SQLException: near "FROM": syntax error: SELECT "assets".* FROM "assets" WHERE (EXTRACT(year FROM purchase_date) > 1)
14871
+ Connecting to database specified by database.yml
14872
+ SQLite3::SQLException: near "FROM": syntax error: SELECT "assets".* FROM "assets" WHERE (EXTRACT(YEAR FROM purchase_date) > 2000)
14873
+ SQLite3::SQLException: near "FROM": syntax error: SELECT "assets".* FROM "assets" WHERE (EXTRACT(YEAR FROM purchase_date) > 2000)
14874
+ SQLite3::SQLException: near "FROM": syntax error: SELECT "assets".* FROM "assets" WHERE (EXTRACT(YEAR FROM purchase_date) > 2000)
14875
+ SQLite3::SQLException: near "EXTRACT": syntax error: EXTRACT(YEAR FROM purchase_date) > 2000
14876
+ Connecting to database specified by database.yml
14877
+ Connecting to database specified by database.yml
14878
+ Connecting to database specified by database.yml
14879
+ Connecting to database specified by database.yml
14880
+ Connecting to database specified by database.yml
14881
+ Connecting to database specified by database.yml
14882
+ Connecting to database specified by database.yml
14883
+ Connecting to database specified by database.yml
14884
+ Connecting to database specified by database.yml
14885
+ Connecting to database specified by database.yml
14886
+ Connecting to database specified by database.yml
14887
+ Connecting to database specified by database.yml
14888
+ Connecting to database specified by database.yml
14889
+ Connecting to database specified by database.yml
14890
+ Connecting to database specified by database.yml
14891
+ Connecting to database specified by database.yml
14892
+ Connecting to database specified by database.yml
14893
+ Connecting to database specified by database.yml
14894
+ Connecting to database specified by database.yml
14895
+ Connecting to database specified by database.yml
14896
+ Connecting to database specified by database.yml
14897
+ Connecting to database specified by database.yml
14898
+ Connecting to database specified by database.yml
14899
+ Connecting to database specified by database.yml
14900
+ Connecting to database specified by database.yml
14901
+
14902
+
14903
+ Started GET "/" for 127.0.0.1 at 2013-06-06 16:23:13 -0600
14904
+
14905
+ ActionController::RoutingError (No route matches [GET] "/"):
14906
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
14907
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
14908
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
14909
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
14910
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
14911
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
14912
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14913
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
14914
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
14915
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
14916
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
14917
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
14918
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
14919
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
14920
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
14921
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
14922
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
14923
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
14924
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
14925
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
14926
+
14927
+
14928
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.0ms)
14929
+
14930
+
14931
+ Started GET "/assets/" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14932
+ Served asset / - 404 Not Found (47ms)
14933
+ Processing by AssetsController#index as HTML
14934
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" 
14935
+ Rendered assets/index.html.erb within layouts/application (5.0ms)
14936
+ Compiled application.js (83ms) (pid 11936)
14937
+ Completed 200 OK in 380ms (Views: 246.0ms | ActiveRecord: 13.0ms)
14938
+
14939
+
14940
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14941
+ Served asset /application.css - 304 Not Modified (9ms)
14942
+
14943
+
14944
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14945
+ Served asset /scaffold.css - 304 Not Modified (2ms)
14946
+
14947
+
14948
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14949
+ Served asset /assets.css - 304 Not Modified (3ms)
14950
+
14951
+
14952
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14953
+ Served asset /assets.js - 304 Not Modified (2ms)
14954
+
14955
+
14956
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14957
+ Served asset /jquery_ujs.js - 304 Not Modified (14ms)
14958
+
14959
+
14960
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14961
+ Served asset /jquery.js - 304 Not Modified (52ms)
14962
+
14963
+
14964
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:23:19 -0600
14965
+ Served asset /application.js - 304 Not Modified (51ms)
14966
+
14967
+
14968
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:23:24 -0600
14969
+
14970
+ ActionController::RoutingError (uninitialized constant AssetController):
14971
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
14972
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
14973
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
14974
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
14975
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
14976
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
14977
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
14978
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
14979
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
14980
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
14981
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
14982
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
14983
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
14984
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
14985
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
14986
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
14987
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
14988
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
14989
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
14990
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
14991
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
14992
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
14993
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__902128255__call__537819766__callbacks'
14994
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
14995
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
14996
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
14997
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
14998
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
14999
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
15000
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
15001
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
15002
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
15003
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
15004
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
15005
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
15006
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15007
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15008
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
15009
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
15010
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
15011
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
15012
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
15013
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
15014
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
15015
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
15016
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
15017
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
15018
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
15019
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
15020
+
15021
+
15022
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
15023
+
15024
+
15025
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:24:03 -0600
15026
+
15027
+ ActionController::RoutingError (uninitialized constant AssetController):
15028
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
15029
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
15030
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
15031
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
15032
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
15033
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
15034
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
15035
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
15036
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
15037
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
15038
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
15039
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
15040
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
15041
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
15042
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
15043
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
15044
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
15045
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
15046
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
15047
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
15048
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
15049
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
15050
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__902128255__call__537819766__callbacks'
15051
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
15052
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
15053
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
15054
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
15055
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
15056
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
15057
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
15058
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
15059
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
15060
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
15061
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
15062
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
15063
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15064
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15065
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
15066
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
15067
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
15068
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
15069
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
15070
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
15071
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
15072
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
15073
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
15074
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
15075
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
15076
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
15077
+
15078
+
15079
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
15080
+
15081
+
15082
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:24:04 -0600
15083
+
15084
+ ActionController::RoutingError (uninitialized constant AssetController):
15085
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
15086
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
15087
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
15088
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
15089
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
15090
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
15091
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
15092
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
15093
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
15094
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
15095
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
15096
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
15097
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
15098
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
15099
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
15100
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
15101
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
15102
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
15103
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
15104
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
15105
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
15106
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
15107
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__902128255__call__537819766__callbacks'
15108
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
15109
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
15110
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
15111
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
15112
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
15113
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
15114
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
15115
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
15116
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
15117
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
15118
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
15119
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
15120
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15121
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15122
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
15123
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
15124
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
15125
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
15126
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
15127
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
15128
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
15129
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
15130
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
15131
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
15132
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
15133
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
15134
+
15135
+
15136
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
15137
+ Connecting to database specified by database.yml
15138
+
15139
+
15140
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:25:18 -0600
15141
+ Processing by AssetsController#tax_year as HTML
15142
+ Parameters: {"tax_year"=>"2013"}
15143
+ Completed 500 Internal Server Error in 0ms
15144
+
15145
+ ArgumentError (comparison of String with 0 failed):
15146
+ app/controllers/assets_controller.rb:85:in `<'
15147
+ app/controllers/assets_controller.rb:85:in `new'
15148
+ app/controllers/assets_controller.rb:85:in `tax_year'
15149
+
15150
+
15151
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
15152
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
15153
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (116.0ms)
15154
+
15155
+
15156
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:26:02 -0600
15157
+ Processing by AssetsController#tax_year as HTML
15158
+ Parameters: {"tax_year"=>"2013"}
15159
+ Completed 500 Internal Server Error in 1ms
15160
+
15161
+ NoMethodError (undefined method `agnostic_date_add' for #<AssetsController:0x3fad388>):
15162
+ app/controllers/assets_controller.rb:85:in `tax_year'
15163
+
15164
+
15165
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
15166
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
15167
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (34.0ms)
15168
+
15169
+
15170
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:26:19 -0600
15171
+ Processing by AssetsController#tax_year as HTML
15172
+ Parameters: {"tax_year"=>"2013"}
15173
+ Completed 500 Internal Server Error in 1ms
15174
+
15175
+ NoMethodError (undefined method `agnostic_date_add' for #<AssetsController:0x3fb38f8>):
15176
+ app/controllers/assets_controller.rb:85:in `tax_year'
15177
+
15178
+
15179
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
15180
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
15181
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.0ms)
15182
+
15183
+
15184
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:26:30 -0600
15185
+ Processing by AssetsController#tax_year as HTML
15186
+ Parameters: {"tax_year"=>"2013"}
15187
+ Completed 500 Internal Server Error in 0ms
15188
+
15189
+ ArgumentError (comparison of String with 0 failed):
15190
+ app/controllers/assets_controller.rb:85:in `<'
15191
+ app/controllers/assets_controller.rb:85:in `new'
15192
+ app/controllers/assets_controller.rb:85:in `tax_year'
15193
+
15194
+
15195
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
15196
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
15197
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.0ms)
15198
+ Connecting to database specified by database.yml
15199
+ Connecting to database specified by database.yml
15200
+
15201
+
15202
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:28:44 -0600
15203
+ Processing by AssetsController#tax_year as HTML
15204
+ Parameters: {"tax_year"=>"2013"}
15205
+ Completed 500 Internal Server Error in 1ms
15206
+
15207
+ ArgumentError (comparison of String with 0 failed):
15208
+ app/controllers/assets_controller.rb:86:in `<'
15209
+ app/controllers/assets_controller.rb:86:in `new'
15210
+ app/controllers/assets_controller.rb:86:in `tax_year'
15211
+
15212
+
15213
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
15214
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
15215
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (55.0ms)
15216
+
15217
+
15218
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15219
+ Processing by AssetsController#tax_year as HTML
15220
+ Parameters: {"tax_year"=>"2013"}
15221
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15222
+ Rendered assets/tax_year.html.erb within layouts/application (0.0ms)
15223
+ Completed 200 OK in 290ms (Views: 133.0ms | ActiveRecord: 12.0ms)
15224
+
15225
+
15226
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15227
+ Served asset /application.css - 304 Not Modified (7ms)
15228
+
15229
+
15230
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15231
+ Served asset /assets.css - 304 Not Modified (2ms)
15232
+
15233
+
15234
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15235
+ Served asset /jquery.js - 304 Not Modified (52ms)
15236
+
15237
+
15238
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15239
+ Served asset /scaffold.css - 304 Not Modified (3ms)
15240
+
15241
+
15242
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15243
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
15244
+
15245
+
15246
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15247
+ Served asset /assets.js - 304 Not Modified (1ms)
15248
+
15249
+
15250
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:28 -0600
15251
+ Served asset /application.js - 304 Not Modified (54ms)
15252
+
15253
+
15254
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15255
+ Processing by AssetsController#tax_year as HTML
15256
+ Parameters: {"tax_year"=>"2013"}
15257
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15258
+ Rendered assets/tax_year.html.erb within layouts/application (0.0ms)
15259
+ Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.0ms)
15260
+
15261
+
15262
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15263
+ Served asset /application.css - 304 Not Modified (0ms)
15264
+
15265
+
15266
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15267
+ Served asset /assets.css - 304 Not Modified (0ms)
15268
+
15269
+
15270
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15271
+ Served asset /jquery.js - 304 Not Modified (0ms)
15272
+
15273
+
15274
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15275
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15276
+
15277
+
15278
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15279
+ Served asset /assets.js - 304 Not Modified (0ms)
15280
+
15281
+
15282
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15283
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15284
+
15285
+
15286
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:29:47 -0600
15287
+ Served asset /application.js - 304 Not Modified (0ms)
15288
+ Connecting to database specified by database.yml
15289
+
15290
+
15291
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:46:33 -0600
15292
+ Processing by AssetsController#tax_year as HTML
15293
+ Parameters: {"tax_year"=>"2013"}
15294
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15295
+ Rendered assets/tax_year.html.erb within layouts/application (95.0ms)
15296
+ Completed 500 Internal Server Error in 293ms
15297
+
15298
+ ActionView::Template::Error (String can't be coerced into Fixnum):
15299
+ 5: </p>
15300
+ 6: <p>
15301
+ 7: <b>Remaining Life:</b>
15302
+ 8: <%= asset.get_remaining_life(params[:tax_year]) %>
15303
+ 9: </p>
15304
+ 10: <p>
15305
+ 11: <b>This years depreciation amount:</b>
15306
+ app/views/assets/tax_year.html.erb:8:in `block in _app_views_assets_tax_year_html_erb___249907263_33176928'
15307
+ app/views/assets/tax_year.html.erb:1:in `each'
15308
+ app/views/assets/tax_year.html.erb:1:in `_app_views_assets_tax_year_html_erb___249907263_33176928'
15309
+
15310
+
15311
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
15312
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
15313
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
15314
+
15315
+
15316
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:46:53 -0600
15317
+ Processing by AssetsController#tax_year as HTML
15318
+ Parameters: {"tax_year"=>"2013"}
15319
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15320
+ Rendered assets/tax_year.html.erb within layouts/application (2.0ms)
15321
+ Completed 500 Internal Server Error in 27ms
15322
+
15323
+ ActionView::Template::Error (undefined method `get_depreciation_amount' for #<Asset:0x2fbc068>):
15324
+ 9: </p>
15325
+ 10: <p>
15326
+ 11: <b>This years depreciation amount:</b>
15327
+ 12: <%= asset.get_depreciation_amount(params[:tax_year].to_i) %>
15328
+ 13: </p>
15329
+ 14: <%end%>
15330
+ app/views/assets/tax_year.html.erb:12:in `block in _app_views_assets_tax_year_html_erb___249907263_23104380'
15331
+ app/views/assets/tax_year.html.erb:1:in `each'
15332
+ app/views/assets/tax_year.html.erb:1:in `_app_views_assets_tax_year_html_erb___249907263_23104380'
15333
+
15334
+
15335
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
15336
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
15337
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
15338
+
15339
+
15340
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:49:01 -0600
15341
+ Processing by AssetsController#tax_year as HTML
15342
+ Parameters: {"tax_year"=>"2013"}
15343
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15344
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15345
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15346
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15347
+ Rendered assets/tax_year.html.erb within layouts/application (12.0ms)
15348
+ Completed 200 OK in 125ms (Views: 122.0ms | ActiveRecord: 1.0ms)
15349
+
15350
+
15351
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:49:01 -0600
15352
+ Served asset /application.css - 304 Not Modified (4ms)
15353
+
15354
+
15355
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:49:01 -0600
15356
+ Served asset /assets.css - 304 Not Modified (2ms)
15357
+
15358
+
15359
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:49:01 -0600
15360
+ Served asset /scaffold.css - 304 Not Modified (1ms)
15361
+
15362
+
15363
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:49:01 -0600
15364
+ Served asset /jquery.js - 304 Not Modified (50ms)
15365
+
15366
+
15367
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:49:02 -0600
15368
+ Served asset /jquery_ujs.js - 304 Not Modified (27ms)
15369
+
15370
+
15371
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:49:02 -0600
15372
+ Served asset /assets.js - 304 Not Modified (1ms)
15373
+
15374
+
15375
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:49:02 -0600
15376
+ Served asset /application.js - 304 Not Modified (44ms)
15377
+
15378
+
15379
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:52:00 -0600
15380
+ Processing by AssetsController#tax_year as HTML
15381
+ Parameters: {"tax_year"=>"2013"}
15382
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15383
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15384
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15385
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15386
+ Rendered assets/tax_year.html.erb within layouts/application (17.0ms)
15387
+ Completed 200 OK in 32ms (Views: 27.0ms | ActiveRecord: 0.0ms)
15388
+
15389
+
15390
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:52:00 -0600
15391
+ Served asset /application.css - 304 Not Modified (1ms)
15392
+
15393
+
15394
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:52:01 -0600
15395
+ Served asset /assets.css - 304 Not Modified (0ms)
15396
+
15397
+
15398
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:52:01 -0600
15399
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15400
+
15401
+
15402
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:52:01 -0600
15403
+ Served asset /jquery.js - 304 Not Modified (0ms)
15404
+
15405
+
15406
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:52:01 -0600
15407
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15408
+
15409
+
15410
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:52:01 -0600
15411
+ Served asset /assets.js - 304 Not Modified (0ms)
15412
+
15413
+
15414
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:52:01 -0600
15415
+ Served asset /application.js - 304 Not Modified (0ms)
15416
+
15417
+
15418
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:53:41 -0600
15419
+ Processing by AssetsController#tax_year as HTML
15420
+ Parameters: {"tax_year"=>"2013"}
15421
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15422
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15423
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15424
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15425
+ Rendered assets/tax_year.html.erb within layouts/application (2.0ms)
15426
+ Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.0ms)
15427
+
15428
+
15429
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:53:42 -0600
15430
+ Served asset /application.css - 304 Not Modified (0ms)
15431
+
15432
+
15433
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:53:42 -0600
15434
+ Served asset /assets.css - 304 Not Modified (0ms)
15435
+
15436
+
15437
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:53:42 -0600
15438
+ Served asset /jquery.js - 304 Not Modified (0ms)
15439
+
15440
+
15441
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:53:42 -0600
15442
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15443
+
15444
+
15445
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:53:42 -0600
15446
+ Served asset /assets.js - 304 Not Modified (0ms)
15447
+
15448
+
15449
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:53:42 -0600
15450
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15451
+
15452
+
15453
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:53:42 -0600
15454
+ Served asset /application.js - 304 Not Modified (0ms)
15455
+
15456
+
15457
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:54:15 -0600
15458
+ Processing by AssetsController#tax_year as HTML
15459
+ Parameters: {"tax_year"=>"2013"}
15460
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15461
+ ERROR: compiling _app_views_assets_tax_year_html_erb___249907263_30107628 RAISED c:/Users/travis.pessetto/Documents/Aptana Studio 3 Workspace/red_panda/test/dummy/app/views/assets/tax_year.html.erb:22: unterminated regexp meets end of file
15462
+ c:/Users/travis.pessetto/Documents/Aptana Studio 3 Workspace/red_panda/test/dummy/app/views/assets/tax_year.html.erb:22: syntax error, unexpected $end, expecting ')'
15463
+ Function body: def _app_views_assets_tax_year_html_erb___249907263_30107628(local_assigns, output_buffer)
15464
+ _old_virtual_path, @virtual_path = @virtual_path, "assets/tax_year";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@assets.each do |asset|
15465
+ @output_buffer.safe_concat('<p>
15466
+ <b>Asset Name:</b>
15467
+ ');@output_buffer.append= ( asset.name );@output_buffer.safe_concat('
15468
+ ');@output_buffer.safe_concat('</p>
15469
+ <p>
15470
+ <b>Remaining Life:</b>
15471
+ ');@output_buffer.append= ( asset.get_remaining_life(params[:tax_year].to_i) );@output_buffer.safe_concat('
15472
+ ');@output_buffer.safe_concat('</p>
15473
+ <p>
15474
+ <b>This years depreciation amount:</b>
15475
+ ');@output_buffer.append= ( asset.get_deprication_amount(params[:tax_year].to_i) );@output_buffer.safe_concat('
15476
+ ');@output_buffer.safe_concat('</p>
15477
+ <hr />
15478
+
15479
+ ');end
15480
+ @output_buffer.safe_concat('
15481
+ <p>
15482
+ <b>Total Deprication this year:</b>
15483
+ '); total = @assets.inject{|sum,asset|sum + asset.get_deprication_amount(params[:tax_year].to_i)}
15484
+ @output_buffer.safe_concat(' ');@output_buffer.append= ( #{total});@output_buffer.safe_concat('
15485
+ ');@output_buffer.safe_concat('</p>');@output_buffer.to_s
15486
+ ensure
15487
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
15488
+ end
15489
+
15490
+ Backtrace: c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
15491
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
15492
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
15493
+ <internal:prelude>:10:in `synchronize'
15494
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
15495
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
15496
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
15497
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
15498
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
15499
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
15500
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
15501
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
15502
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
15503
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
15504
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
15505
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
15506
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
15507
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
15508
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
15509
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
15510
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
15511
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
15512
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
15513
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
15514
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
15515
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
15516
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
15517
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
15518
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
15519
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
15520
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
15521
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
15522
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
15523
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
15524
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
15525
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
15526
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
15527
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
15528
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
15529
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
15530
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__247352190__process_action__468502747__callbacks'
15531
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
15532
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
15533
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
15534
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
15535
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
15536
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
15537
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
15538
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
15539
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
15540
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
15541
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
15542
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
15543
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
15544
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
15545
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
15546
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
15547
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
15548
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
15549
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
15550
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
15551
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
15552
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
15553
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
15554
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
15555
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
15556
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
15557
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
15558
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
15559
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
15560
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
15561
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
15562
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
15563
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
15564
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
15565
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
15566
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
15567
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__684031934__call__70189355__callbacks'
15568
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
15569
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
15570
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
15571
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
15572
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
15573
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
15574
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
15575
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
15576
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
15577
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
15578
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
15579
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
15580
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
15581
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
15582
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
15583
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
15584
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
15585
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
15586
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
15587
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
15588
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
15589
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
15590
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
15591
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
15592
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
15593
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
15594
+ Rendered assets/tax_year.html.erb within layouts/application (1.0ms)
15595
+ Completed 500 Internal Server Error in 13ms
15596
+
15597
+ ActionView::Template::Error (c:/Users/travis.pessetto/Documents/Aptana Studio 3 Workspace/red_panda/test/dummy/app/views/assets/tax_year.html.erb:22: unterminated regexp meets end of file
15598
+ c:/Users/travis.pessetto/Documents/Aptana Studio 3 Workspace/red_panda/test/dummy/app/views/assets/tax_year.html.erb:22: syntax error, unexpected $end, expecting ')'):
15599
+ 19: <b>Total Deprication this year:</b>
15600
+ 20: <% total = @assets.inject{|sum,asset|sum + asset.get_deprication_amount(params[:tax_year].to_i)}%>
15601
+ 21: <%= #{total}%>
15602
+ 22: </p>
15603
+ actionpack (3.2.13) lib/action_view/template.rb:297:in `module_eval'
15604
+ actionpack (3.2.13) lib/action_view/template.rb:297:in `compile'
15605
+ actionpack (3.2.13) lib/action_view/template.rb:244:in `block in compile!'
15606
+ <internal:prelude>:10:in `synchronize'
15607
+ actionpack (3.2.13) lib/action_view/template.rb:232:in `compile!'
15608
+ actionpack (3.2.13) lib/action_view/template.rb:144:in `block in render'
15609
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
15610
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
15611
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
15612
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
15613
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
15614
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
15615
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
15616
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
15617
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
15618
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
15619
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
15620
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
15621
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
15622
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
15623
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
15624
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
15625
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
15626
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
15627
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
15628
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
15629
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
15630
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
15631
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
15632
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
15633
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
15634
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
15635
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
15636
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
15637
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
15638
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
15639
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
15640
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
15641
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
15642
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
15643
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__247352190__process_action__468502747__callbacks'
15644
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
15645
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
15646
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
15647
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
15648
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
15649
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
15650
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
15651
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
15652
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
15653
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
15654
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
15655
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
15656
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
15657
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
15658
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
15659
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
15660
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
15661
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
15662
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
15663
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
15664
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
15665
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
15666
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
15667
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
15668
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
15669
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
15670
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
15671
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
15672
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
15673
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
15674
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
15675
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
15676
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
15677
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
15678
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
15679
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
15680
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__684031934__call__70189355__callbacks'
15681
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
15682
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
15683
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
15684
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
15685
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
15686
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
15687
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
15688
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
15689
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
15690
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
15691
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
15692
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
15693
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15694
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15695
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
15696
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
15697
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
15698
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
15699
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
15700
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
15701
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
15702
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
15703
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
15704
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
15705
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
15706
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
15707
+
15708
+
15709
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
15710
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
15711
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
15712
+
15713
+
15714
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:54:33 -0600
15715
+ Processing by AssetsController#tax_year as HTML
15716
+ Parameters: {"tax_year"=>"2013"}
15717
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15718
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15719
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15720
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15721
+ Rendered assets/tax_year.html.erb within layouts/application (3.0ms)
15722
+ Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.0ms)
15723
+
15724
+
15725
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:33 -0600
15726
+ Served asset /application.css - 304 Not Modified (0ms)
15727
+
15728
+
15729
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:33 -0600
15730
+ Served asset /assets.css - 304 Not Modified (0ms)
15731
+
15732
+
15733
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:33 -0600
15734
+ Served asset /jquery.js - 304 Not Modified (0ms)
15735
+
15736
+
15737
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:33 -0600
15738
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15739
+
15740
+
15741
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:33 -0600
15742
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15743
+
15744
+
15745
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:33 -0600
15746
+ Served asset /assets.js - 304 Not Modified (0ms)
15747
+
15748
+
15749
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:34 -0600
15750
+ Served asset /application.js - 304 Not Modified (0ms)
15751
+
15752
+
15753
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:54:45 -0600
15754
+ Processing by AssetsController#tax_year as HTML
15755
+ Parameters: {"tax_year"=>"2013"}
15756
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15757
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15758
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15759
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15760
+ Rendered assets/tax_year.html.erb within layouts/application (3.0ms)
15761
+ Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.0ms)
15762
+
15763
+
15764
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:45 -0600
15765
+ Served asset /application.css - 304 Not Modified (0ms)
15766
+
15767
+
15768
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:45 -0600
15769
+ Served asset /assets.css - 304 Not Modified (0ms)
15770
+
15771
+
15772
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:46 -0600
15773
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15774
+
15775
+
15776
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:46 -0600
15777
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15778
+
15779
+
15780
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:46 -0600
15781
+ Served asset /jquery.js - 304 Not Modified (0ms)
15782
+
15783
+
15784
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:46 -0600
15785
+ Served asset /assets.js - 304 Not Modified (0ms)
15786
+
15787
+
15788
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:46 -0600
15789
+ Served asset /application.js - 304 Not Modified (0ms)
15790
+
15791
+
15792
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:54:55 -0600
15793
+ Processing by AssetsController#tax_year as HTML
15794
+ Parameters: {"tax_year"=>"2013"}
15795
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15796
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15797
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15798
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15799
+ Rendered assets/tax_year.html.erb within layouts/application (2.0ms)
15800
+ Completed 200 OK in 11ms (Views: 8.0ms | ActiveRecord: 0.0ms)
15801
+
15802
+
15803
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:55 -0600
15804
+ Served asset /application.css - 304 Not Modified (1ms)
15805
+
15806
+
15807
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:55 -0600
15808
+ Served asset /assets.css - 304 Not Modified (0ms)
15809
+
15810
+
15811
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:54:55 -0600
15812
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15813
+
15814
+
15815
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:55 -0600
15816
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15817
+
15818
+
15819
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:55 -0600
15820
+ Served asset /jquery.js - 304 Not Modified (0ms)
15821
+
15822
+
15823
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:55 -0600
15824
+ Served asset /assets.js - 304 Not Modified (0ms)
15825
+
15826
+
15827
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:54:56 -0600
15828
+ Served asset /application.js - 304 Not Modified (0ms)
15829
+
15830
+
15831
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:55:20 -0600
15832
+ Processing by AssetsController#tax_year as HTML
15833
+ Parameters: {"tax_year"=>"2013"}
15834
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
15835
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15836
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15837
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
15838
+ Rendered assets/tax_year.html.erb within layouts/application (4.0ms)
15839
+ Completed 200 OK in 15ms (Views: 12.0ms | ActiveRecord: 1.0ms)
15840
+
15841
+
15842
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:20 -0600
15843
+ Served asset /application.css - 304 Not Modified (1ms)
15844
+
15845
+
15846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:20 -0600
15847
+ Served asset /jquery.js - 304 Not Modified (0ms)
15848
+
15849
+
15850
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:20 -0600
15851
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15852
+
15853
+
15854
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:20 -0600
15855
+ Served asset /assets.css - 304 Not Modified (0ms)
15856
+
15857
+
15858
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:21 -0600
15859
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15860
+
15861
+
15862
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:21 -0600
15863
+ Served asset /assets.js - 304 Not Modified (0ms)
15864
+
15865
+
15866
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:21 -0600
15867
+ Served asset /application.js - 304 Not Modified (0ms)
15868
+
15869
+
15870
+ Started GET "/assets/new" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15871
+ Served asset /new - 404 Not Found (6ms)
15872
+ Processing by AssetsController#new as HTML
15873
+ Rendered assets/_form.html.erb (105.0ms)
15874
+ Rendered assets/new.html.erb within layouts/application (199.0ms)
15875
+ Completed 200 OK in 208ms (Views: 208.0ms | ActiveRecord: 0.0ms)
15876
+
15877
+
15878
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15879
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15880
+
15881
+
15882
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15883
+ Served asset /assets.css - 304 Not Modified (0ms)
15884
+
15885
+
15886
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15887
+ Served asset /application.css - 304 Not Modified (0ms)
15888
+
15889
+
15890
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15891
+ Served asset /jquery.js - 304 Not Modified (0ms)
15892
+
15893
+
15894
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15895
+ Served asset /assets.js - 304 Not Modified (0ms)
15896
+
15897
+
15898
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15899
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15900
+
15901
+
15902
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:43 -0600
15903
+ Served asset /application.js - 304 Not Modified (0ms)
15904
+
15905
+
15906
+ Started POST "/assets" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15907
+ Served asset / - 404 Not Found (1ms)
15908
+ Processing by AssetsController#create as HTML
15909
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"BpwkttjDUjWSLc3UtTApsi/W1SdCiEd7COR1Uh9ZbpY=", "asset"=>{"name"=>"Car", "purchase_date(1i)"=>"2012", "purchase_date(2i)"=>"6", "purchase_date(3i)"=>"6", "purchase_price"=>"15000", "lifetime"=>"10"}, "commit"=>"Create Asset"}
15910
+  (0.0ms) begin transaction
15911
+ SQL (1.0ms) INSERT INTO "assets" ("created_at", "lifetime", "name", "purchase_date", "purchase_price", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 06 Jun 2013 22:55:56 UTC +00:00], ["lifetime", 10], ["name", "Car"], ["purchase_date", Wed, 06 Jun 2012], ["purchase_price", #<BigDecimal:304e258,'0.15E5',9(18)>], ["updated_at", Thu, 06 Jun 2013 22:55:56 UTC +00:00]]
15912
+  (7.0ms) commit transaction
15913
+ Redirected to http://localhost:3000/assets/7
15914
+ Completed 302 Found in 13ms (ActiveRecord: 8.0ms)
15915
+
15916
+
15917
+ Started GET "/assets/7" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15918
+ Served asset /7 - 404 Not Found (4ms)
15919
+ Processing by AssetsController#show as HTML
15920
+ Parameters: {"id"=>"7"}
15921
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "7"]]
15922
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
15923
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
15924
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
15925
+ Rendered assets/show.html.erb within layouts/application (3.0ms)
15926
+ Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.0ms)
15927
+
15928
+
15929
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15930
+ Served asset /application.css - 304 Not Modified (0ms)
15931
+
15932
+
15933
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15934
+ Served asset /assets.css - 304 Not Modified (0ms)
15935
+
15936
+
15937
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15938
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15939
+
15940
+
15941
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15942
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15943
+
15944
+
15945
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15946
+ Served asset /jquery.js - 304 Not Modified (0ms)
15947
+
15948
+
15949
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15950
+ Served asset /assets.js - 304 Not Modified (0ms)
15951
+
15952
+
15953
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:55:56 -0600
15954
+ Served asset /application.js - 304 Not Modified (0ms)
15955
+
15956
+
15957
+ Started GET "/assets/7?search_year=2012" for 127.0.0.1 at 2013-06-06 16:56:05 -0600
15958
+ Served asset /7 - 404 Not Found (3ms)
15959
+ Processing by AssetsController#show as HTML
15960
+ Parameters: {"search_year"=>"2012", "id"=>"7"}
15961
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "7"]]
15962
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
15963
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
15964
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
15965
+ Rendered assets/show.html.erb within layouts/application (2.0ms)
15966
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 1.0ms)
15967
+
15968
+
15969
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-06 16:56:05 -0600
15970
+ Served asset /application.css - 304 Not Modified (0ms)
15971
+
15972
+
15973
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-06 16:56:05 -0600
15974
+ Served asset /assets.css - 304 Not Modified (0ms)
15975
+
15976
+
15977
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-06 16:56:05 -0600
15978
+ Served asset /jquery.js - 304 Not Modified (0ms)
15979
+
15980
+
15981
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-06 16:56:05 -0600
15982
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
15983
+
15984
+
15985
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-06 16:56:05 -0600
15986
+ Served asset /scaffold.css - 304 Not Modified (0ms)
15987
+
15988
+
15989
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-06 16:56:05 -0600
15990
+ Served asset /assets.js - 304 Not Modified (0ms)
15991
+
15992
+
15993
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-06 16:56:06 -0600
15994
+ Served asset /application.js - 304 Not Modified (0ms)
15995
+
15996
+
15997
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-06 16:56:12 -0600
15998
+ Processing by AssetsController#tax_year as HTML
15999
+ Parameters: {"tax_year"=>"2013"}
16000
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16001
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16002
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16003
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16004
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16005
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16006
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16007
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16008
+ Rendered assets/tax_year.html.erb within layouts/application (18.0ms)
16009
+ Completed 500 Internal Server Error in 25ms
16010
+
16011
+ ActionView::Template::Error (undefined method `+' for #<Asset:0x2d45b58>):
16012
+ 17:
16013
+ 18: <p>
16014
+ 19: <b>Total Deprication this year:</b>
16015
+ 20: <% total = @assets.inject{|sum,asset|sum + asset.get_deprication_amount(params[:tax_year].to_i)}%>
16016
+ 21: <pre><%= total.to_yaml %></pre>
16017
+ 22: </p>
16018
+ app/views/assets/tax_year.html.erb:20:in `block in _app_views_assets_tax_year_html_erb___249907263_25016400'
16019
+ app/views/assets/tax_year.html.erb:20:in `each'
16020
+ app/views/assets/tax_year.html.erb:20:in `inject'
16021
+ app/views/assets/tax_year.html.erb:20:in `_app_views_assets_tax_year_html_erb___249907263_25016400'
16022
+
16023
+
16024
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
16025
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
16026
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
16027
+ Connecting to database specified by database.yml
16028
+
16029
+
16030
+ Started GET "/" for 127.0.0.1 at 2013-06-10 07:34:06 -0600
16031
+
16032
+ ActionController::RoutingError (No route matches [GET] "/"):
16033
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
16034
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
16035
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
16036
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
16037
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
16038
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
16039
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
16040
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
16041
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
16042
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
16043
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
16044
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
16045
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
16046
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
16047
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
16048
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
16049
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
16050
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
16051
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
16052
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
16053
+
16054
+
16055
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.0ms)
16056
+
16057
+
16058
+ Started GET "/assets/" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16059
+ Served asset / - 404 Not Found (2ms)
16060
+ Processing by AssetsController#index as HTML
16061
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" 
16062
+ Rendered assets/index.html.erb within layouts/application (5.0ms)
16063
+ Completed 200 OK in 254ms (Views: 130.0ms | ActiveRecord: 10.0ms)
16064
+
16065
+
16066
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16067
+ Served asset /application.css - 304 Not Modified (16ms)
16068
+
16069
+
16070
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16071
+ Served asset /assets.css - 304 Not Modified (1ms)
16072
+
16073
+
16074
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16075
+ Served asset /jquery.js - 304 Not Modified (50ms)
16076
+
16077
+
16078
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16079
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16080
+
16081
+
16082
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16083
+ Served asset /jquery_ujs.js - 304 Not Modified (14ms)
16084
+
16085
+
16086
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16087
+ Served asset /assets.js - 304 Not Modified (1ms)
16088
+
16089
+
16090
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 07:34:11 -0600
16091
+ Served asset /application.js - 304 Not Modified (48ms)
16092
+
16093
+
16094
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 07:51:53 -0600
16095
+ Processing by AssetsController#tax_year as HTML
16096
+ Parameters: {"tax_year"=>"2013"}
16097
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16098
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16099
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16100
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16101
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16102
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16103
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16104
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16105
+ Rendered assets/tax_year.html.erb within layouts/application (48.0ms)
16106
+ Completed 500 Internal Server Error in 140ms
16107
+
16108
+ ActionView::Template::Error (undefined method `+' for #<Asset:0x6105b40>):
16109
+ 17:
16110
+ 18: <p>
16111
+ 19: <b>Total Deprication this year:</b>
16112
+ 20: <% total = @assets.inject{|sum,asset|sum + asset.get_deprication_amount(params[:tax_year].to_i)}%>
16113
+ 21: <pre><%= total.to_yaml %></pre>
16114
+ 22: </p>
16115
+ app/views/assets/tax_year.html.erb:20:in `block in _app_views_assets_tax_year_html_erb__132585650_50864280'
16116
+ app/views/assets/tax_year.html.erb:20:in `each'
16117
+ app/views/assets/tax_year.html.erb:20:in `inject'
16118
+ app/views/assets/tax_year.html.erb:20:in `_app_views_assets_tax_year_html_erb__132585650_50864280'
16119
+
16120
+
16121
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
16122
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16123
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
16124
+
16125
+
16126
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 08:04:54 -0600
16127
+ Processing by AssetsController#tax_year as HTML
16128
+ Parameters: {"tax_year"=>"2013"}
16129
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16130
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16131
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16132
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16133
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16134
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16135
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16136
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16137
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16138
+ Rendered assets/tax_year.html.erb within layouts/application (15.0ms)
16139
+ Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.0ms)
16140
+
16141
+
16142
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:04:54 -0600
16143
+ Served asset /assets.css - 304 Not Modified (0ms)
16144
+
16145
+
16146
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:04:54 -0600
16147
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16148
+
16149
+
16150
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:04:54 -0600
16151
+ Served asset /jquery.js - 304 Not Modified (0ms)
16152
+
16153
+
16154
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:04:54 -0600
16155
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16156
+
16157
+
16158
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:04:54 -0600
16159
+ Served asset /application.css - 304 Not Modified (0ms)
16160
+
16161
+
16162
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:04:54 -0600
16163
+ Served asset /assets.js - 304 Not Modified (0ms)
16164
+
16165
+
16166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:04:55 -0600
16167
+ Served asset /application.js - 304 Not Modified (0ms)
16168
+
16169
+
16170
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16171
+ Processing by AssetsController#tax_year as HTML
16172
+ Parameters: {"tax_year"=>"2013"}
16173
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16174
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16175
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16176
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16177
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16178
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16179
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16180
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16181
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16182
+ Rendered assets/tax_year.html.erb within layouts/application (16.0ms)
16183
+ Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 2.0ms)
16184
+
16185
+
16186
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16187
+ Served asset /application.css - 304 Not Modified (0ms)
16188
+
16189
+
16190
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16191
+ Served asset /jquery.js - 304 Not Modified (0ms)
16192
+
16193
+
16194
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16195
+ Served asset /scaffold.css - 304 Not Modified (1ms)
16196
+
16197
+
16198
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16199
+ Served asset /assets.css - 304 Not Modified (0ms)
16200
+
16201
+
16202
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16203
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16204
+
16205
+
16206
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16207
+ Served asset /assets.js - 304 Not Modified (0ms)
16208
+
16209
+
16210
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:19 -0600
16211
+ Served asset /application.js - 304 Not Modified (0ms)
16212
+
16213
+
16214
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 08:05:48 -0600
16215
+ Processing by AssetsController#tax_year as HTML
16216
+ Parameters: {"tax_year"=>"2013"}
16217
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16218
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16219
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16220
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16221
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16222
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16223
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16224
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16225
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16226
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16227
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16228
+ Rendered assets/tax_year.html.erb within layouts/application (16.0ms)
16229
+ Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.0ms)
16230
+
16231
+
16232
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:05:49 -0600
16233
+ Served asset /application.css - 304 Not Modified (0ms)
16234
+
16235
+
16236
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:05:49 -0600
16237
+ Served asset /assets.css - 304 Not Modified (0ms)
16238
+
16239
+
16240
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:05:49 -0600
16241
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16242
+
16243
+
16244
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:49 -0600
16245
+ Served asset /jquery.js - 304 Not Modified (0ms)
16246
+
16247
+
16248
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:49 -0600
16249
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
16250
+
16251
+
16252
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:49 -0600
16253
+ Served asset /assets.js - 304 Not Modified (0ms)
16254
+
16255
+
16256
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:05:49 -0600
16257
+ Served asset /application.js - 304 Not Modified (0ms)
16258
+
16259
+
16260
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 08:14:25 -0600
16261
+ Processing by AssetsController#tax_year as HTML
16262
+ Parameters: {"tax_year"=>"2013"}
16263
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16264
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16265
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16266
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16267
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16268
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16269
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16270
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16271
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16272
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16273
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16274
+ Rendered assets/tax_year.html.erb within layouts/application (14.0ms)
16275
+ Completed 200 OK in 37ms (Views: 34.0ms | ActiveRecord: 1.0ms)
16276
+
16277
+
16278
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:14:25 -0600
16279
+ Served asset /application.css - 304 Not Modified (0ms)
16280
+
16281
+
16282
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:14:25 -0600
16283
+ Served asset /assets.css - 304 Not Modified (0ms)
16284
+
16285
+
16286
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:14:26 -0600
16287
+ Served asset /jquery.js - 304 Not Modified (0ms)
16288
+
16289
+
16290
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:14:26 -0600
16291
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16292
+
16293
+
16294
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:14:26 -0600
16295
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16296
+
16297
+
16298
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:14:26 -0600
16299
+ Served asset /assets.js - 304 Not Modified (1ms)
16300
+
16301
+
16302
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:14:26 -0600
16303
+ Served asset /application.js - 304 Not Modified (0ms)
16304
+
16305
+
16306
+ Started GET "/asset/tax_year/2014" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16307
+ Processing by AssetsController#tax_year as HTML
16308
+ Parameters: {"tax_year"=>"2014"}
16309
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2014-01-01' AND purchase_date < '2014-01-01')
16310
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16311
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16312
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16313
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16314
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16315
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16316
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16317
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16318
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16319
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16320
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16321
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16322
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16323
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16324
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16325
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16326
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16327
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16328
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16329
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16330
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16331
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16332
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16333
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16334
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16335
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16336
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16337
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16338
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16339
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16340
+ Rendered assets/tax_year.html.erb within layouts/application (54.0ms)
16341
+ Completed 200 OK in 72ms (Views: 69.0ms | ActiveRecord: 2.0ms)
16342
+
16343
+
16344
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16345
+ Served asset /application.css - 304 Not Modified (0ms)
16346
+
16347
+
16348
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16349
+ Served asset /assets.css - 304 Not Modified (0ms)
16350
+
16351
+
16352
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16353
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16354
+
16355
+
16356
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16357
+ Served asset /jquery.js - 304 Not Modified (0ms)
16358
+
16359
+
16360
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16361
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16362
+
16363
+
16364
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16365
+ Served asset /assets.js - 304 Not Modified (0ms)
16366
+
16367
+
16368
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:17:32 -0600
16369
+ Served asset /application.js - 304 Not Modified (0ms)
16370
+
16371
+
16372
+ Started GET "/asset/tax_year/2099" for 127.0.0.1 at 2013-06-10 08:18:12 -0600
16373
+ Processing by AssetsController#tax_year as HTML
16374
+ Parameters: {"tax_year"=>"2099"}
16375
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2099-01-01' AND purchase_date < '2099-01-01')
16376
+ Rendered assets/tax_year.html.erb within layouts/application (0.0ms)
16377
+ Completed 200 OK in 22ms (Views: 9.0ms | ActiveRecord: 0.0ms)
16378
+
16379
+
16380
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:18:12 -0600
16381
+ Served asset /application.css - 304 Not Modified (0ms)
16382
+
16383
+
16384
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:18:12 -0600
16385
+ Served asset /jquery.js - 304 Not Modified (0ms)
16386
+
16387
+
16388
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:18:12 -0600
16389
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16390
+
16391
+
16392
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:18:12 -0600
16393
+ Served asset /assets.css - 304 Not Modified (0ms)
16394
+
16395
+
16396
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:18:13 -0600
16397
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16398
+
16399
+
16400
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:18:13 -0600
16401
+ Served asset /assets.js - 304 Not Modified (0ms)
16402
+
16403
+
16404
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:18:13 -0600
16405
+ Served asset /application.js - 304 Not Modified (0ms)
16406
+
16407
+
16408
+ Started GET "/assets/6" for 127.0.0.1 at 2013-06-10 08:35:38 -0600
16409
+ Served asset /6 - 404 Not Found (4ms)
16410
+ Processing by AssetsController#show as HTML
16411
+ Parameters: {"id"=>"6"}
16412
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "6"]]
16413
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16414
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16415
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16416
+ Rendered assets/show.html.erb within layouts/application (3.0ms)
16417
+ Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.0ms)
16418
+
16419
+
16420
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:35:38 -0600
16421
+ Served asset /application.css - 304 Not Modified (0ms)
16422
+
16423
+
16424
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:35:39 -0600
16425
+ Served asset /assets.css - 304 Not Modified (0ms)
16426
+
16427
+
16428
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:35:39 -0600
16429
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16430
+
16431
+
16432
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:39 -0600
16433
+ Served asset /jquery.js - 304 Not Modified (0ms)
16434
+
16435
+
16436
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:39 -0600
16437
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16438
+
16439
+
16440
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:39 -0600
16441
+ Served asset /assets.js - 304 Not Modified (0ms)
16442
+
16443
+
16444
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:39 -0600
16445
+ Served asset /application.js - 304 Not Modified (0ms)
16446
+
16447
+
16448
+ Started GET "/assets/6?search_year=2099" for 127.0.0.1 at 2013-06-10 08:35:45 -0600
16449
+ Served asset /6 - 404 Not Found (3ms)
16450
+ Processing by AssetsController#show as HTML
16451
+ Parameters: {"search_year"=>"2099", "id"=>"6"}
16452
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "6"]]
16453
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16454
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16455
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16456
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16457
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16458
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16459
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16460
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16461
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16462
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16463
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16464
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16465
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16466
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16467
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16468
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16469
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16470
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16471
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16472
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16473
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16474
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16475
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16476
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16477
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16478
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16479
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16480
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16481
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16482
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16483
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16484
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16485
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16486
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16487
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16488
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16489
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16490
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16491
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16492
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16493
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16494
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16495
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16496
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16497
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16498
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16499
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16500
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16501
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16502
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16503
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16504
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16505
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16506
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16507
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16508
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16509
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16510
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16511
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16512
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16513
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16514
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16515
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16516
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16517
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16518
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16519
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16520
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16521
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16522
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16523
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16524
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16525
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16526
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16527
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16528
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16529
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16530
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16531
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16532
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16533
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16534
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16535
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16536
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16537
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16538
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16539
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16540
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16541
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16542
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16543
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16544
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16545
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16546
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16547
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16548
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16549
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16550
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16551
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16552
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16553
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16554
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16555
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16556
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16557
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16558
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16559
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16560
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16561
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16562
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16563
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16564
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16565
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16566
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16567
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16568
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16569
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16570
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16571
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16572
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16573
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16574
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16575
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16576
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16577
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16578
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16579
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16580
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16581
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16582
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16583
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16584
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16585
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16586
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16587
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16588
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16589
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16590
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16591
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16592
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16593
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16594
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16595
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16596
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16597
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16598
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16599
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16600
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16601
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16602
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16603
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16604
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16605
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16606
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16607
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16608
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16609
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16610
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16611
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16612
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16613
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16614
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16615
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16616
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16617
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16618
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16619
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16620
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16621
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16622
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16623
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16624
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16625
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16626
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16627
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16628
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16629
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16630
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16631
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16632
+ Rendered assets/show.html.erb within layouts/application (286.0ms)
16633
+ Completed 200 OK in 295ms (Views: 294.0ms | ActiveRecord: 0.0ms)
16634
+
16635
+
16636
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 08:35:45 -0600
16637
+ Served asset /application.css - 304 Not Modified (0ms)
16638
+
16639
+
16640
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 08:35:45 -0600
16641
+ Served asset /assets.css - 304 Not Modified (0ms)
16642
+
16643
+
16644
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:46 -0600
16645
+ Served asset /jquery.js - 304 Not Modified (0ms)
16646
+
16647
+
16648
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 08:35:46 -0600
16649
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16650
+
16651
+
16652
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:46 -0600
16653
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16654
+
16655
+
16656
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:46 -0600
16657
+ Served asset /assets.js - 304 Not Modified (0ms)
16658
+
16659
+
16660
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 08:35:46 -0600
16661
+ Served asset /application.js - 304 Not Modified (0ms)
16662
+
16663
+
16664
+ Started GET "/" for 127.0.0.1 at 2013-06-10 08:50:43 -0600
16665
+
16666
+ ActionController::RoutingError (No route matches [GET] "/"):
16667
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
16668
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
16669
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
16670
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
16671
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
16672
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
16673
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
16674
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
16675
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
16676
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
16677
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
16678
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
16679
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
16680
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
16681
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
16682
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
16683
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
16684
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
16685
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
16686
+ c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
16687
+
16688
+
16689
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
16690
+
16691
+
16692
+ Started GET "/assets/" for 127.0.0.1 at 2013-06-10 09:45:29 -0600
16693
+ Served asset / - 404 Not Found (3ms)
16694
+ Processing by AssetsController#index as HTML
16695
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets"
16696
+ Rendered assets/index.html.erb within layouts/application (4.0ms)
16697
+ Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.0ms)
16698
+
16699
+
16700
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 09:45:29 -0600
16701
+ Served asset /scaffold.css - 304 Not Modified (0ms)
16702
+
16703
+
16704
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 09:45:29 -0600
16705
+ Served asset /application.css - 304 Not Modified (0ms)
16706
+
16707
+
16708
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 09:45:29 -0600
16709
+ Served asset /assets.css - 304 Not Modified (0ms)
16710
+
16711
+
16712
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:29 -0600
16713
+ Served asset /jquery.js - 304 Not Modified (0ms)
16714
+
16715
+
16716
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:29 -0600
16717
+ Served asset /assets.js - 304 Not Modified (0ms)
16718
+
16719
+
16720
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:30 -0600
16721
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
16722
+
16723
+
16724
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:30 -0600
16725
+ Served asset /application.js - 304 Not Modified (0ms)
16726
+ Connecting to database specified by database.yml
16727
+
16728
+
16729
+ Started GET "/assets/" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16730
+ Served asset / - 404 Not Found (4ms)
16731
+ Processing by AssetsController#index as HTML
16732
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" 
16733
+ Rendered assets/index.html.erb within layouts/application (24.0ms)
16734
+ Completed 200 OK in 379ms (Views: 251.0ms | ActiveRecord: 12.0ms)
16735
+
16736
+
16737
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16738
+ Served asset /application.css - 304 Not Modified (7ms)
16739
+
16740
+
16741
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16742
+ Served asset /assets.css - 304 Not Modified (2ms)
16743
+
16744
+
16745
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16746
+ Served asset /scaffold.css - 304 Not Modified (2ms)
16747
+
16748
+
16749
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16750
+ Served asset /jquery.js - 304 Not Modified (59ms)
16751
+
16752
+
16753
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16754
+ Served asset /jquery_ujs.js - 304 Not Modified (15ms)
16755
+
16756
+
16757
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16758
+ Served asset /assets.js - 304 Not Modified (2ms)
16759
+
16760
+
16761
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 09:45:51 -0600
16762
+ Served asset /application.js - 304 Not Modified (66ms)
16763
+
16764
+
16765
+ Started GET "/assets/7" for 127.0.0.1 at 2013-06-10 09:52:46 -0600
16766
+ Served asset /7 - 404 Not Found (3ms)
16767
+ Processing by AssetsController#show as HTML
16768
+ Parameters: {"id"=>"7"}
16769
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "7"]]
16770
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16771
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16772
+ Rendered assets/show.html.erb within layouts/application (50.0ms)
16773
+ Completed 500 Internal Server Error in 67ms
16774
+
16775
+ ActionView::Template::Error (undefined method `get_rate' for 0.0:Float):
16776
+ 27:
16777
+ 28: <p>
16778
+ 29: <b>This year's convention rate:</b>
16779
+ 30: <%= @asset.get_convention_rate(params[:search_year].to_i) %>
16780
+ 31: </p>
16781
+ 32:
16782
+ 33: <p>
16783
+ app/views/assets/show.html.erb:30:in `_app_views_assets_show_html_erb__802586511_21977928'
16784
+ app/controllers/assets_controller.rb:18:in `show'
16785
+
16786
+
16787
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
16788
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16789
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.0ms)
16790
+
16791
+
16792
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 09:53:11 -0600
16793
+ Processing by AssetsController#tax_year as HTML
16794
+ Parameters: {"tax_year"=>"2013"}
16795
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16796
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16797
+ Rendered assets/tax_year.html.erb within layouts/application (3.0ms)
16798
+ Completed 500 Internal Server Error in 11ms
16799
+
16800
+ ActionView::Template::Error (undefined method `get_rate' for 0.0:Float):
16801
+ 9: </p>
16802
+ 10: <p>
16803
+ 11: <b>This years depreciation amount:</b>
16804
+ 12: <%= asset.get_deprication_amount(params[:tax_year].to_i) %>
16805
+ 13: </p>
16806
+ 14: <hr />
16807
+ 15:
16808
+ app/views/assets/tax_year.html.erb:12:in `block in _app_views_assets_tax_year_html_erb__1051411546_33546996'
16809
+ app/views/assets/tax_year.html.erb:1:in `each'
16810
+ app/views/assets/tax_year.html.erb:1:in `_app_views_assets_tax_year_html_erb__1051411546_33546996'
16811
+
16812
+
16813
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
16814
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16815
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.0ms)
16816
+ Connecting to database specified by database.yml
16817
+
16818
+
16819
+ Started GET "/assets/7" for 127.0.0.1 at 2013-06-10 09:57:44 -0600
16820
+ Served asset /7 - 404 Not Found (3ms)
16821
+ Processing by AssetsController#show as HTML
16822
+ Parameters: {"id"=>"7"}
16823
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "7"]]
16824
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16825
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16826
+ Rendered assets/show.html.erb within layouts/application (80.0ms)
16827
+ Completed 500 Internal Server Error in 255ms
16828
+
16829
+ ActionView::Template::Error (undefined method `get_rate' for 0:Fixnum):
16830
+ 27:
16831
+ 28: <p>
16832
+ 29: <b>This year's convention rate:</b>
16833
+ 30: <%= @asset.get_convention_rate(params[:search_year].to_i) %>
16834
+ 31: </p>
16835
+ 32:
16836
+ 33: <p>
16837
+ app/views/assets/show.html.erb:30:in `_app_views_assets_show_html_erb__747262536_32847276'
16838
+ app/controllers/assets_controller.rb:18:in `show'
16839
+
16840
+
16841
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
16842
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16843
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
16844
+ Connecting to database specified by database.yml
16845
+
16846
+
16847
+ Started GET "/assets/7" for 127.0.0.1 at 2013-06-10 10:04:55 -0600
16848
+ Served asset /7 - 404 Not Found (3ms)
16849
+ Processing by AssetsController#show as HTML
16850
+ Parameters: {"id"=>"7"}
16851
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "7"]]
16852
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16853
+ Rendered assets/show.html.erb within layouts/application (77.0ms)
16854
+ Completed 500 Internal Server Error in 259ms
16855
+
16856
+ ActionView::Template::Error (Date can't be coerced into Fixnum):
16857
+ 22:
16858
+ 23: <p>
16859
+ 24: <b>Convention:</b>
16860
+ 25: <%= @asset.get_convention.to_s %>
16861
+ 26: </p>
16862
+ 27:
16863
+ 28: <p>
16864
+ app/views/assets/show.html.erb:25:in `_app_views_assets_show_html_erb__924415509_33896964'
16865
+ app/controllers/assets_controller.rb:18:in `show'
16866
+
16867
+
16868
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
16869
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16870
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
16871
+ Connecting to database specified by database.yml
16872
+
16873
+
16874
+ Started GET "/assets/7" for 127.0.0.1 at 2013-06-10 10:05:58 -0600
16875
+ Served asset /7 - 404 Not Found (3ms)
16876
+ Processing by AssetsController#show as HTML
16877
+ Parameters: {"id"=>"7"}
16878
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "7"]]
16879
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
16880
+ Rendered assets/show.html.erb within layouts/application (71.0ms)
16881
+ Completed 500 Internal Server Error in 258ms
16882
+
16883
+ ActionView::Template::Error (Date can't be coerced into Float):
16884
+ 22:
16885
+ 23: <p>
16886
+ 24: <b>Convention:</b>
16887
+ 25: <%= @asset.get_convention.to_s %>
16888
+ 26: </p>
16889
+ 27:
16890
+ 28: <p>
16891
+ app/views/assets/show.html.erb:25:in `_app_views_assets_show_html_erb__457549001_30795864'
16892
+ app/controllers/assets_controller.rb:18:in `show'
16893
+
16894
+
16895
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
16896
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16897
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
16898
+
16899
+
16900
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 10:07:07 -0600
16901
+ Processing by AssetsController#tax_year as HTML
16902
+ Parameters: {"tax_year"=>"2013"}
16903
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
16904
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
16905
+ Rendered assets/tax_year.html.erb within layouts/application (3.0ms)
16906
+ Completed 500 Internal Server Error in 10ms
16907
+
16908
+ ActionView::Template::Error (Date can't be coerced into Float):
16909
+ 9: </p>
16910
+ 10: <p>
16911
+ 11: <b>This years depreciation amount:</b>
16912
+ 12: <%= asset.get_deprication_amount(params[:tax_year].to_i) %>
16913
+ 13: </p>
16914
+ 14: <hr />
16915
+ 15:
16916
+ app/views/assets/tax_year.html.erb:12:in `block in _app_views_assets_tax_year_html_erb___771315352_24638460'
16917
+ app/views/assets/tax_year.html.erb:1:in `each'
16918
+ app/views/assets/tax_year.html.erb:1:in `_app_views_assets_tax_year_html_erb___771315352_24638460'
16919
+
16920
+
16921
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
16922
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16923
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.0ms)
16924
+ Connecting to database specified by database.yml
16925
+
16926
+
16927
+ Started GET "/assets/" for 127.0.0.1 at 2013-06-10 10:14:11 -0600
16928
+ Served asset / - 404 Not Found (1ms)
16929
+ Processing by AssetsController#index as HTML
16930
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" 
16931
+ Rendered assets/index.html.erb within layouts/application (23.0ms)
16932
+ Completed 200 OK in 309ms (Views: 207.0ms | ActiveRecord: 11.0ms)
16933
+
16934
+
16935
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:14:12 -0600
16936
+ Served asset /application.css - 304 Not Modified (3ms)
16937
+
16938
+
16939
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:14:12 -0600
16940
+ Served asset /assets.css - 304 Not Modified (4ms)
16941
+
16942
+
16943
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:14:12 -0600
16944
+ Served asset /scaffold.css - 304 Not Modified (2ms)
16945
+
16946
+
16947
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:14:12 -0600
16948
+ Served asset /jquery.js - 304 Not Modified (39ms)
16949
+
16950
+
16951
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:14:12 -0600
16952
+ Served asset /assets.js - 304 Not Modified (1ms)
16953
+
16954
+
16955
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:14:12 -0600
16956
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
16957
+
16958
+
16959
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:14:13 -0600
16960
+ Served asset /application.js - 304 Not Modified (57ms)
16961
+
16962
+
16963
+ Started GET "/assets/1" for 127.0.0.1 at 2013-06-10 10:14:14 -0600
16964
+ Served asset /1 - 404 Not Found (3ms)
16965
+ Processing by AssetsController#show as HTML
16966
+ Parameters: {"id"=>"1"}
16967
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]
16968
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16969
+ Rendered assets/show.html.erb within layouts/application (55.0ms)
16970
+ Completed 500 Internal Server Error in 61ms
16971
+
16972
+ ActionView::Template::Error (expected numeric):
16973
+ 22:
16974
+ 23: <p>
16975
+ 24: <b>Convention:</b>
16976
+ 25: <%= @asset.get_convention.to_s %>
16977
+ 26: </p>
16978
+ 27:
16979
+ 28: <p>
16980
+ app/views/assets/show.html.erb:25:in `_app_views_assets_show_html_erb__887863084_24892320'
16981
+ app/controllers/assets_controller.rb:18:in `show'
16982
+
16983
+
16984
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
16985
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
16986
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
16987
+
16988
+
16989
+ Started GET "/assets/1" for 127.0.0.1 at 2013-06-10 10:23:23 -0600
16990
+ Served asset /1 - 404 Not Found (5ms)
16991
+ Processing by AssetsController#show as HTML
16992
+ Parameters: {"id"=>"1"}
16993
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]
16994
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
16995
+ Rendered assets/show.html.erb within layouts/application (3.0ms)
16996
+ Completed 500 Internal Server Error in 8ms
16997
+
16998
+ ActionView::Template::Error (expected numeric):
16999
+ 22:
17000
+ 23: <p>
17001
+ 24: <b>Convention:</b>
17002
+ 25: <%= @asset.get_convention.to_s %>
17003
+ 26: </p>
17004
+ 27:
17005
+ 28: <p>
17006
+ app/views/assets/show.html.erb:25:in `_app_views_assets_show_html_erb__887863084_24892320'
17007
+ app/controllers/assets_controller.rb:18:in `show'
17008
+
17009
+
17010
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
17011
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
17012
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (34.0ms)
17013
+ Connecting to database specified by database.yml
17014
+
17015
+
17016
+ Started GET "/assets/1" for 127.0.0.1 at 2013-06-10 10:26:45 -0600
17017
+ Served asset /1 - 404 Not Found (3ms)
17018
+ Processing by AssetsController#show as HTML
17019
+ Parameters: {"id"=>"1"}
17020
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]
17021
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
17022
+ Rendered assets/show.html.erb within layouts/application (71.0ms)
17023
+ Completed 500 Internal Server Error in 265ms
17024
+
17025
+ ActionView::Template::Error (expected numeric):
17026
+ 22:
17027
+ 23: <p>
17028
+ 24: <b>Convention:</b>
17029
+ 25: <%= @asset.get_convention.to_s %>
17030
+ 26: </p>
17031
+ 27:
17032
+ 28: <p>
17033
+ app/views/assets/show.html.erb:25:in `_app_views_assets_show_html_erb___917263781_32144880'
17034
+ app/controllers/assets_controller.rb:18:in `show'
17035
+
17036
+
17037
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
17038
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
17039
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.0ms)
17040
+
17041
+
17042
+ Started GET "/assets/1" for 127.0.0.1 at 2013-06-10 10:28:43 -0600
17043
+ Served asset /1 - 404 Not Found (4ms)
17044
+ Processing by AssetsController#show as HTML
17045
+ Parameters: {"id"=>"1"}
17046
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]
17047
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
17048
+ Rendered assets/show.html.erb within layouts/application (2.0ms)
17049
+ Completed 500 Internal Server Error in 21ms
17050
+
17051
+ ActionView::Template::Error (expected numeric):
17052
+ 22:
17053
+ 23: <p>
17054
+ 24: <b>Convention:</b>
17055
+ 25: <%= @asset.get_convention.to_s %>
17056
+ 26: </p>
17057
+ 27:
17058
+ 28: <p>
17059
+ app/views/assets/show.html.erb:25:in `_app_views_assets_show_html_erb___917263781_32144880'
17060
+ app/controllers/assets_controller.rb:18:in `show'
17061
+
17062
+
17063
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
17064
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
17065
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.0ms)
17066
+ Connecting to database specified by database.yml
17067
+
17068
+
17069
+ Started GET "/assets/1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17070
+ Served asset /1 - 404 Not Found (3ms)
17071
+ Processing by AssetsController#show as HTML
17072
+ Parameters: {"id"=>"1"}
17073
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]
17074
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
17075
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
17076
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2013-01-01' and purchase_date < '2014-01-01')
17077
+ Rendered assets/show.html.erb within layouts/application (49.0ms)
17078
+ Completed 200 OK in 315ms (Views: 206.0ms | ActiveRecord: 11.0ms)
17079
+
17080
+
17081
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17082
+ Served asset /assets.css - 304 Not Modified (3ms)
17083
+
17084
+
17085
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17086
+ Served asset /application.css - 304 Not Modified (2ms)
17087
+
17088
+
17089
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17090
+ Served asset /scaffold.css - 304 Not Modified (2ms)
17091
+
17092
+
17093
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17094
+ Served asset /jquery.js - 304 Not Modified (50ms)
17095
+
17096
+
17097
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17098
+ Served asset /assets.js - 304 Not Modified (2ms)
17099
+
17100
+
17101
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17102
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
17103
+
17104
+
17105
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:23 -0600
17106
+ Served asset /application.js - 304 Not Modified (50ms)
17107
+
17108
+
17109
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 10:30:31 -0600
17110
+ Processing by AssetsController#tax_year as HTML
17111
+ Parameters: {"tax_year"=>"2013"}
17112
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
17113
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17114
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17115
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17116
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17117
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17118
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17119
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17120
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17121
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17122
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17123
+ Rendered assets/tax_year.html.erb within layouts/application (26.0ms)
17124
+ Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 1.0ms)
17125
+
17126
+
17127
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:30:31 -0600
17128
+ Served asset /application.css - 304 Not Modified (0ms)
17129
+
17130
+
17131
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:30:32 -0600
17132
+ Served asset /assets.css - 304 Not Modified (0ms)
17133
+
17134
+
17135
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:30:32 -0600
17136
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17137
+
17138
+
17139
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:32 -0600
17140
+ Served asset /jquery.js - 304 Not Modified (0ms)
17141
+
17142
+
17143
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:32 -0600
17144
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17145
+
17146
+
17147
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:32 -0600
17148
+ Served asset /assets.js - 304 Not Modified (0ms)
17149
+
17150
+
17151
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:30:32 -0600
17152
+ Served asset /application.js - 304 Not Modified (1ms)
17153
+
17154
+
17155
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 10:37:06 -0600
17156
+ Processing by AssetsController#tax_year as HTML
17157
+ Parameters: {"tax_year"=>"2013"}
17158
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
17159
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17160
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17161
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17162
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17163
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17164
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17165
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17166
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17167
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17168
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17169
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17170
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17171
+ Rendered assets/tax_year.html.erb within layouts/application (19.0ms)
17172
+ Completed 200 OK in 38ms (Views: 26.0ms | ActiveRecord: 0.0ms)
17173
+
17174
+
17175
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:07 -0600
17176
+ Served asset /jquery.js - 304 Not Modified (0ms)
17177
+
17178
+
17179
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:37:07 -0600
17180
+ Served asset /application.css - 304 Not Modified (0ms)
17181
+
17182
+
17183
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:37:07 -0600
17184
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17185
+
17186
+
17187
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:37:07 -0600
17188
+ Served asset /assets.css - 304 Not Modified (0ms)
17189
+
17190
+
17191
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:07 -0600
17192
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17193
+
17194
+
17195
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:07 -0600
17196
+ Served asset /assets.js - 304 Not Modified (0ms)
17197
+
17198
+
17199
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:07 -0600
17200
+ Served asset /application.js - 304 Not Modified (0ms)
17201
+
17202
+
17203
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17204
+ Processing by AssetsController#tax_year as HTML
17205
+ Parameters: {"tax_year"=>"2013"}
17206
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
17207
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17208
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17209
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17210
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17211
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17212
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17213
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17214
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17215
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17216
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17217
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17218
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17219
+ Rendered assets/tax_year.html.erb within layouts/application (34.0ms)
17220
+ Completed 200 OK in 44ms (Views: 42.0ms | ActiveRecord: 0.0ms)
17221
+
17222
+
17223
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17224
+ Served asset /assets.css - 304 Not Modified (0ms)
17225
+
17226
+
17227
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17228
+ Served asset /application.css - 304 Not Modified (0ms)
17229
+
17230
+
17231
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17232
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17233
+
17234
+
17235
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17236
+ Served asset /jquery.js - 304 Not Modified (0ms)
17237
+
17238
+
17239
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17240
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17241
+
17242
+
17243
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17244
+ Served asset /assets.js - 304 Not Modified (0ms)
17245
+
17246
+
17247
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:37:26 -0600
17248
+ Served asset /application.js - 304 Not Modified (0ms)
17249
+
17250
+
17251
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 10:38:13 -0600
17252
+ Processing by AssetsController#tax_year as HTML
17253
+ Parameters: {"tax_year"=>"2013"}
17254
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
17255
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17256
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17257
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17258
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17259
+ Rendered assets/tax_year.html.erb within layouts/application (35.0ms)
17260
+ Completed 500 Internal Server Error in 52ms
17261
+
17262
+ ActionView::Template::Error (undefined method `placed_in_service' for #<Asset:0x2d7f428>):
17263
+ 17: </p>
17264
+ 18: <p>
17265
+ 19: <b>Placed in service:</b>
17266
+ 20: <%= asset.placed_in_service%>
17267
+ 21: </p>
17268
+ 22: <hr />
17269
+ 23:
17270
+ app/views/assets/tax_year.html.erb:20:in `block in _app_views_assets_tax_year_html_erb__252470667_22227996'
17271
+ app/views/assets/tax_year.html.erb:1:in `each'
17272
+ app/views/assets/tax_year.html.erb:1:in `_app_views_assets_tax_year_html_erb__252470667_22227996'
17273
+
17274
+
17275
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
17276
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
17277
+ Rendered c:/Users/travis.pessetto/.pik/rubies/Ruby-193-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
17278
+
17279
+
17280
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17281
+ Processing by AssetsController#tax_year as HTML
17282
+ Parameters: {"tax_year"=>"2013"}
17283
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
17284
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17285
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17286
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17287
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17288
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17289
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17290
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17291
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17292
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17293
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17294
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17295
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17296
+ Rendered assets/tax_year.html.erb within layouts/application (26.0ms)
17297
+ Completed 200 OK in 36ms (Views: 33.0ms | ActiveRecord: 1.0ms)
17298
+
17299
+
17300
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17301
+ Served asset /application.css - 304 Not Modified (0ms)
17302
+
17303
+
17304
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17305
+ Served asset /assets.css - 304 Not Modified (0ms)
17306
+
17307
+
17308
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17309
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17310
+
17311
+
17312
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17313
+ Served asset /jquery.js - 304 Not Modified (0ms)
17314
+
17315
+
17316
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17317
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17318
+
17319
+
17320
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17321
+ Served asset /assets.js - 304 Not Modified (0ms)
17322
+
17323
+
17324
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:40 -0600
17325
+ Served asset /application.js - 304 Not Modified (0ms)
17326
+
17327
+
17328
+ Started GET "/assets/new" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17329
+ Served asset /new - 404 Not Found (3ms)
17330
+ Processing by AssetsController#new as HTML
17331
+ Rendered assets/_form.html.erb (28.0ms)
17332
+ Rendered assets/new.html.erb within layouts/application (45.0ms)
17333
+ Completed 200 OK in 51ms (Views: 51.0ms | ActiveRecord: 0.0ms)
17334
+
17335
+
17336
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17337
+ Served asset /application.css - 304 Not Modified (0ms)
17338
+
17339
+
17340
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17341
+ Served asset /assets.css - 304 Not Modified (0ms)
17342
+
17343
+
17344
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17345
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17346
+
17347
+
17348
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17349
+ Served asset /jquery.js - 304 Not Modified (0ms)
17350
+
17351
+
17352
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17353
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17354
+
17355
+
17356
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17357
+ Served asset /assets.js - 304 Not Modified (0ms)
17358
+
17359
+
17360
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:38:55 -0600
17361
+ Served asset /application.js - 304 Not Modified (0ms)
17362
+
17363
+
17364
+ Started POST "/assets" for 127.0.0.1 at 2013-06-10 10:39:27 -0600
17365
+ Served asset / - 404 Not Found (2ms)
17366
+ Processing by AssetsController#create as HTML
17367
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"0Vf24MGrOBql3O6jmSdK1cle4QFTK8I0e08mUbMxU9A=", "asset"=>{"name"=>"Test Asset", "purchase_date(1i)"=>"2008", "purchase_date(2i)"=>"12", "purchase_date(3i)"=>"10", "purchase_price"=>"10000", "lifetime"=>"20"}, "commit"=>"Create Asset"}
17368
+  (0.0ms) begin transaction
17369
+ SQL (1.0ms) INSERT INTO "assets" ("created_at", "lifetime", "name", "purchase_date", "purchase_price", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 10 Jun 2013 16:39:27 UTC +00:00], ["lifetime", 20], ["name", "Test Asset"], ["purchase_date", Wed, 10 Dec 2008], ["purchase_price", #<BigDecimal:390f5e8,'0.1E5',9(18)>], ["updated_at", Mon, 10 Jun 2013 16:39:27 UTC +00:00]]
17370
+  (16.0ms) commit transaction
17371
+ Redirected to http://localhost:3000/assets/8
17372
+ Completed 302 Found in 20ms (ActiveRecord: 17.0ms)
17373
+
17374
+
17375
+ Started GET "/assets/8" for 127.0.0.1 at 2013-06-10 10:39:27 -0600
17376
+ Served asset /8 - 404 Not Found (3ms)
17377
+ Processing by AssetsController#show as HTML
17378
+ Parameters: {"id"=>"8"}
17379
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "8"]]
17380
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17381
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17382
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17383
+ Rendered assets/show.html.erb within layouts/application (2.0ms)
17384
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.0ms)
17385
+
17386
+
17387
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:28 -0600
17388
+ Served asset /application.css - 304 Not Modified (0ms)
17389
+
17390
+
17391
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:28 -0600
17392
+ Served asset /assets.css - 304 Not Modified (0ms)
17393
+
17394
+
17395
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:28 -0600
17396
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17397
+
17398
+
17399
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:28 -0600
17400
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17401
+
17402
+
17403
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:28 -0600
17404
+ Served asset /assets.js - 304 Not Modified (0ms)
17405
+
17406
+
17407
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:28 -0600
17408
+ Served asset /jquery.js - 304 Not Modified (0ms)
17409
+
17410
+
17411
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:28 -0600
17412
+ Served asset /application.js - 304 Not Modified (0ms)
17413
+
17414
+
17415
+ Started GET "/assets/8?search_year=2012" for 127.0.0.1 at 2013-06-10 10:39:34 -0600
17416
+ Served asset /8 - 404 Not Found (4ms)
17417
+ Processing by AssetsController#show as HTML
17418
+ Parameters: {"search_year"=>"2012", "id"=>"8"}
17419
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "8"]]
17420
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17421
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17422
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17423
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17424
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17425
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17426
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17427
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17428
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17429
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17430
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17431
+ Rendered assets/show.html.erb within layouts/application (16.0ms)
17432
+ Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms)
17433
+
17434
+
17435
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:34 -0600
17436
+ Served asset /application.css - 304 Not Modified (0ms)
17437
+
17438
+
17439
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:34 -0600
17440
+ Served asset /assets.css - 304 Not Modified (0ms)
17441
+
17442
+
17443
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:35 -0600
17444
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17445
+
17446
+
17447
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:35 -0600
17448
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17449
+
17450
+
17451
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:35 -0600
17452
+ Served asset /jquery.js - 304 Not Modified (0ms)
17453
+
17454
+
17455
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:35 -0600
17456
+ Served asset /assets.js - 304 Not Modified (0ms)
17457
+
17458
+
17459
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:35 -0600
17460
+ Served asset /application.js - 304 Not Modified (0ms)
17461
+
17462
+
17463
+ Started GET "/asset/tax_year/2013" for 127.0.0.1 at 2013-06-10 10:39:43 -0600
17464
+ Processing by AssetsController#tax_year as HTML
17465
+ Parameters: {"tax_year"=>"2013"}
17466
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (date(purchase_date, '+'|| lifetime||' YEAR') > '2013-01-01' AND purchase_date < '2013-01-01')
17467
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17468
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17469
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17470
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17471
+ Asset Load (1.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17472
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17473
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17474
+ Asset Load (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17475
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17476
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17477
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17478
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17479
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17480
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17481
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17482
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17483
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2011-01-01' and purchase_date < '2012-01-01')
17484
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17485
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2012-01-01' and purchase_date < '2013-01-01')
17486
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17487
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17488
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17489
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17490
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17491
+ CACHE (0.0ms) SELECT "assets".* FROM "assets" WHERE (purchase_date >= '2008-01-01' and purchase_date < '2009-01-01')
17492
+ Rendered assets/tax_year.html.erb within layouts/application (44.0ms)
17493
+ Completed 200 OK in 62ms (Views: 59.0ms | ActiveRecord: 1.0ms)
17494
+
17495
+
17496
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:44 -0600
17497
+ Served asset /scaffold.css - 304 Not Modified (0ms)
17498
+
17499
+
17500
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:44 -0600
17501
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
17502
+
17503
+
17504
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:44 -0600
17505
+ Served asset /application.css - 304 Not Modified (1ms)
17506
+
17507
+
17508
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:44 -0600
17509
+ Served asset /jquery.js - 304 Not Modified (0ms)
17510
+
17511
+
17512
+ Started GET "/assets/assets.css?body=1" for 127.0.0.1 at 2013-06-10 10:39:44 -0600
17513
+ Served asset /assets.css - 304 Not Modified (0ms)
17514
+
17515
+
17516
+ Started GET "/assets/assets.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:44 -0600
17517
+ Served asset /assets.js - 304 Not Modified (0ms)
17518
+
17519
+
17520
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-06-10 10:39:44 -0600
17521
+ Served asset /application.js - 304 Not Modified (0ms)