clndr-rails 1.2.7.1 → 1.2.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/lib/clndr-rails/helpers.rb +42 -36
  3. data/lib/clndr-rails/version.rb +1 -1
  4. data/test/dummy/app/controllers/base_controller.rb +1 -0
  5. data/test/dummy/app/views/base/index.html.erb +14 -2
  6. data/test/dummy/config/environments/test.rb +1 -1
  7. data/test/dummy/log/development.log +2035 -0
  8. data/test/dummy/log/test.log +1860 -0
  9. data/test/dummy/spec/controllers/base_controller_spec.rb +12 -12
  10. data/test/dummy/spec/spec_helper.rb +93 -93
  11. data/test/dummy/tmp/cache/assets/development/sprockets/02c5e1a21d4a4605f8b34eca639a1f70 +0 -0
  12. data/test/dummy/tmp/cache/assets/development/sprockets/1223ac7ac3a460c3f9ce66e828acdc67 +0 -0
  13. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  14. data/test/dummy/tmp/cache/assets/development/sprockets/4b2e05f2b06345dfee1d683a3fdd29e7 +0 -0
  15. data/test/dummy/tmp/cache/assets/development/sprockets/58dc697381035be4d343e2b19720c10c +0 -0
  16. data/test/dummy/tmp/cache/assets/development/sprockets/643ff98d256ca160a0cb4ca0fc83ffdb +0 -0
  17. data/test/dummy/tmp/cache/assets/development/sprockets/6b158f7584f499d82165f5ccaf303d16 +0 -0
  18. data/test/dummy/tmp/cache/assets/development/sprockets/83ed9f0dcdd68efbed721b2b10fcda6b +0 -0
  19. data/test/dummy/tmp/cache/assets/development/sprockets/b419fd5d14fd53ae2fffa3026f0f4aa4 +0 -0
  20. data/test/dummy/tmp/cache/assets/development/sprockets/b85bb5a9001b8d932b99e152afc282b9 +0 -0
  21. data/test/dummy/tmp/cache/assets/development/sprockets/bd28ee35f981cb10b9740ee6e6686b6d +0 -0
  22. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  23. data/test/dummy/tmp/cache/assets/development/sprockets/dd041a66875b6a140cf105a32e88980b +0 -0
  24. data/test/dummy/tmp/cache/assets/development/sprockets/e101b6a9f9eb86d3591c6075a3f59be4 +0 -0
  25. data/test/dummy/tmp/cache/assets/development/sprockets/efbbf60292a32f735cfdcbd98f0a0dcb +0 -0
  26. data/test/dummy/tmp/cache/assets/development/sprockets/f56ceda2003be471c5e7a5ec2e355c9e +0 -0
  27. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  28. data/test/dummy/tmp/cache/assets/development/sprockets/fb5e937723a7579bee0be03b0c5d9052 +0 -0
  29. data/vendor/assets/javascripts/clndr-rails/clndr.min.js +2 -2
  30. metadata +39 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be0fc6926eb61fa37a932b4d106ff0ba69f75117
4
- data.tar.gz: d363ea7829673fa00d5928b62edd598b67b07e0a
3
+ metadata.gz: 10453f86455e08622dd7a19c5a5024b37ca92c85
4
+ data.tar.gz: 1e4b7d9b2411418d5058c69727ec43e04f44b51a
5
5
  SHA512:
6
- metadata.gz: 61afde26e8a203e42f124eb9be5269d5280f8163e91bf69b8057f2a357b8e8e7a85995b8bc03b11d6330652b8b28de0d70e502760a5b71c2796b79d8f426fb33
7
- data.tar.gz: ac633742576449f6de3fdadba98649f3c680526b7bbf5a32758da0742719ebfba31719f3a761aae857f3fc4f2da8a4f68c42d711560c937b8449a973bb76fcf2
6
+ metadata.gz: 1317b52f84f7598a22aa7d34fc8fa25a37973080b9d44a773c1f6feef206c1c53f329360c4a1c2bc461186b04e324a41419b36fe23dcf235c99b3f814948538f
7
+ data.tar.gz: b1506bdd0d881b249a2360cbef14400b2e96e145fa4e1f7e028ac7e899ea4a1df1c07efb0dc8adfd425782fd7b3fec635522c45a5dd3fbd9d83a9d4afcf29c14
@@ -1,37 +1,43 @@
1
+ class Clndr
1
2
  module Helpers
2
- include ActionView::Helpers::UrlHelper
3
-
4
- # find calendar and call .view with options
5
- def show_calendar(scope,*args)
6
- options = {}
7
- args.map{|x| options.merge! x}
8
- Clndr.get_calendar(scope.to_sym).view(options)
9
- end
10
-
11
- # generate links for calendar
12
- def next_month_link(scope,name,*args,&block)
13
- navigate_link scope,name,'forward', *args, &block
14
- end
15
-
16
- def previous_month_link(scope,name,*args,&block)
17
- navigate_link scope,name,'back', *args, &block
18
- end
19
-
20
- def next_year_link(scope,name,*args,&block)
21
- navigate_link scope,name,'nextYear', *args, &block
22
- end
23
-
24
- def previous_year_link(scope,name,*args,&block)
25
- navigate_link scope,name,'previousYear', *args, &block
26
- end
27
-
28
- private
29
-
30
- def navigate_link(scope,name,jsmethod,*args,&block)
31
- args.push(:onclick => "#{Clndr.get_calendar(scope.to_sym).name}.#{jsmethod}(#{'{withCallbacks: true}' if block_given?}); return false")
32
- options = {}
33
- args.map{|x| options.merge! x}
34
- link_to(name, '#', options )
35
- end
36
-
37
- end
3
+ include ActionView::Helpers::UrlHelper
4
+
5
+ # find calendar and call .view with options
6
+ def show_calendar(scope,*args)
7
+ options = {}
8
+ args.map{|x| options.merge! x}
9
+ Clndr.get_calendar(scope.to_sym).view(options)
10
+ end
11
+
12
+ # generate links for calendar
13
+ def next_month_link(scope,name,*args,&block)
14
+ navigate_link scope,name,'forward', *args, &block
15
+ end
16
+
17
+ def previous_month_link(scope,name,*args,&block)
18
+ navigate_link scope,name,'back', *args, &block
19
+ end
20
+
21
+ def next_year_link(scope,name,*args,&block)
22
+ navigate_link scope,name,'nextYear', *args, &block
23
+ end
24
+
25
+ def previous_year_link(scope,name,*args,&block)
26
+ navigate_link scope,name,'previousYear', *args, &block
27
+ end
28
+
29
+ def template_variable(variable)
30
+ "<%= #{variable} %>".html_safe
31
+ end
32
+
33
+ private
34
+
35
+ def navigate_link(scope,name,jsmethod,*args,&block)
36
+ args.push(:onclick => "#{Clndr.get_calendar(scope.to_sym).name}.#{jsmethod}(#{'{withCallbacks: true}' if block_given?}); return false")
37
+ options = {}
38
+ args.map{|x| options.merge! x}
39
+ link_to(name, '#', options )
40
+ end
41
+
42
+ end
43
+ end
@@ -1,5 +1,5 @@
1
1
  class Clndr
2
2
  module Rails
3
- VERSION = "1.2.7.1"
3
+ VERSION = "1.2.10.1"
4
4
  end
5
5
  end
@@ -27,5 +27,6 @@ class BaseController < ApplicationController
27
27
  # @default.target[:nextButton]='next'
28
28
  # @default.show_adjacent_months =false
29
29
  # Clndr.new(:custom_template).template = Clndr::Template.from_html('#custom-template')
30
+ @custom_clndr = Clndr.new(:second_clndr)
30
31
  end
31
32
  end
@@ -1,7 +1,19 @@
1
1
 
2
- <h1>Example full calndar </h1>
2
+ <h1>Example full calendar </h1>
3
3
  <%= show_calendar(:test,style: 'width:600px',id:'ff') %>
4
4
  <%= next_month_link(:test,'Next',style:'color:red;',class:'nav'){true} %>
5
5
  <%= previous_month_link(:test,'Prev',style:'color:red;',class:'nav'){true} %>
6
6
  <%= next_year_link(:test,'NextY',style:'color:red;',class:'nav'){true} %>
7
- <%= previous_year_link(:test,'PrevY',style:'color:red;',class:'nav'){true} %>
7
+ <%= previous_year_link(:test,'PrevY',style:'color:red;',class:'nav'){true} %>
8
+
9
+ <h2>Another clndr</h2>
10
+ <script class="custom_template" type="template">
11
+
12
+ <p>
13
+ previousMonth is <%%= previousMonth%>
14
+ nextMonth is <%%= nextMonth%>
15
+ </p>
16
+ </script>
17
+
18
+ <%@custom_clndr.template = Clndr::Template.from_html('.custom_template') %>
19
+ <%=show_calendar(:second_clndr)%>
@@ -13,7 +13,7 @@ Rails.application.configure do
13
13
  config.eager_load = false
14
14
 
15
15
  # Configure static asset server for tests with Cache-Control for performance.
16
- config.serve_static_assets = true
16
+ config.serve_static_files = true
17
17
  config.static_cache_control = 'public, max-age=3600'
18
18
 
19
19
  # Show full error reports and disable caching.
@@ -20062,3 +20062,2038 @@ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-28 11:33:26
20062
20062
 
20063
20063
 
20064
20064
  Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-01-28 11:33:26 +0500
20065
+
20066
+
20067
+ Started GET "/" for ::1 at 2015-03-25 10:07:40 +0500
20068
+ Processing by BaseController#index as HTML
20069
+ Rendered base/index.html.erb within layouts/application (2.0ms)
20070
+ Completed 200 OK in 581ms (Views: 580.0ms | ActiveRecord: 0.0ms)
20071
+
20072
+
20073
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:07:40 +0500
20074
+
20075
+
20076
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:07:40 +0500
20077
+
20078
+
20079
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20080
+
20081
+
20082
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20083
+
20084
+
20085
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20086
+
20087
+
20088
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20089
+
20090
+
20091
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20092
+
20093
+
20094
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20095
+
20096
+
20097
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20098
+
20099
+
20100
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:07:41 +0500
20101
+
20102
+
20103
+ Started GET "/" for ::1 at 2015-03-25 10:08:58 +0500
20104
+ Processing by BaseController#index as HTML
20105
+ Rendered base/index.html.erb within layouts/application (0.5ms)
20106
+ Completed 200 OK in 74ms (Views: 72.5ms | ActiveRecord: 0.0ms)
20107
+
20108
+
20109
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20110
+
20111
+
20112
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20113
+
20114
+
20115
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20116
+
20117
+
20118
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20119
+
20120
+
20121
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20122
+
20123
+
20124
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20125
+
20126
+
20127
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20128
+
20129
+
20130
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20131
+
20132
+
20133
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20134
+
20135
+
20136
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:08:58 +0500
20137
+
20138
+
20139
+ Started GET "/" for ::1 at 2015-03-25 10:11:43 +0500
20140
+ Processing by BaseController#index as HTML
20141
+ Rendered base/index.html.erb within layouts/application (0.5ms)
20142
+ Completed 200 OK in 69ms (Views: 67.5ms | ActiveRecord: 0.0ms)
20143
+
20144
+
20145
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20146
+
20147
+
20148
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20149
+
20150
+
20151
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20152
+
20153
+
20154
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20155
+
20156
+
20157
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20158
+
20159
+
20160
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20161
+
20162
+
20163
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20164
+
20165
+
20166
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20167
+
20168
+
20169
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20170
+
20171
+
20172
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:11:43 +0500
20173
+
20174
+
20175
+ Started GET "/" for ::1 at 2015-03-25 10:11:44 +0500
20176
+ Processing by BaseController#index as HTML
20177
+ Rendered base/index.html.erb within layouts/application (0.5ms)
20178
+ Completed 200 OK in 73ms (Views: 72.0ms | ActiveRecord: 0.0ms)
20179
+
20180
+
20181
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20182
+
20183
+
20184
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20185
+
20186
+
20187
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20188
+
20189
+
20190
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20191
+
20192
+
20193
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20194
+
20195
+
20196
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20197
+
20198
+
20199
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20200
+
20201
+
20202
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20203
+
20204
+
20205
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20206
+
20207
+
20208
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:11:44 +0500
20209
+
20210
+
20211
+ Started GET "/" for ::1 at 2015-03-25 10:11:45 +0500
20212
+ Processing by BaseController#index as HTML
20213
+ Rendered base/index.html.erb within layouts/application (0.5ms)
20214
+ Completed 200 OK in 68ms (Views: 66.5ms | ActiveRecord: 0.0ms)
20215
+
20216
+
20217
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20218
+
20219
+
20220
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20221
+
20222
+
20223
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20224
+
20225
+
20226
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20227
+
20228
+
20229
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20230
+
20231
+
20232
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20233
+
20234
+
20235
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20236
+
20237
+
20238
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20239
+
20240
+
20241
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20242
+
20243
+
20244
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:11:45 +0500
20245
+
20246
+
20247
+ Started GET "/" for ::1 at 2015-03-25 10:12:05 +0500
20248
+ Processing by BaseController#index as HTML
20249
+ Rendered base/index.html.erb within layouts/application (1.5ms)
20250
+ Completed 200 OK in 159ms (Views: 157.5ms | ActiveRecord: 0.0ms)
20251
+
20252
+
20253
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20254
+
20255
+
20256
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20257
+
20258
+
20259
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20260
+
20261
+
20262
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20263
+
20264
+
20265
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20266
+
20267
+
20268
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20269
+
20270
+
20271
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20272
+
20273
+
20274
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20275
+
20276
+
20277
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20278
+
20279
+
20280
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:12:06 +0500
20281
+
20282
+
20283
+ Started GET "/" for ::1 at 2015-03-25 10:15:52 +0500
20284
+ Processing by BaseController#index as HTML
20285
+ Rendered base/index.html.erb within layouts/application (2.0ms)
20286
+ Completed 200 OK in 80ms (Views: 78.5ms | ActiveRecord: 0.0ms)
20287
+
20288
+
20289
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20290
+
20291
+
20292
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20293
+
20294
+
20295
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20296
+
20297
+
20298
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20299
+
20300
+
20301
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20302
+
20303
+
20304
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20305
+
20306
+
20307
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20308
+
20309
+
20310
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20311
+
20312
+
20313
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20314
+
20315
+
20316
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:15:52 +0500
20317
+
20318
+
20319
+ Started GET "/" for ::1 at 2015-03-25 10:15:53 +0500
20320
+ Processing by BaseController#index as HTML
20321
+ Rendered base/index.html.erb within layouts/application (0.5ms)
20322
+ Completed 200 OK in 68ms (Views: 66.5ms | ActiveRecord: 0.0ms)
20323
+
20324
+
20325
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20326
+
20327
+
20328
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20329
+
20330
+
20331
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20332
+
20333
+
20334
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20335
+
20336
+
20337
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20338
+
20339
+
20340
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20341
+
20342
+
20343
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20344
+
20345
+
20346
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20347
+
20348
+
20349
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20350
+
20351
+
20352
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:15:53 +0500
20353
+
20354
+
20355
+ Started GET "/" for ::1 at 2015-03-25 10:16:23 +0500
20356
+ Processing by BaseController#index as HTML
20357
+ Rendered base/index.html.erb within layouts/application (15.0ms)
20358
+ Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms)
20359
+
20360
+ ActionView::Template::Error (undefined method `template_variable' for #<#<Class:0x45acad0>:0x45ac338>):
20361
+ 5: <%= previous_month_link(:test,'Prev',style:'color:red;',class:'nav'){true} %>
20362
+ 6: <%= next_year_link(:test,'NextY',style:'color:red;',class:'nav'){true} %>
20363
+ 7: <%= previous_year_link(:test,'PrevY',style:'color:red;',class:'nav'){true} %>
20364
+ 8: <%= template_variable(:daysOfTheWeek) %>
20365
+ app/views/base/index.html.erb:8:in `_app_views_base_index_html_erb___848591677_24002148'
20366
+
20367
+
20368
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20369
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20370
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (16.5ms)
20371
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.0ms)
20372
+
20373
+
20374
+ Started GET "/" for ::1 at 2015-03-25 10:16:44 +0500
20375
+ Processing by BaseController#index as HTML
20376
+ Rendered base/index.html.erb within layouts/application (10.5ms)
20377
+ Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
20378
+
20379
+ ActionView::Template::Error (undefined method `template_variable' for #<#<Class:0x45acad0>:0x51a2150>):
20380
+ 5: <%= previous_month_link(:test,'Prev',style:'color:red;',class:'nav'){true} %>
20381
+ 6: <%= next_year_link(:test,'NextY',style:'color:red;',class:'nav'){true} %>
20382
+ 7: <%= previous_year_link(:test,'PrevY',style:'color:red;',class:'nav'){true} %>
20383
+ 8: <%= template_variable(:daysOfTheWeek) %>
20384
+ app/views/base/index.html.erb:8:in `_app_views_base_index_html_erb___848591677_24002148'
20385
+
20386
+
20387
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20388
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms)
20389
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20390
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.0ms)
20391
+
20392
+
20393
+ Started GET "/" for ::1 at 2015-03-25 10:16:45 +0500
20394
+ Processing by BaseController#index as HTML
20395
+ Rendered base/index.html.erb within layouts/application (11.0ms)
20396
+ Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
20397
+
20398
+ ActionView::Template::Error (undefined method `template_variable' for #<#<Class:0x45acad0>:0x54953d0>):
20399
+ 5: <%= previous_month_link(:test,'Prev',style:'color:red;',class:'nav'){true} %>
20400
+ 6: <%= next_year_link(:test,'NextY',style:'color:red;',class:'nav'){true} %>
20401
+ 7: <%= previous_year_link(:test,'PrevY',style:'color:red;',class:'nav'){true} %>
20402
+ 8: <%= template_variable(:daysOfTheWeek) %>
20403
+ app/views/base/index.html.erb:8:in `_app_views_base_index_html_erb___848591677_24002148'
20404
+
20405
+
20406
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
20407
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (13.0ms)
20408
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20409
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.0ms)
20410
+
20411
+
20412
+ Started GET "/" for ::1 at 2015-03-25 10:16:46 +0500
20413
+ Processing by BaseController#index as HTML
20414
+ Rendered base/index.html.erb within layouts/application (11.0ms)
20415
+ Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
20416
+
20417
+ ActionView::Template::Error (undefined method `template_variable' for #<#<Class:0x45acad0>:0x57b77e0>):
20418
+ 5: <%= previous_month_link(:test,'Prev',style:'color:red;',class:'nav'){true} %>
20419
+ 6: <%= next_year_link(:test,'NextY',style:'color:red;',class:'nav'){true} %>
20420
+ 7: <%= previous_year_link(:test,'PrevY',style:'color:red;',class:'nav'){true} %>
20421
+ 8: <%= template_variable(:daysOfTheWeek) %>
20422
+ app/views/base/index.html.erb:8:in `_app_views_base_index_html_erb___848591677_24002148'
20423
+
20424
+
20425
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20426
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20427
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
20428
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.0ms)
20429
+
20430
+
20431
+ Started GET "/" for ::1 at 2015-03-25 10:16:47 +0500
20432
+ Processing by BaseController#index as HTML
20433
+ Rendered base/index.html.erb within layouts/application (10.0ms)
20434
+ Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
20435
+
20436
+ ActionView::Template::Error (undefined method `template_variable' for #<#<Class:0x45acad0>:0x42860e8>):
20437
+ 5: <%= previous_month_link(:test,'Prev',style:'color:red;',class:'nav'){true} %>
20438
+ 6: <%= next_year_link(:test,'NextY',style:'color:red;',class:'nav'){true} %>
20439
+ 7: <%= previous_year_link(:test,'PrevY',style:'color:red;',class:'nav'){true} %>
20440
+ 8: <%= template_variable(:daysOfTheWeek) %>
20441
+ app/views/base/index.html.erb:8:in `_app_views_base_index_html_erb___848591677_24002148'
20442
+
20443
+
20444
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20445
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20446
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20447
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.0ms)
20448
+
20449
+
20450
+ Started GET "/" for ::1 at 2015-03-25 10:17:18 +0500
20451
+ Processing by BaseController#index as HTML
20452
+ Rendered base/index.html.erb within layouts/application (2.0ms)
20453
+ Completed 200 OK in 163ms (Views: 162.5ms | ActiveRecord: 0.0ms)
20454
+
20455
+
20456
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20457
+
20458
+
20459
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20460
+
20461
+
20462
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20463
+
20464
+
20465
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20466
+
20467
+
20468
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20469
+
20470
+
20471
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20472
+
20473
+
20474
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20475
+
20476
+
20477
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20478
+
20479
+
20480
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20481
+
20482
+
20483
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:17:18 +0500
20484
+
20485
+
20486
+ Started GET "/" for ::1 at 2015-03-25 10:17:39 +0500
20487
+ Processing by BaseController#index as HTML
20488
+ Rendered base/index.html.erb within layouts/application (1.5ms)
20489
+ Completed 200 OK in 69ms (Views: 67.5ms | ActiveRecord: 0.0ms)
20490
+
20491
+
20492
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20493
+
20494
+
20495
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20496
+
20497
+
20498
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20499
+
20500
+
20501
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20502
+
20503
+
20504
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20505
+
20506
+
20507
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20508
+
20509
+
20510
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20511
+
20512
+
20513
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20514
+
20515
+
20516
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20517
+
20518
+
20519
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:17:40 +0500
20520
+
20521
+
20522
+ Started GET "/" for ::1 at 2015-03-25 10:17:41 +0500
20523
+ Processing by BaseController#index as HTML
20524
+ Rendered base/index.html.erb within layouts/application (1.0ms)
20525
+ Completed 200 OK in 70ms (Views: 68.0ms | ActiveRecord: 0.0ms)
20526
+
20527
+
20528
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20529
+
20530
+
20531
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20532
+
20533
+
20534
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20535
+
20536
+
20537
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20538
+
20539
+
20540
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20541
+
20542
+
20543
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20544
+
20545
+
20546
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20547
+
20548
+
20549
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20550
+
20551
+
20552
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20553
+
20554
+
20555
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:17:41 +0500
20556
+
20557
+
20558
+ Started GET "/" for ::1 at 2015-03-25 10:18:03 +0500
20559
+ Processing by BaseController#index as HTML
20560
+ Rendered base/index.html.erb within layouts/application (1.5ms)
20561
+ Completed 200 OK in 162ms (Views: 160.5ms | ActiveRecord: 0.0ms)
20562
+
20563
+
20564
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20565
+
20566
+
20567
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20568
+
20569
+
20570
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20571
+
20572
+
20573
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20574
+
20575
+
20576
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20577
+
20578
+
20579
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20580
+
20581
+
20582
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20583
+
20584
+
20585
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20586
+
20587
+
20588
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20589
+
20590
+
20591
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:18:04 +0500
20592
+
20593
+
20594
+ Started GET "/" for ::1 at 2015-03-25 10:18:08 +0500
20595
+ Processing by BaseController#index as HTML
20596
+ Rendered base/index.html.erb within layouts/application (1.0ms)
20597
+ Completed 200 OK in 77ms (Views: 76.5ms | ActiveRecord: 0.0ms)
20598
+
20599
+
20600
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:18:08 +0500
20601
+
20602
+
20603
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:18:08 +0500
20604
+
20605
+
20606
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:18:08 +0500
20607
+
20608
+
20609
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:18:08 +0500
20610
+
20611
+
20612
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:18:08 +0500
20613
+
20614
+
20615
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:18:08 +0500
20616
+
20617
+
20618
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:18:08 +0500
20619
+
20620
+
20621
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:18:09 +0500
20622
+
20623
+
20624
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:18:09 +0500
20625
+
20626
+
20627
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:18:09 +0500
20628
+
20629
+
20630
+ Started GET "/" for ::1 at 2015-03-25 10:18:44 +0500
20631
+ Processing by BaseController#index as HTML
20632
+ Rendered base/index.html.erb within layouts/application (2.0ms)
20633
+ Completed 200 OK in 164ms (Views: 162.0ms | ActiveRecord: 0.0ms)
20634
+
20635
+
20636
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20637
+
20638
+
20639
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20640
+
20641
+
20642
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20643
+
20644
+
20645
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20646
+
20647
+
20648
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20649
+
20650
+
20651
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20652
+
20653
+
20654
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20655
+
20656
+
20657
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20658
+
20659
+
20660
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20661
+
20662
+
20663
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:18:45 +0500
20664
+
20665
+
20666
+ Started GET "/" for ::1 at 2015-03-25 10:18:49 +0500
20667
+ Processing by BaseController#index as HTML
20668
+ Rendered base/index.html.erb within layouts/application (1.0ms)
20669
+ Completed 200 OK in 71ms (Views: 69.0ms | ActiveRecord: 0.0ms)
20670
+
20671
+
20672
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20673
+
20674
+
20675
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20676
+
20677
+
20678
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20679
+
20680
+
20681
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20682
+
20683
+
20684
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20685
+
20686
+
20687
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20688
+
20689
+
20690
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20691
+
20692
+
20693
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20694
+
20695
+
20696
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20697
+
20698
+
20699
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:18:49 +0500
20700
+
20701
+
20702
+ Started GET "/" for ::1 at 2015-03-25 10:20:20 +0500
20703
+ Processing by BaseController#index as HTML
20704
+ Rendered base/index.html.erb within layouts/application (2.0ms)
20705
+ Completed 200 OK in 171ms (Views: 169.0ms | ActiveRecord: 0.0ms)
20706
+
20707
+
20708
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20709
+
20710
+
20711
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20712
+
20713
+
20714
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20715
+
20716
+
20717
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20718
+
20719
+
20720
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20721
+
20722
+
20723
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20724
+
20725
+
20726
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20727
+
20728
+
20729
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20730
+
20731
+
20732
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20733
+
20734
+
20735
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 10:20:21 +0500
20736
+
20737
+
20738
+ Started GET "/" for ::1 at 2015-03-25 11:08:30 +0500
20739
+ Processing by BaseController#index as HTML
20740
+ Rendered base/index.html.erb within layouts/application (16.0ms)
20741
+ Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.0ms)
20742
+
20743
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x4959048>):
20744
+ 11: <%= show_calendar(:second_clndr) %>
20745
+ 12: <div class="custom_template">
20746
+ 13: <p>
20747
+ 14: previousMonth is <%=previousMonth%>
20748
+ 15: </p>
20749
+ 16: </div>
20750
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_36930432'
20751
+
20752
+
20753
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20754
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20755
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (16.5ms)
20756
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.5ms)
20757
+
20758
+
20759
+ Started GET "/" for ::1 at 2015-03-25 11:09:01 +0500
20760
+ Processing by BaseController#index as HTML
20761
+ Rendered base/index.html.erb within layouts/application (11.0ms)
20762
+ Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
20763
+
20764
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x5088138>):
20765
+ 11: <%= show_calendar(:second_clndr) %>
20766
+ 12: <div class="custom_template">
20767
+ 13: <p>
20768
+ 14: previousMonth is <%=previousMonth%>
20769
+ 15: </p>
20770
+ 16: </div>
20771
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_36930432'
20772
+
20773
+
20774
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20775
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms)
20776
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20777
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.5ms)
20778
+
20779
+
20780
+ Started GET "/" for ::1 at 2015-03-25 11:09:03 +0500
20781
+ Processing by BaseController#index as HTML
20782
+ Rendered base/index.html.erb within layouts/application (1.5ms)
20783
+ Completed 200 OK in 124ms (Views: 123.0ms | ActiveRecord: 0.0ms)
20784
+
20785
+
20786
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20787
+
20788
+
20789
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20790
+
20791
+
20792
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20793
+
20794
+
20795
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20796
+
20797
+
20798
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20799
+
20800
+
20801
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20802
+
20803
+
20804
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20805
+
20806
+
20807
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20808
+
20809
+
20810
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20811
+
20812
+
20813
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:09:03 +0500
20814
+
20815
+
20816
+ Started GET "/" for ::1 at 2015-03-25 11:16:54 +0500
20817
+ Processing by BaseController#index as HTML
20818
+ Rendered base/index.html.erb within layouts/application (12.5ms)
20819
+ Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms)
20820
+
20821
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x52fcc80>):
20822
+ 11: <%= show_calendar(:second_clndr) %>
20823
+ 12: <div class="custom_template">
20824
+ 13: <p>
20825
+ 14: previousMonth is <%==previousMonth%>
20826
+ 15: </p>
20827
+ 16: </div>
20828
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_43482900'
20829
+
20830
+
20831
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20832
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20833
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20834
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.0ms)
20835
+
20836
+
20837
+ Started GET "/" for ::1 at 2015-03-25 11:16:56 +0500
20838
+ Processing by BaseController#index as HTML
20839
+ Rendered base/index.html.erb within layouts/application (11.0ms)
20840
+ Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
20841
+
20842
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x5579148>):
20843
+ 11: <%= show_calendar(:second_clndr) %>
20844
+ 12: <div class="custom_template">
20845
+ 13: <p>
20846
+ 14: previousMonth is <%==previousMonth%>
20847
+ 15: </p>
20848
+ 16: </div>
20849
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_43482900'
20850
+
20851
+
20852
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20853
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20854
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20855
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.5ms)
20856
+
20857
+
20858
+ Started GET "/" for ::1 at 2015-03-25 11:17:06 +0500
20859
+ Processing by BaseController#index as HTML
20860
+ Rendered base/index.html.erb within layouts/application (18.0ms)
20861
+ Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.0ms)
20862
+
20863
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x3a65390>):
20864
+ 11: <%= show_calendar(:second_clndr) %>
20865
+ 12: <div class="custom_template">
20866
+ 13: <p>
20867
+ 14: previousMonth is raw(<%=previousMonth%>)
20868
+ 15: </p>
20869
+ 16: </div>
20870
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_30602616'
20871
+
20872
+
20873
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20874
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms)
20875
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20876
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.0ms)
20877
+
20878
+
20879
+ Started GET "/" for ::1 at 2015-03-25 11:17:08 +0500
20880
+ Processing by BaseController#index as HTML
20881
+ Rendered base/index.html.erb within layouts/application (11.5ms)
20882
+ Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms)
20883
+
20884
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x42e58a8>):
20885
+ 11: <%= show_calendar(:second_clndr) %>
20886
+ 12: <div class="custom_template">
20887
+ 13: <p>
20888
+ 14: previousMonth is raw(<%=previousMonth%>)
20889
+ 15: </p>
20890
+ 16: </div>
20891
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_30602616'
20892
+
20893
+
20894
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20895
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms)
20896
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20897
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.0ms)
20898
+
20899
+
20900
+ Started GET "/" for ::1 at 2015-03-25 11:17:09 +0500
20901
+ Processing by BaseController#index as HTML
20902
+ Rendered base/index.html.erb within layouts/application (10.0ms)
20903
+ Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
20904
+
20905
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x47c2548>):
20906
+ 11: <%= show_calendar(:second_clndr) %>
20907
+ 12: <div class="custom_template">
20908
+ 13: <p>
20909
+ 14: previousMonth is raw(<%=previousMonth%>)
20910
+ 15: </p>
20911
+ 16: </div>
20912
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_30602616'
20913
+
20914
+
20915
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20916
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms)
20917
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20918
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.0ms)
20919
+
20920
+
20921
+ Started GET "/" for ::1 at 2015-03-25 11:17:27 +0500
20922
+ Processing by BaseController#index as HTML
20923
+ Rendered base/index.html.erb within layouts/application (11.0ms)
20924
+ Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
20925
+
20926
+ ActionView::Template::Error (undefined local variable or method `previousMonth' for #<#<Class:0x49597e0>:0x4f78a10>):
20927
+ 11: <%= show_calendar(:second_clndr) %>
20928
+ 12: <div class="custom_template">
20929
+ 13: <p>
20930
+ 14: previousMonth is raw(<%=previousMonth%>)
20931
+ 15: </p>
20932
+ 16: </div>
20933
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb__690990184_30602616'
20934
+
20935
+
20936
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20937
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20938
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20939
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.0ms)
20940
+
20941
+
20942
+ Started GET "/" for ::1 at 2015-03-25 11:17:28 +0500
20943
+ Processing by BaseController#index as HTML
20944
+ Rendered base/index.html.erb within layouts/application (1.0ms)
20945
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
20946
+
20947
+ SyntaxError (c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:14: syntax error, unexpected '<', expecting ')'
20948
+ ...e;@output_buffer.append=( raw(<%=previousMonth);@output_buff...
20949
+ ... ^
20950
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')'
20951
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')'):
20952
+ app/views/base/index.html.erb:14: syntax error, unexpected '<', expecting ')'
20953
+ app/views/base/index.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')'
20954
+ app/views/base/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')'
20955
+
20956
+
20957
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
20958
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20959
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
20960
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.5ms)
20961
+
20962
+
20963
+ Started GET "/" for ::1 at 2015-03-25 11:17:41 +0500
20964
+ Processing by BaseController#index as HTML
20965
+ Rendered base/index.html.erb within layouts/application (1.5ms)
20966
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
20967
+
20968
+ SyntaxError (c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:14: syntax error, unexpected '<', expecting ')'
20969
+ ...e;@output_buffer.append=( raw(<%=previousMonth);@output_buff...
20970
+ ... ^
20971
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')'
20972
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')'):
20973
+ app/views/base/index.html.erb:14: syntax error, unexpected '<', expecting ')'
20974
+ app/views/base/index.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')'
20975
+ app/views/base/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')'
20976
+
20977
+
20978
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.5ms)
20979
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
20980
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
20981
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.5ms)
20982
+
20983
+
20984
+ Started GET "/" for ::1 at 2015-03-25 11:17:42 +0500
20985
+ Processing by BaseController#index as HTML
20986
+ Rendered base/index.html.erb within layouts/application (0.5ms)
20987
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
20988
+
20989
+ SyntaxError (c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:14: syntax error, unexpected '>'
20990
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:16: unknown regexp options - dv
20991
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: unterminated string meets end of file
20992
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'):
20993
+ app/views/base/index.html.erb:14: syntax error, unexpected '>'
20994
+ app/views/base/index.html.erb:16: unknown regexp options - dv
20995
+ app/views/base/index.html.erb:17: unterminated string meets end of file
20996
+ app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'
20997
+
20998
+
20999
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.5ms)
21000
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
21001
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms)
21002
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.5ms)
21003
+
21004
+
21005
+ Started GET "/" for ::1 at 2015-03-25 11:17:49 +0500
21006
+ Processing by BaseController#index as HTML
21007
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21008
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
21009
+
21010
+ SyntaxError (c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:14: syntax error, unexpected '>'
21011
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:16: unknown regexp options - dv
21012
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: unterminated string meets end of file
21013
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'):
21014
+ app/views/base/index.html.erb:14: syntax error, unexpected '>'
21015
+ app/views/base/index.html.erb:16: unknown regexp options - dv
21016
+ app/views/base/index.html.erb:17: unterminated string meets end of file
21017
+ app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'
21018
+
21019
+
21020
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.5ms)
21021
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
21022
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
21023
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.5ms)
21024
+
21025
+
21026
+ Started GET "/" for ::1 at 2015-03-25 11:17:50 +0500
21027
+ Processing by BaseController#index as HTML
21028
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21029
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
21030
+
21031
+ SyntaxError (c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:14: syntax error, unexpected '>'
21032
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:16: unknown regexp options - dv
21033
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: unterminated string meets end of file
21034
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'):
21035
+ app/views/base/index.html.erb:14: syntax error, unexpected '>'
21036
+ app/views/base/index.html.erb:16: unknown regexp options - dv
21037
+ app/views/base/index.html.erb:17: unterminated string meets end of file
21038
+ app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'
21039
+
21040
+
21041
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
21042
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
21043
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
21044
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.0ms)
21045
+
21046
+
21047
+ Started GET "/" for ::1 at 2015-03-25 11:17:59 +0500
21048
+ Processing by BaseController#index as HTML
21049
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21050
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
21051
+
21052
+ SyntaxError (c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:14: syntax error, unexpected '>'
21053
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:16: unknown regexp options - dv
21054
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: unterminated string meets end of file
21055
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'):
21056
+ app/views/base/index.html.erb:14: syntax error, unexpected '>'
21057
+ app/views/base/index.html.erb:16: unknown regexp options - dv
21058
+ app/views/base/index.html.erb:17: unterminated string meets end of file
21059
+ app/views/base/index.html.erb:17: syntax error, unexpected end-of-input, expecting ')'
21060
+
21061
+
21062
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
21063
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms)
21064
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
21065
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.5ms)
21066
+
21067
+
21068
+ Started GET "/" for ::1 at 2015-03-25 11:18:00 +0500
21069
+ Processing by BaseController#index as HTML
21070
+ Rendered base/index.html.erb within layouts/application (2.0ms)
21071
+ Completed 200 OK in 79ms (Views: 78.0ms | ActiveRecord: 0.0ms)
21072
+
21073
+
21074
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21075
+
21076
+
21077
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21078
+
21079
+
21080
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21081
+
21082
+
21083
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21084
+
21085
+
21086
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21087
+
21088
+
21089
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21090
+
21091
+
21092
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21093
+
21094
+
21095
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21096
+
21097
+
21098
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21099
+
21100
+
21101
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:18:00 +0500
21102
+
21103
+
21104
+ Started GET "/" for ::1 at 2015-03-25 11:18:30 +0500
21105
+ Processing by BaseController#index as HTML
21106
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21107
+ Completed 200 OK in 70ms (Views: 68.5ms | ActiveRecord: 0.0ms)
21108
+
21109
+
21110
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21111
+
21112
+
21113
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21114
+
21115
+
21116
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21117
+
21118
+
21119
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21120
+
21121
+
21122
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21123
+
21124
+
21125
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21126
+
21127
+
21128
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21129
+
21130
+
21131
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21132
+
21133
+
21134
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21135
+
21136
+
21137
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:18:30 +0500
21138
+
21139
+
21140
+ Started GET "/" for ::1 at 2015-03-25 11:18:31 +0500
21141
+ Processing by BaseController#index as HTML
21142
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21143
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
21144
+
21145
+ SyntaxError (c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:14: syntax error, unexpected $undefined, expecting ')'
21146
+ ...);@output_buffer.safe_append='\' %>
21147
+ ... ^
21148
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')'
21149
+ c:/Users/ibondarenko/Dropbox/clndr/test/dummy/app/views/base/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')'):
21150
+ app/views/base/index.html.erb:14: syntax error, unexpected $undefined, expecting ')'
21151
+ app/views/base/index.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')'
21152
+ app/views/base/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')'
21153
+
21154
+
21155
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
21156
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
21157
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
21158
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.5ms)
21159
+
21160
+
21161
+ Started GET "/" for ::1 at 2015-03-25 11:19:53 +0500
21162
+ Processing by BaseController#index as HTML
21163
+ Rendered base/index.html.erb within layouts/application (3.0ms)
21164
+ Completed 200 OK in 172ms (Views: 169.5ms | ActiveRecord: 0.0ms)
21165
+
21166
+
21167
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21168
+
21169
+
21170
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21171
+
21172
+
21173
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21174
+
21175
+
21176
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21177
+
21178
+
21179
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21180
+
21181
+
21182
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21183
+
21184
+
21185
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21186
+
21187
+
21188
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21189
+
21190
+
21191
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21192
+
21193
+
21194
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:19:54 +0500
21195
+
21196
+
21197
+ Started GET "/" for ::1 at 2015-03-25 11:20:40 +0500
21198
+ Processing by BaseController#index as HTML
21199
+ Rendered base/index.html.erb within layouts/application (1.5ms)
21200
+ Completed 200 OK in 80ms (Views: 79.0ms | ActiveRecord: 0.0ms)
21201
+
21202
+
21203
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21204
+
21205
+
21206
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21207
+
21208
+
21209
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21210
+
21211
+
21212
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21213
+
21214
+
21215
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21216
+
21217
+
21218
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21219
+
21220
+
21221
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21222
+
21223
+
21224
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21225
+
21226
+
21227
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21228
+
21229
+
21230
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:20:40 +0500
21231
+
21232
+
21233
+ Started GET "/" for ::1 at 2015-03-25 11:20:42 +0500
21234
+ Processing by BaseController#index as HTML
21235
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21236
+ Completed 200 OK in 69ms (Views: 68.0ms | ActiveRecord: 0.0ms)
21237
+
21238
+
21239
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21240
+
21241
+
21242
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21243
+
21244
+
21245
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21246
+
21247
+
21248
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21249
+
21250
+
21251
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21252
+
21253
+
21254
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21255
+
21256
+
21257
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21258
+
21259
+
21260
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21261
+
21262
+
21263
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21264
+
21265
+
21266
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:20:42 +0500
21267
+
21268
+
21269
+ Started GET "/" for ::1 at 2015-03-25 11:20:43 +0500
21270
+ Processing by BaseController#index as HTML
21271
+ Rendered base/index.html.erb within layouts/application (0.5ms)
21272
+ Completed 200 OK in 76ms (Views: 75.0ms | ActiveRecord: 0.0ms)
21273
+
21274
+
21275
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21276
+
21277
+
21278
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21279
+
21280
+
21281
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21282
+
21283
+
21284
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21285
+
21286
+
21287
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21288
+
21289
+
21290
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21291
+
21292
+
21293
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21294
+
21295
+
21296
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21297
+
21298
+
21299
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21300
+
21301
+
21302
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:20:43 +0500
21303
+
21304
+
21305
+ Started GET "/" for ::1 at 2015-03-25 11:20:44 +0500
21306
+ Processing by BaseController#index as HTML
21307
+ Rendered base/index.html.erb within layouts/application (0.5ms)
21308
+ Completed 200 OK in 73ms (Views: 72.0ms | ActiveRecord: 0.0ms)
21309
+
21310
+
21311
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21312
+
21313
+
21314
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21315
+
21316
+
21317
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21318
+
21319
+
21320
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21321
+
21322
+
21323
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21324
+
21325
+
21326
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21327
+
21328
+
21329
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21330
+
21331
+
21332
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21333
+
21334
+
21335
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21336
+
21337
+
21338
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:20:45 +0500
21339
+
21340
+
21341
+ Started GET "/" for ::1 at 2015-03-25 11:21:13 +0500
21342
+ Processing by BaseController#index as HTML
21343
+ Rendered base/index.html.erb within layouts/application (0.5ms)
21344
+ Completed 200 OK in 95ms (Views: 94.0ms | ActiveRecord: 0.0ms)
21345
+
21346
+
21347
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21348
+
21349
+
21350
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21351
+
21352
+
21353
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21354
+
21355
+
21356
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21357
+
21358
+
21359
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21360
+
21361
+
21362
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21363
+
21364
+
21365
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21366
+
21367
+
21368
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21369
+
21370
+
21371
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21372
+
21373
+
21374
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:21:13 +0500
21375
+
21376
+
21377
+ Started GET "/" for ::1 at 2015-03-25 11:21:15 +0500
21378
+ Processing by BaseController#index as HTML
21379
+ Rendered base/index.html.erb within layouts/application (2.0ms)
21380
+ Completed 200 OK in 73ms (Views: 71.5ms | ActiveRecord: 0.0ms)
21381
+
21382
+
21383
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21384
+
21385
+
21386
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21387
+
21388
+
21389
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21390
+
21391
+
21392
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21393
+
21394
+
21395
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21396
+
21397
+
21398
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21399
+
21400
+
21401
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21402
+
21403
+
21404
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21405
+
21406
+
21407
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21408
+
21409
+
21410
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:21:15 +0500
21411
+
21412
+
21413
+ Started GET "/" for ::1 at 2015-03-25 11:22:17 +0500
21414
+ Processing by BaseController#index as HTML
21415
+ Rendered base/index.html.erb within layouts/application (18.0ms)
21416
+ Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms)
21417
+
21418
+ ActionView::Template::Error (undefined local variable or method `_' for #<#<Class:0x4a953f8>:0x3bd7a28>):
21419
+ 11: <%= @custom_clndr.view%>
21420
+ 12: <div class="custom_template">
21421
+ 13: <p>
21422
+ 14: <% _.each(days, function(day){ %>
21423
+ 15: <div class='<%= day.classes %>'><%= day.day %></div>
21424
+ 16: <% }); %>
21425
+ 17: previousMonth is <%= template_variable(:previousMonth)%>
21426
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb___38213265_31673580'
21427
+
21428
+
21429
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
21430
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
21431
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
21432
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.0ms)
21433
+
21434
+
21435
+ Started GET "/" for ::1 at 2015-03-25 11:22:19 +0500
21436
+ Processing by BaseController#index as HTML
21437
+ Rendered base/index.html.erb within layouts/application (12.0ms)
21438
+ Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
21439
+
21440
+ ActionView::Template::Error (undefined local variable or method `_' for #<#<Class:0x4a953f8>:0x444a680>):
21441
+ 11: <%= @custom_clndr.view%>
21442
+ 12: <div class="custom_template">
21443
+ 13: <p>
21444
+ 14: <% _.each(days, function(day){ %>
21445
+ 15: <div class='<%= day.classes %>'><%= day.day %></div>
21446
+ 16: <% }); %>
21447
+ 17: previousMonth is <%= template_variable(:previousMonth)%>
21448
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb___38213265_31673580'
21449
+
21450
+
21451
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
21452
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms)
21453
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
21454
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.5ms)
21455
+
21456
+
21457
+ Started GET "/" for ::1 at 2015-03-25 11:25:10 +0500
21458
+ Processing by BaseController#index as HTML
21459
+ Rendered base/index.html.erb within layouts/application (13.0ms)
21460
+ Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms)
21461
+
21462
+ ActionView::Template::Error (undefined local variable or method `intervalStart' for #<#<Class:0x4a953f8>:0x490f200>):
21463
+ 11: <%= @custom_clndr.view%>
21464
+ 12: <div class="custom_template">
21465
+ 13: <div class="week-view">
21466
+ 14: <div class="date-range bg-red"><%= intervalStart.format('MMMM Do, YYYY') %> - <%= intervalEnd.format('MMMM Do, YYYY') %></div>
21467
+ 15: <div class="days-of-the-week">
21468
+ 16: <% _.each(daysOfTheWeek, function(day) { %><div class="day-of-the-week"><%= day %></div><% }); %>
21469
+ 17: </div>
21470
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb___38213265_38298708'
21471
+
21472
+
21473
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
21474
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
21475
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
21476
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.5ms)
21477
+
21478
+
21479
+ Started GET "/" for ::1 at 2015-03-25 11:25:11 +0500
21480
+ Processing by BaseController#index as HTML
21481
+ Rendered base/index.html.erb within layouts/application (10.0ms)
21482
+ Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
21483
+
21484
+ ActionView::Template::Error (undefined local variable or method `intervalStart' for #<#<Class:0x4a953f8>:0x5008860>):
21485
+ 11: <%= @custom_clndr.view%>
21486
+ 12: <div class="custom_template">
21487
+ 13: <div class="week-view">
21488
+ 14: <div class="date-range bg-red"><%= intervalStart.format('MMMM Do, YYYY') %> - <%= intervalEnd.format('MMMM Do, YYYY') %></div>
21489
+ 15: <div class="days-of-the-week">
21490
+ 16: <% _.each(daysOfTheWeek, function(day) { %><div class="day-of-the-week"><%= day %></div><% }); %>
21491
+ 17: </div>
21492
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb___38213265_38298708'
21493
+
21494
+
21495
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
21496
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
21497
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
21498
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.5ms)
21499
+
21500
+
21501
+ Started GET "/" for ::1 at 2015-03-25 11:25:12 +0500
21502
+ Processing by BaseController#index as HTML
21503
+ Rendered base/index.html.erb within layouts/application (11.5ms)
21504
+ Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
21505
+
21506
+ ActionView::Template::Error (undefined local variable or method `intervalStart' for #<#<Class:0x4a953f8>:0x5179938>):
21507
+ 11: <%= @custom_clndr.view%>
21508
+ 12: <div class="custom_template">
21509
+ 13: <div class="week-view">
21510
+ 14: <div class="date-range bg-red"><%= intervalStart.format('MMMM Do, YYYY') %> - <%= intervalEnd.format('MMMM Do, YYYY') %></div>
21511
+ 15: <div class="days-of-the-week">
21512
+ 16: <% _.each(daysOfTheWeek, function(day) { %><div class="day-of-the-week"><%= day %></div><% }); %>
21513
+ 17: </div>
21514
+ app/views/base/index.html.erb:14:in `_app_views_base_index_html_erb___38213265_38298708'
21515
+
21516
+
21517
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
21518
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms)
21519
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
21520
+ Rendered c:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.5ms)
21521
+
21522
+
21523
+ Started GET "/" for ::1 at 2015-03-25 11:27:09 +0500
21524
+ Processing by BaseController#index as HTML
21525
+ Rendered base/index.html.erb within layouts/application (2.0ms)
21526
+ Completed 200 OK in 76ms (Views: 75.5ms | ActiveRecord: 0.0ms)
21527
+
21528
+
21529
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21530
+
21531
+
21532
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21533
+
21534
+
21535
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21536
+
21537
+
21538
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21539
+
21540
+
21541
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21542
+
21543
+
21544
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21545
+
21546
+
21547
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21548
+
21549
+
21550
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21551
+
21552
+
21553
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21554
+
21555
+
21556
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:09 +0500
21557
+
21558
+
21559
+ Started GET "/" for ::1 at 2015-03-25 11:27:19 +0500
21560
+ Processing by BaseController#index as HTML
21561
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21562
+ Completed 200 OK in 86ms (Views: 85.0ms | ActiveRecord: 0.0ms)
21563
+
21564
+
21565
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21566
+
21567
+
21568
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21569
+
21570
+
21571
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21572
+
21573
+
21574
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21575
+
21576
+
21577
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21578
+
21579
+
21580
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21581
+
21582
+
21583
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21584
+
21585
+
21586
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21587
+
21588
+
21589
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21590
+
21591
+
21592
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:20 +0500
21593
+
21594
+
21595
+ Started GET "/" for ::1 at 2015-03-25 11:27:21 +0500
21596
+ Processing by BaseController#index as HTML
21597
+ Rendered base/index.html.erb within layouts/application (1.5ms)
21598
+ Completed 200 OK in 90ms (Views: 77.5ms | ActiveRecord: 0.0ms)
21599
+
21600
+
21601
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21602
+
21603
+
21604
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21605
+
21606
+
21607
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21608
+
21609
+
21610
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21611
+
21612
+
21613
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21614
+
21615
+
21616
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21617
+
21618
+
21619
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21620
+
21621
+
21622
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21623
+
21624
+
21625
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21626
+
21627
+
21628
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:21 +0500
21629
+
21630
+
21631
+ Started GET "/" for ::1 at 2015-03-25 11:27:42 +0500
21632
+ Processing by BaseController#index as HTML
21633
+ Rendered base/index.html.erb within layouts/application (1.5ms)
21634
+ Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
21635
+
21636
+
21637
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:42 +0500
21638
+
21639
+
21640
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:42 +0500
21641
+
21642
+
21643
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:42 +0500
21644
+
21645
+
21646
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:42 +0500
21647
+
21648
+
21649
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:42 +0500
21650
+
21651
+
21652
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:42 +0500
21653
+
21654
+
21655
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:42 +0500
21656
+
21657
+
21658
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:43 +0500
21659
+
21660
+
21661
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:43 +0500
21662
+
21663
+
21664
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:43 +0500
21665
+
21666
+
21667
+ Started GET "/" for ::1 at 2015-03-25 11:27:44 +0500
21668
+ Processing by BaseController#index as HTML
21669
+ Rendered base/index.html.erb within layouts/application (0.5ms)
21670
+ Completed 200 OK in 81ms (Views: 79.5ms | ActiveRecord: 0.0ms)
21671
+
21672
+
21673
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:44 +0500
21674
+
21675
+
21676
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:44 +0500
21677
+
21678
+
21679
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:44 +0500
21680
+
21681
+
21682
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:45 +0500
21683
+
21684
+
21685
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:45 +0500
21686
+
21687
+
21688
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:45 +0500
21689
+
21690
+
21691
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:45 +0500
21692
+
21693
+
21694
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:45 +0500
21695
+
21696
+
21697
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:45 +0500
21698
+
21699
+
21700
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:45 +0500
21701
+
21702
+
21703
+ Started GET "/" for ::1 at 2015-03-25 11:27:46 +0500
21704
+ Processing by BaseController#index as HTML
21705
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21706
+ Completed 200 OK in 71ms (Views: 69.0ms | ActiveRecord: 0.0ms)
21707
+
21708
+
21709
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21710
+
21711
+
21712
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21713
+
21714
+
21715
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21716
+
21717
+
21718
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21719
+
21720
+
21721
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21722
+
21723
+
21724
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21725
+
21726
+
21727
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21728
+
21729
+
21730
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21731
+
21732
+
21733
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21734
+
21735
+
21736
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:46 +0500
21737
+
21738
+
21739
+ Started GET "/" for ::1 at 2015-03-25 11:27:47 +0500
21740
+ Processing by BaseController#index as HTML
21741
+ Rendered base/index.html.erb within layouts/application (0.5ms)
21742
+ Completed 200 OK in 77ms (Views: 76.0ms | ActiveRecord: 0.0ms)
21743
+
21744
+
21745
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21746
+
21747
+
21748
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21749
+
21750
+
21751
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21752
+
21753
+
21754
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21755
+
21756
+
21757
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21758
+
21759
+
21760
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21761
+
21762
+
21763
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21764
+
21765
+
21766
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21767
+
21768
+
21769
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21770
+
21771
+
21772
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:47 +0500
21773
+
21774
+
21775
+ Started GET "/" for ::1 at 2015-03-25 11:27:48 +0500
21776
+ Processing by BaseController#index as HTML
21777
+ Rendered base/index.html.erb within layouts/application (1.5ms)
21778
+ Completed 200 OK in 81ms (Views: 80.0ms | ActiveRecord: 0.0ms)
21779
+
21780
+
21781
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21782
+
21783
+
21784
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21785
+
21786
+
21787
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21788
+
21789
+
21790
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21791
+
21792
+
21793
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21794
+
21795
+
21796
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21797
+
21798
+
21799
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21800
+
21801
+
21802
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21803
+
21804
+
21805
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21806
+
21807
+
21808
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:48 +0500
21809
+
21810
+
21811
+ Started GET "/" for ::1 at 2015-03-25 11:27:53 +0500
21812
+ Processing by BaseController#index as HTML
21813
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21814
+ Completed 200 OK in 73ms (Views: 72.0ms | ActiveRecord: 0.0ms)
21815
+
21816
+
21817
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:27:53 +0500
21818
+
21819
+
21820
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21821
+
21822
+
21823
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21824
+
21825
+
21826
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21827
+
21828
+
21829
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21830
+
21831
+
21832
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21833
+
21834
+
21835
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21836
+
21837
+
21838
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21839
+
21840
+
21841
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21842
+
21843
+
21844
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:27:54 +0500
21845
+
21846
+
21847
+ Started GET "/" for ::1 at 2015-03-25 11:28:20 +0500
21848
+ Processing by BaseController#index as HTML
21849
+ Rendered base/index.html.erb within layouts/application (1.5ms)
21850
+ Completed 200 OK in 80ms (Views: 79.0ms | ActiveRecord: 0.0ms)
21851
+
21852
+
21853
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21854
+
21855
+
21856
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21857
+
21858
+
21859
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21860
+
21861
+
21862
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21863
+
21864
+
21865
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21866
+
21867
+
21868
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21869
+
21870
+
21871
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21872
+
21873
+
21874
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21875
+
21876
+
21877
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21878
+
21879
+
21880
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:28:20 +0500
21881
+
21882
+
21883
+ Started GET "/" for ::1 at 2015-03-25 11:35:08 +0500
21884
+ Processing by BaseController#index as HTML
21885
+ Rendered base/index.html.erb within layouts/application (1.0ms)
21886
+ Completed 200 OK in 74ms (Views: 73.0ms | ActiveRecord: 0.0ms)
21887
+
21888
+
21889
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21890
+
21891
+
21892
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21893
+
21894
+
21895
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21896
+
21897
+
21898
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21899
+
21900
+
21901
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21902
+
21903
+
21904
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21905
+
21906
+
21907
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21908
+
21909
+
21910
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21911
+
21912
+
21913
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21914
+
21915
+
21916
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:35:08 +0500
21917
+
21918
+
21919
+ Started GET "/" for ::1 at 2015-03-25 11:35:19 +0500
21920
+ Processing by BaseController#index as HTML
21921
+ Rendered base/index.html.erb within layouts/application (2.0ms)
21922
+ Completed 200 OK in 78ms (Views: 77.0ms | ActiveRecord: 0.0ms)
21923
+
21924
+
21925
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21926
+
21927
+
21928
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21929
+
21930
+
21931
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21932
+
21933
+
21934
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21935
+
21936
+
21937
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21938
+
21939
+
21940
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21941
+
21942
+
21943
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21944
+
21945
+
21946
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21947
+
21948
+
21949
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21950
+
21951
+
21952
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:35:19 +0500
21953
+
21954
+
21955
+ Started GET "/" for ::1 at 2015-03-25 11:35:48 +0500
21956
+ Processing by BaseController#index as HTML
21957
+ Rendered base/index.html.erb within layouts/application (1.5ms)
21958
+ Completed 200 OK in 87ms (Views: 86.0ms | ActiveRecord: 0.0ms)
21959
+
21960
+
21961
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21962
+
21963
+
21964
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21965
+
21966
+
21967
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21968
+
21969
+
21970
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21971
+
21972
+
21973
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21974
+
21975
+
21976
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21977
+
21978
+
21979
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21980
+
21981
+
21982
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21983
+
21984
+
21985
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21986
+
21987
+
21988
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:35:48 +0500
21989
+
21990
+
21991
+ Started GET "/" for ::1 at 2015-03-25 11:36:42 +0500
21992
+ Processing by BaseController#index as HTML
21993
+ Rendered base/index.html.erb within layouts/application (2.5ms)
21994
+ Completed 200 OK in 83ms (Views: 82.0ms | ActiveRecord: 0.0ms)
21995
+
21996
+
21997
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:36:42 +0500
21998
+
21999
+
22000
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22001
+
22002
+
22003
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22004
+
22005
+
22006
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22007
+
22008
+
22009
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22010
+
22011
+
22012
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22013
+
22014
+
22015
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22016
+
22017
+
22018
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22019
+
22020
+
22021
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22022
+
22023
+
22024
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:36:42 +0500
22025
+
22026
+
22027
+ Started GET "/" for ::1 at 2015-03-25 11:37:25 +0500
22028
+ Processing by BaseController#index as HTML
22029
+ Rendered base/index.html.erb within layouts/application (2.0ms)
22030
+ Completed 200 OK in 79ms (Views: 74.0ms | ActiveRecord: 0.0ms)
22031
+
22032
+
22033
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22034
+
22035
+
22036
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22037
+
22038
+
22039
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22040
+
22041
+
22042
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22043
+
22044
+
22045
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22046
+
22047
+
22048
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22049
+
22050
+
22051
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22052
+
22053
+
22054
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22055
+
22056
+
22057
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22058
+
22059
+
22060
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:37:26 +0500
22061
+
22062
+
22063
+ Started GET "/" for ::1 at 2015-03-25 11:59:28 +0500
22064
+ Processing by BaseController#index as HTML
22065
+ Rendered base/index.html.erb within layouts/application (1.5ms)
22066
+ Completed 200 OK in 204ms (Views: 203.0ms | ActiveRecord: 0.0ms)
22067
+
22068
+
22069
+ Started GET "/assets/base.css?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22070
+
22071
+
22072
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22073
+
22074
+
22075
+ Started GET "/assets/application.css?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22076
+
22077
+
22078
+ Started GET "/assets/underscore.js?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22079
+
22080
+
22081
+ Started GET "/assets/base.js?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22082
+
22083
+
22084
+ Started GET "/assets/clndr-rails/clndr.min.js?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22085
+
22086
+
22087
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22088
+
22089
+
22090
+ Started GET "/assets/moment.js?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22091
+
22092
+
22093
+ Started GET "/assets/application.js?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22094
+
22095
+
22096
+ Started GET "/assets/clndr-rails/index.js?body=1" for ::1 at 2015-03-25 11:59:28 +0500
22097
+
22098
+
22099
+ Started GET "/assets/clndr-rails.css?body=1" for ::1 at 2015-03-25 11:59:29 +0500