lasha 0.4.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c36aa79b9c0515f2335beb736b1908a36650a9e6f88fb954254630e4c15d726
4
- data.tar.gz: 339506fb49f00243a319938bfaed4ab21f796d15477c6c2ab073a554f936b77f
3
+ metadata.gz: 6e0baeb582d7c819c86275551621d1bad7eaefd846bba61dd1100885c1264d2b
4
+ data.tar.gz: f0d36404910fbe7b8698159b92417eccb8881c48dd4d790bca8f12f0d682f3af
5
5
  SHA512:
6
- metadata.gz: df0b4a5bae1d8f3d410e94476425280be2fecde201226927d97d10f4632315af3424906d6eff5aadd2b5e92362e0b7fed3d8ebfb5d58140cdaa10048c6540c9e
7
- data.tar.gz: 7e242c046e174e0b7d5eabcc38b1a030010343d121cc32d065d0993b0f6d686827ad607a3d07b90d67df3f0beab5367194fa4183553b4dd85956b24167e60570
6
+ metadata.gz: 5608fac80dc26d527fafc0b2f791e892bb1f343674746426d4cda4bdd6a2718fce8d2355b50ce07afa4b5f9705034a389ebf5120dacc35d46420e5b61e1a9858
7
+ data.tar.gz: '092b22d15f4db43f212ea879fc3a8d3a43091e8dd43642bfb347b32517f7e98f265b4688cd1a812380e8b5bd219e155322ed2321c942967f70c21ed4f94293d6'
data/README.md CHANGED
@@ -19,9 +19,10 @@ Controller `index` action
19
19
  controller: self,
20
20
  # namespace: :admin, # optional
21
21
  # model: Model, # optional
22
- collection: Model.all.order(created_at: :desc).limit(20),
22
+ collection: Model.all.order(created_at: :desc),
23
23
  attributes: %i[amount node_id created_at],
24
24
  # actions: %i[show] # optional
25
+ # pagy_items: 20 # optional
25
26
  )
26
27
  ```
27
28
  `index_data` input options
@@ -32,6 +33,7 @@ attributes: (required) model attributes determine which index columns are shown
32
33
  namespace-: (optional) controller namespace (derive from controller)
33
34
  model-----: (optional) derive from collection
34
35
  actions---: (optional) derive from controller, can contain %i[new show edit destroy]
36
+ pagy_items: (optional) items per page (default: 20)
35
37
  ```
36
38
 
37
39
  index view `index.html.slim`
@@ -77,15 +79,15 @@ Gems marked with `*` are required within engine, so you can use these gems witho
77
79
  * rails (5+)
78
80
  * sassc-rails (*)
79
81
  * slim-rails (*)
82
+ * pagy (*)
80
83
  * rspec-rails
81
84
  * factory_bot_rails
82
85
 
83
-
84
86
  ## Development Helpers
85
87
  Snippet for quickly rebuilding gem
86
88
  ```
87
89
  cd ~/gem_dir
88
- gem uninstall lasha; rake build; gem install pkg/lasha-0.2.7.gem;
90
+ gem uninstall lasha; rake build; gem install pkg/lasha-0.5.0.gem;
89
91
  ```
90
92
 
91
93
  ## Contributing
@@ -1,4 +1,6 @@
1
1
  module LashaApplicationHelper
2
+ include Pagy::Frontend
3
+
2
4
  def index_actions_link_helper(action, item, data)
3
5
  case action
4
6
  when :show
@@ -17,4 +19,11 @@ module LashaApplicationHelper
17
19
  class: "btn btn-danger btn-xs btn-block"
18
20
  end
19
21
  end
22
+
23
+ # = lasha_pagy_helper(data[:pagy])
24
+ def lasha_pagy_helper(pagy)
25
+ return nil if pagy.pages.eql? 1
26
+
27
+ render partial: "lasha/bootstrap_nav", locals: { pagy: pagy }
28
+ end
20
29
  end
@@ -0,0 +1,32 @@
1
+ / This template is i18n-ready: if you don't use i18n, then you can replace the pagy_t
2
+ / calls with the actual strings ("‹ Prev", "Next ›", "…").
3
+ / The link variable is set to a proc that returns the link tag.
4
+ / Usage: link.call( page_number [, text [, extra_attributes_string ]])
5
+ - link = pagy_link_proc(pagy, 'class="page-link"')
6
+
7
+ nav.pagy-bootstrap-nav.pagination.my-1 role="navigation" aria-label="pager"
8
+
9
+ ul.pagination.mx-auto
10
+
11
+ - if pagy.prev
12
+ li.page-item.prev == link.call(pagy.prev, pagy_t('pagy.nav.prev'), 'aria-label="previous"')
13
+ - else
14
+ li.page-item.prev.disabled
15
+ a.page-link href="#" == pagy_t('pagy.nav.prev')
16
+
17
+ - pagy.series.each do |item| # series example: [1, :gap, 7, 8, "9", 10, 11, :gap, 36]
18
+ - if item.is_a?(Integer) # page link
19
+ li.page-item == link.call(item)
20
+
21
+ - elsif item.is_a?(String) # current page
22
+ li.page-item.active == link.call(item)
23
+
24
+ - elsif item == :gap # page gap
25
+ li.page-item.disabled.gap
26
+ a.page-link href="#" == pagy_t('pagy.nav.gap')
27
+
28
+ - if pagy.next
29
+ li.page-item.next == link.call(pagy.next, pagy_t('pagy.nav.next'), 'aria-label="next"')
30
+ - else
31
+ li.page-item.next.disabled
32
+ a.page-link href="#" == pagy_t('pagy.nav.next')
@@ -1,4 +1,7 @@
1
1
  h2.text-center #{data[:model]} Index
2
+
3
+ = lasha_pagy_helper(data[:pagy])
4
+
2
5
  .row
3
6
  .col-sm-12
4
7
  .table-responsive
@@ -23,6 +26,8 @@ h2.text-center #{data[:model]} Index
23
26
  - (data[:actions] - [:new]).each do |action|
24
27
  td[style="width: 0"] = index_actions_link_helper(action, item, data)
25
28
 
29
+ = lasha_pagy_helper(data[:pagy])
30
+
26
31
  - if data[:actions].include?(:new)
27
32
  .row
28
33
  .col-sm-3.mx-auto = link_to :new, url_for([data[:namespace], :new, data[:model].to_s.downcase]), class: "btn btn-success btn-sm btn-block"
data/lib/lasha.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  require "lasha/engine"
2
2
  require "slim-rails"
3
3
  require "sassc-rails"
4
+ require "pagy"
4
5
 
5
6
  module Lasha
6
7
  INDEX_ACTIONS = %i[new show edit destroy]
@@ -12,7 +13,8 @@ module Lasha
12
13
  model: nil,
13
14
  actions: nil,
14
15
  collection:,
15
- attributes:
16
+ attributes:,
17
+ pagy_items: 20
16
18
  )
17
19
  index_data_hash = {
18
20
  namespace: set_or_guess_namespace(namespace, controller),
@@ -23,6 +25,13 @@ module Lasha
23
25
  }
24
26
  validate_index_data(**index_data_hash)
25
27
 
28
+ # Pagy
29
+ controller.class.send(:include, Pagy::Backend)
30
+ index_data_hash[:pagy], index_data_hash[:collection] =
31
+ controller.send(
32
+ :pagy, index_data_hash[:collection], items: pagy_items
33
+ )
34
+
26
35
  index_data_hash
27
36
  rescue ArgumentError => e
28
37
  puts "******** index_data argument error report"
@@ -78,7 +87,7 @@ module Lasha
78
87
  end
79
88
  end
80
89
 
81
- def raise_arg_error(message)
90
+ def raise_args_error(message)
82
91
  raise ArgumentError, message
83
92
  end
84
93
  end
data/lib/lasha/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lasha
2
- VERSION = "0.4.2"
2
+ VERSION = "0.5.0"
3
3
  end
@@ -1,30 +1,28 @@
1
1
  class TreesController < ApplicationController
2
- before_action :set_tree, only: [:show, :edit, :update, :destroy]
2
+ before_action :set_tree, only: %i[show edit update destroy]
3
3
 
4
4
  def index
5
5
  @trees = Tree.all
6
6
  @data = Lasha.index_data(
7
7
  controller: self,
8
- collection: Tree.all.order(created_at: :desc).limit(20),
8
+ collection: Tree.all.order(created_at: :desc),
9
9
  attributes: %i[title]
10
10
  )
11
11
  end
12
12
 
13
- def show
14
- end
13
+ def show; end
15
14
 
16
15
  def new
17
16
  @tree = Tree.new
18
17
  end
19
18
 
20
- def edit
21
- end
19
+ def edit; end
22
20
 
23
21
  def create
24
22
  @tree = Tree.new(tree_params)
25
23
 
26
24
  if @tree.save
27
- redirect_to @tree, notice: 'Tree was successfully created.'
25
+ redirect_to @tree, notice: "Tree was successfully created."
28
26
  else
29
27
  render :new
30
28
  end
@@ -32,7 +30,7 @@ class TreesController < ApplicationController
32
30
 
33
31
  def update
34
32
  if @tree.update(tree_params)
35
- redirect_to @tree, notice: 'Tree was successfully updated.'
33
+ redirect_to @tree, notice: "Tree was successfully updated."
36
34
  else
37
35
  render :edit
38
36
  end
@@ -40,7 +38,7 @@ class TreesController < ApplicationController
40
38
 
41
39
  def destroy
42
40
  @tree.destroy
43
- redirect_to trees_url, notice: 'Tree was successfully destroyed.'
41
+ redirect_to trees_url, notice: "Tree was successfully destroyed."
44
42
  end
45
43
 
46
44
  private
@@ -132928,3 +132928,1958 @@ Processing by TreesController#index as HTML
132928
132928
  Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.2ms)
132929
132929
 
132930
132930
 
132931
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:09:53 +0400
132932
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
132933
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
132934
+ Processing by TreesController#index as HTML
132935
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
132936
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
132937
+ Rendering trees/index.html.slim within layouts/application
132938
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (10.3ms)
132939
+ Rendered trees/index.html.slim within layouts/application (16.8ms)
132940
+ Completed 200 OK in 302ms (Views: 293.6ms | ActiveRecord: 2.3ms)
132941
+
132942
+
132943
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:24:30 +0400
132944
+ Processing by TreesController#index as HTML
132945
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
132946
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
132947
+ Rendering trees/index.html.slim within layouts/application
132948
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.7ms)
132949
+ Rendered trees/index.html.slim within layouts/application (12.7ms)
132950
+ Completed 200 OK in 35ms (Views: 32.4ms | ActiveRecord: 0.3ms)
132951
+
132952
+
132953
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:24:31 +0400
132954
+ Processing by TreesController#index as HTML
132955
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
132956
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
132957
+ Rendering trees/index.html.slim within layouts/application
132958
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (21.4ms)
132959
+ Rendered trees/index.html.slim within layouts/application (26.1ms)
132960
+ Completed 200 OK in 52ms (Views: 48.2ms | ActiveRecord: 0.5ms)
132961
+
132962
+
132963
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:24:40 +0400
132964
+ Processing by TreesController#index as HTML
132965
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
132966
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
132967
+ Rendering trees/index.html.slim within layouts/application
132968
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (4.1ms)
132969
+ Rendered trees/index.html.slim within layouts/application (5.7ms)
132970
+ Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.3ms)
132971
+
132972
+
132973
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:24:40 +0400
132974
+ Processing by TreesController#index as HTML
132975
+ Tree Load (0.7ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
132976
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
132977
+ Rendering trees/index.html.slim within layouts/application
132978
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (16.5ms)
132979
+ Rendered trees/index.html.slim within layouts/application (24.1ms)
132980
+ Completed 200 OK in 47ms (Views: 42.1ms | ActiveRecord: 0.7ms)
132981
+
132982
+
132983
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:24:41 +0400
132984
+ Processing by TreesController#index as HTML
132985
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
132986
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
132987
+ Rendering trees/index.html.slim within layouts/application
132988
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (13.6ms)
132989
+ Rendered trees/index.html.slim within layouts/application (18.0ms)
132990
+ Completed 200 OK in 42ms (Views: 38.1ms | ActiveRecord: 0.7ms)
132991
+
132992
+
132993
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:24:41 +0400
132994
+ Processing by TreesController#index as HTML
132995
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
132996
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
132997
+ Rendering trees/index.html.slim within layouts/application
132998
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (5.0ms)
132999
+ Rendered trees/index.html.slim within layouts/application (6.8ms)
133000
+ Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.2ms)
133001
+
133002
+
133003
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:27:38 +0400
133004
+ Processing by TreesController#index as HTML
133005
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133006
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
133007
+ Rendering trees/index.html.slim within layouts/application
133008
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (4.9ms)
133009
+ Rendered trees/index.html.slim within layouts/application (8.4ms)
133010
+ Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.2ms)
133011
+
133012
+
133013
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:27:39 +0400
133014
+ Processing by TreesController#index as HTML
133015
+ Tree Load (1.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133016
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
133017
+ Rendering trees/index.html.slim within layouts/application
133018
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.7ms)
133019
+ Rendered trees/index.html.slim within layouts/application (12.5ms)
133020
+ Completed 200 OK in 35ms (Views: 28.9ms | ActiveRecord: 1.5ms)
133021
+
133022
+
133023
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:27:40 +0400
133024
+ Processing by TreesController#index as HTML
133025
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133026
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
133027
+ Rendering trees/index.html.slim within layouts/application
133028
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (6.3ms)
133029
+ Rendered trees/index.html.slim within layouts/application (8.8ms)
133030
+ Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.3ms)
133031
+
133032
+
133033
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:27:40 +0400
133034
+ Processing by TreesController#index as HTML
133035
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133036
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:47
133037
+ Rendering trees/index.html.slim within layouts/application
133038
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (7.1ms)
133039
+ Rendered trees/index.html.slim within layouts/application (11.2ms)
133040
+ Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.3ms)
133041
+
133042
+
133043
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:27:44 +0400
133044
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133045
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133046
+ Processing by TreesController#index as HTML
133047
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133048
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:50
133049
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 2.2ms)
133050
+
133051
+
133052
+
133053
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133054
+
133055
+ app/controllers/trees_controller.rb:6:in `index'
133056
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:27:45 +0400
133057
+ Processing by TreesController#index as HTML
133058
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133059
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:50
133060
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
133061
+
133062
+
133063
+
133064
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133065
+
133066
+ app/controllers/trees_controller.rb:6:in `index'
133067
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:27:45 +0400
133068
+ Processing by TreesController#index as HTML
133069
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133070
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:50
133071
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.6ms)
133072
+
133073
+
133074
+
133075
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133076
+
133077
+ app/controllers/trees_controller.rb:6:in `index'
133078
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:31:21 +0400
133079
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133080
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133081
+ Processing by TreesController#index as HTML
133082
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133083
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133084
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 3.1ms)
133085
+
133086
+
133087
+
133088
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133089
+
133090
+ app/controllers/trees_controller.rb:6:in `index'
133091
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:31:22 +0400
133092
+ Processing by TreesController#index as HTML
133093
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133094
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133095
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.3ms)
133096
+
133097
+
133098
+
133099
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133100
+
133101
+ app/controllers/trees_controller.rb:6:in `index'
133102
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:31:22 +0400
133103
+ Processing by TreesController#index as HTML
133104
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133105
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133106
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.5ms)
133107
+
133108
+
133109
+
133110
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133111
+
133112
+ app/controllers/trees_controller.rb:6:in `index'
133113
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:31:23 +0400
133114
+ Processing by TreesController#index as HTML
133115
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133116
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133117
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
133118
+
133119
+
133120
+
133121
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133122
+
133123
+ app/controllers/trees_controller.rb:6:in `index'
133124
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:31:23 +0400
133125
+ Processing by TreesController#index as HTML
133126
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133127
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133128
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.4ms)
133129
+
133130
+
133131
+
133132
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133133
+
133134
+ app/controllers/trees_controller.rb:6:in `index'
133135
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:31:23 +0400
133136
+ Processing by TreesController#index as HTML
133137
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133138
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133139
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
133140
+
133141
+
133142
+
133143
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133144
+
133145
+ app/controllers/trees_controller.rb:6:in `index'
133146
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:31:24 +0400
133147
+ Processing by TreesController#index as HTML
133148
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133149
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133150
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
133151
+
133152
+
133153
+
133154
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133155
+
133156
+ app/controllers/trees_controller.rb:6:in `index'
133157
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:32:03 +0400
133158
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133159
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133160
+ Processing by TreesController#index as HTML
133161
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133162
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:49
133163
+ Rendering trees/index.html.slim within layouts/application
133164
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (10.3ms)
133165
+ Rendered trees/index.html.slim within layouts/application (19.7ms)
133166
+ Completed 200 OK in 194ms (Views: 186.0ms | ActiveRecord: 2.5ms)
133167
+
133168
+
133169
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:32:04 +0400
133170
+ Processing by TreesController#index as HTML
133171
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133172
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:49
133173
+ Rendering trees/index.html.slim within layouts/application
133174
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (21.6ms)
133175
+ Rendered trees/index.html.slim within layouts/application (25.3ms)
133176
+ Completed 200 OK in 42ms (Views: 37.9ms | ActiveRecord: 0.9ms)
133177
+
133178
+
133179
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:33:42 +0400
133180
+ Processing by TreesController#index as HTML
133181
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133182
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:49
133183
+ Rendering trees/index.html.slim within layouts/application
133184
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.9ms)
133185
+ Rendered trees/index.html.slim within layouts/application (12.0ms)
133186
+ Completed 200 OK in 38ms (Views: 35.8ms | ActiveRecord: 0.6ms)
133187
+
133188
+
133189
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:33:43 +0400
133190
+ Processing by TreesController#index as HTML
133191
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133192
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:49
133193
+ Rendering trees/index.html.slim within layouts/application
133194
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (17.9ms)
133195
+ Rendered trees/index.html.slim within layouts/application (25.6ms)
133196
+ Completed 200 OK in 45ms (Views: 41.3ms | ActiveRecord: 0.6ms)
133197
+
133198
+
133199
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:33:51 +0400
133200
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133201
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133202
+ Processing by TreesController#index as HTML
133203
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133204
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:50
133205
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 2.3ms)
133206
+
133207
+
133208
+
133209
+ NoMethodError (undefined method `pagy' for Pagy:Class):
133210
+
133211
+ app/controllers/trees_controller.rb:6:in `index'
133212
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:33:51 +0400
133213
+ Processing by TreesController#index as HTML
133214
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133215
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:50
133216
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.6ms)
133217
+
133218
+
133219
+
133220
+ NoMethodError (undefined method `pagy' for Pagy:Class):
133221
+
133222
+ app/controllers/trees_controller.rb:6:in `index'
133223
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:35:36 +0400
133224
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133225
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133226
+ Processing by TreesController#index as HTML
133227
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133228
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133229
+ Rendering trees/index.html.slim within layouts/application
133230
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (6.5ms)
133231
+ Rendered trees/index.html.slim within layouts/application (11.8ms)
133232
+ Completed 200 OK in 190ms (Views: 179.8ms | ActiveRecord: 2.2ms)
133233
+
133234
+
133235
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:36:28 +0400
133236
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133237
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133238
+ Processing by TreesController#index as HTML
133239
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133240
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133241
+ Rendering trees/index.html.slim within layouts/application
133242
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (11.6ms)
133243
+ Rendered trees/index.html.slim within layouts/application (17.2ms)
133244
+ Completed 200 OK in 212ms (Views: 203.4ms | ActiveRecord: 2.5ms)
133245
+
133246
+
133247
+ Started GET "/trees" for 127.0.0.1 at 2019-08-06 14:36:55 +0400
133248
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133249
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133250
+ Processing by TreesController#index as HTML
133251
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133252
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133253
+ Tree Load (0.1ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133254
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133255
+ Completed 500 Internal Server Error in 15ms (ActiveRecord: 4.5ms)
133256
+
133257
+
133258
+
133259
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133260
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133261
+ NoMethodError (undefined method `pagy' for #<TreesController:0x000055a538490f88>):
133262
+
133263
+ app/controllers/trees_controller.rb:6:in `index'
133264
+ Started GET "/trees" for ::1 at 2019-08-06 14:38:40 +0400
133265
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133266
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133267
+ Processing by TreesController#index as HTML
133268
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133269
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:52
133270
+ Rendering trees/index.html.slim within layouts/application
133271
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.1ms)
133272
+ Rendered trees/index.html.slim within layouts/application (14.5ms)
133273
+ Completed 200 OK in 184ms (Views: 175.9ms | ActiveRecord: 2.3ms)
133274
+
133275
+
133276
+ Started GET "/trees" for ::1 at 2019-08-06 14:39:12 +0400
133277
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133278
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133279
+ Processing by TreesController#index as HTML
133280
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133281
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:53
133282
+ Rendering trees/index.html.slim within layouts/application
133283
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.8ms)
133284
+ Rendered trees/index.html.slim within layouts/application (15.7ms)
133285
+ Completed 200 OK in 202ms (Views: 194.6ms | ActiveRecord: 2.2ms)
133286
+
133287
+
133288
+ Started GET "/trees" for ::1 at 2019-08-06 14:40:02 +0400
133289
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133290
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133291
+ Processing by TreesController#index as HTML
133292
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133293
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:53
133294
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 2.4ms)
133295
+
133296
+
133297
+
133298
+ NoMethodError (undefined method `pagy' for Lasha:Module):
133299
+
133300
+ app/controllers/trees_controller.rb:6:in `index'
133301
+ Started GET "/trees" for ::1 at 2019-08-06 14:40:16 +0400
133302
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133303
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133304
+ Processing by TreesController#index as HTML
133305
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133306
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133307
+  (11.4ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133308
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:28
133309
+ Completed 500 Internal Server Error in 26ms (ActiveRecord: 13.9ms)
133310
+
133311
+
133312
+
133313
+ NameError (undefined local variable or method `params' for Lasha:Module):
133314
+
133315
+ app/controllers/trees_controller.rb:6:in `index'
133316
+ Started GET "/trees" for ::1 at 2019-08-06 14:43:38 +0400
133317
+ Processing by TreesController#index as HTML
133318
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133319
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133320
+  (0.3ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133321
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:28
133322
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.6ms)
133323
+
133324
+
133325
+
133326
+ NameError (undefined local variable or method `params' for Lasha:Module):
133327
+
133328
+ app/controllers/trees_controller.rb:6:in `index'
133329
+ Started GET "/trees" for ::1 at 2019-08-06 14:43:44 +0400
133330
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133331
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133332
+ Processing by TreesController#index as HTML
133333
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133334
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133335
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.8ms)
133336
+
133337
+
133338
+
133339
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133340
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133341
+ NoMethodError (undefined method `include' for #<TreesController:0x000055f2ba895208>):
133342
+
133343
+ app/controllers/trees_controller.rb:6:in `index'
133344
+ Started GET "/trees" for ::1 at 2019-08-06 14:44:21 +0400
133345
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133346
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133347
+ Processing by TreesController#index as HTML
133348
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133349
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133350
+ Tree Load (0.1ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133351
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133352
+ Completed 500 Internal Server Error in 12ms (ActiveRecord: 2.2ms)
133353
+
133354
+
133355
+
133356
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133357
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133358
+ NoMethodError (private method `pagy' called for #<TreesController:0x00005584441b1b10>):
133359
+
133360
+ app/controllers/trees_controller.rb:6:in `index'
133361
+ Started GET "/trees" for ::1 at 2019-08-06 14:44:22 +0400
133362
+ Processing by TreesController#index as HTML
133363
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133364
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133365
+ Tree Load (0.1ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133366
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133367
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms)
133368
+
133369
+
133370
+
133371
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133372
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133373
+ NoMethodError (private method `pagy' called for #<TreesController:0x00005584445ed6e8>):
133374
+
133375
+ app/controllers/trees_controller.rb:6:in `index'
133376
+ Started GET "/trees" for ::1 at 2019-08-06 14:47:59 +0400
133377
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133378
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133379
+ Processing by TreesController#index as HTML
133380
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133381
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133382
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 2.5ms)
133383
+
133384
+
133385
+
133386
+ NoMethodError (undefined method `pagy' for Pagy::Backend:Module):
133387
+
133388
+ app/controllers/trees_controller.rb:6:in `index'
133389
+ Started GET "/trees" for ::1 at 2019-08-06 14:48:02 +0400
133390
+ Processing by TreesController#index as HTML
133391
+ Tree Load (0.9ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133392
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133393
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.9ms)
133394
+
133395
+
133396
+
133397
+ NoMethodError (undefined method `pagy' for Pagy::Backend:Module):
133398
+
133399
+ app/controllers/trees_controller.rb:6:in `index'
133400
+ Started GET "/trees" for ::1 at 2019-08-06 14:48:08 +0400
133401
+ Processing by TreesController#index as HTML
133402
+ Tree Load (0.7ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133403
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133404
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.7ms)
133405
+
133406
+
133407
+
133408
+ NoMethodError (undefined method `pagy' for Pagy::Backend:Module):
133409
+
133410
+ app/controllers/trees_controller.rb:6:in `index'
133411
+ Started GET "/trees" for ::1 at 2019-08-06 14:48:11 +0400
133412
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133413
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133414
+ Processing by TreesController#index as HTML
133415
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133416
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:51
133417
+ Rendering trees/index.html.slim within layouts/application
133418
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.6ms)
133419
+ Rendered trees/index.html.slim within layouts/application (14.1ms)
133420
+ Completed 500 Internal Server Error in 26ms (ActiveRecord: 2.1ms)
133421
+
133422
+
133423
+
133424
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
133425
+ 1: h2.text-center #{data[:model]} Index
133426
+ 2: .row
133427
+ 3: .col-sm-12
133428
+ 4: .table-responsive
133429
+
133430
+ app/views/trees/index.html.slim:3:in `_app_views_trees_index_html_slim__608317387573924934_47157270317140'
133431
+ Started GET "/trees" for ::1 at 2019-08-06 14:48:54 +0400
133432
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133433
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133434
+ Processing by TreesController#index as HTML
133435
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133436
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:53
133437
+ Rendering trees/index.html.slim within layouts/application
133438
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (6.1ms)
133439
+ Rendered trees/index.html.slim within layouts/application (11.7ms)
133440
+ Completed 200 OK in 179ms (Views: 170.1ms | ActiveRecord: 2.6ms)
133441
+
133442
+
133443
+ Started GET "/trees" for ::1 at 2019-08-06 14:49:32 +0400
133444
+ Processing by TreesController#index as HTML
133445
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133446
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:53
133447
+ Rendering trees/index.html.slim within layouts/application
133448
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (13.3ms)
133449
+ Rendered trees/index.html.slim within layouts/application (18.6ms)
133450
+ Completed 200 OK in 44ms (Views: 40.6ms | ActiveRecord: 0.6ms)
133451
+
133452
+
133453
+ Started GET "/trees" for ::1 at 2019-08-06 14:49:34 +0400
133454
+ Processing by TreesController#index as HTML
133455
+ Tree Load (1.0ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133456
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:53
133457
+ Rendering trees/index.html.slim within layouts/application
133458
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (26.0ms)
133459
+ Rendered trees/index.html.slim within layouts/application (37.8ms)
133460
+ Completed 200 OK in 73ms (Views: 63.8ms | ActiveRecord: 1.5ms)
133461
+
133462
+
133463
+ Started GET "/trees" for ::1 at 2019-08-06 14:49:35 +0400
133464
+ Processing by TreesController#index as HTML
133465
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133466
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:53
133467
+ Rendering trees/index.html.slim within layouts/application
133468
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.1ms)
133469
+ Rendered trees/index.html.slim within layouts/application (11.1ms)
133470
+ Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.2ms)
133471
+
133472
+
133473
+ Started GET "/trees" for ::1 at 2019-08-06 14:50:21 +0400
133474
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133475
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133476
+ Processing by TreesController#index as HTML
133477
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133478
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:52
133479
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 2.3ms)
133480
+
133481
+
133482
+
133483
+ NameError (uninitialized constant Pagy):
133484
+
133485
+ app/controllers/trees_controller.rb:6:in `index'
133486
+ Started GET "/trees" for ::1 at 2019-08-06 14:50:28 +0400
133487
+ Processing by TreesController#index as HTML
133488
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133489
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:52
133490
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.2ms)
133491
+
133492
+
133493
+
133494
+ NameError (uninitialized constant Pagy):
133495
+
133496
+ app/controllers/trees_controller.rb:6:in `index'
133497
+ Started GET "/trees" for ::1 at 2019-08-06 14:50:35 +0400
133498
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133499
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133500
+ Processing by TreesController#index as HTML
133501
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133502
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:53
133503
+ Rendering trees/index.html.slim within layouts/application
133504
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (6.9ms)
133505
+ Rendered trees/index.html.slim within layouts/application (12.4ms)
133506
+ Completed 500 Internal Server Error in 23ms (ActiveRecord: 2.4ms)
133507
+
133508
+
133509
+
133510
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
133511
+ 1: h2.text-center #{data[:model]} Index
133512
+ 2: .row
133513
+ 3: .col-sm-12
133514
+ 4: .table-responsive
133515
+
133516
+ app/views/trees/index.html.slim:3:in `_app_views_trees_index_html_slim___2785226413211479900_47190917294460'
133517
+ Started GET "/trees" for ::1 at 2019-08-06 14:51:50 +0400
133518
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133519
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133520
+ Processing by TreesController#index as HTML
133521
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133522
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
133523
+ Rendering trees/index.html.slim within layouts/application
133524
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (7.1ms)
133525
+ Rendered trees/index.html.slim within layouts/application (13.2ms)
133526
+ Completed 500 Internal Server Error in 24ms (ActiveRecord: 2.4ms)
133527
+
133528
+
133529
+
133530
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
133531
+ 1: h2.text-center #{data[:model]} Index
133532
+ 2: .row
133533
+ 3: .col-sm-12
133534
+ 4: .table-responsive
133535
+
133536
+ app/views/trees/index.html.slim:3:in `_app_views_trees_index_html_slim__3175846381762172052_46990967619620'
133537
+ Started GET "/trees" for ::1 at 2019-08-06 14:52:35 +0400
133538
+ Processing by TreesController#index as HTML
133539
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133540
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
133541
+ Rendering trees/index.html.slim within layouts/application
133542
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (6.0ms)
133543
+ Rendered trees/index.html.slim within layouts/application (8.7ms)
133544
+ Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.3ms)
133545
+
133546
+
133547
+
133548
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
133549
+ 1: h2.text-center #{data[:model]} Index
133550
+ 2: .row
133551
+ 3: .col-sm-12
133552
+ 4: .table-responsive
133553
+
133554
+ app/views/trees/index.html.slim:3:in `_app_views_trees_index_html_slim__3175846381762172052_46990976275500'
133555
+ Started GET "/trees" for ::1 at 2019-08-06 14:52:42 +0400
133556
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133557
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133558
+ Processing by TreesController#index as HTML
133559
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133560
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
133561
+ Rendering trees/index.html.slim within layouts/application
133562
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.9ms)
133563
+ Rendered trees/index.html.slim within layouts/application (14.7ms)
133564
+ Completed 200 OK in 189ms (Views: 179.6ms | ActiveRecord: 2.8ms)
133565
+
133566
+
133567
+ Started GET "/trees" for ::1 at 2019-08-06 14:53:02 +0400
133568
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133569
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133570
+ Processing by TreesController#index as HTML
133571
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133572
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133573
+ Rendering trees/index.html.slim within layouts/application
133574
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.2ms)
133575
+ Rendered trees/index.html.slim within layouts/application (15.1ms)
133576
+ Completed 200 OK in 188ms (Views: 179.6ms | ActiveRecord: 2.5ms)
133577
+
133578
+
133579
+ Started GET "/trees" for ::1 at 2019-08-06 14:53:03 +0400
133580
+ Processing by TreesController#index as HTML
133581
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133582
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133583
+ Rendering trees/index.html.slim within layouts/application
133584
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (5.2ms)
133585
+ Rendered trees/index.html.slim within layouts/application (7.0ms)
133586
+ Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 0.4ms)
133587
+
133588
+
133589
+ Started GET "/trees" for ::1 at 2019-08-06 14:53:25 +0400
133590
+ Processing by TreesController#index as HTML
133591
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133592
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133593
+ Rendering trees/index.html.slim within layouts/application
133594
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.8ms)
133595
+ Rendered trees/index.html.slim within layouts/application (14.6ms)
133596
+ Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.3ms)
133597
+
133598
+
133599
+ Started GET "/trees" for ::1 at 2019-08-06 14:53:30 +0400
133600
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133601
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133602
+ Processing by TreesController#index as HTML
133603
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133604
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133605
+ Rendering trees/index.html.slim within layouts/application
133606
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (16.9ms)
133607
+ Rendered trees/index.html.slim within layouts/application (27.4ms)
133608
+ Completed 200 OK in 333ms (Views: 317.2ms | ActiveRecord: 4.1ms)
133609
+
133610
+
133611
+ Started GET "/trees" for ::1 at 2019-08-06 14:53:40 +0400
133612
+ Processing by TreesController#index as HTML
133613
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133614
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133615
+ Rendering trees/index.html.slim within layouts/application
133616
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (7.8ms)
133617
+ Rendered trees/index.html.slim within layouts/application (17.2ms)
133618
+ Completed 200 OK in 73ms (Views: 69.0ms | ActiveRecord: 0.9ms)
133619
+
133620
+
133621
+ Started GET "/trees" for ::1 at 2019-08-06 14:53:45 +0400
133622
+ Processing by TreesController#index as HTML
133623
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133624
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133625
+ Rendering trees/index.html.slim within layouts/application
133626
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.2ms)
133627
+ Rendered trees/index.html.slim within layouts/application (17.2ms)
133628
+ Completed 200 OK in 85ms (Views: 81.9ms | ActiveRecord: 0.4ms)
133629
+
133630
+
133631
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 11]]
133632
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:13 +0400
133633
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133634
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133635
+ Processing by TreesController#index as HTML
133636
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133637
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133638
+ Rendering trees/index.html.slim within layouts/application
133639
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.6ms)
133640
+ Rendered trees/index.html.slim within layouts/application (15.3ms)
133641
+ Completed 200 OK in 189ms (Views: 180.4ms | ActiveRecord: 2.4ms)
133642
+
133643
+
133644
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:46 +0400
133645
+ Processing by TreesController#index as HTML
133646
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133647
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133648
+ Rendering trees/index.html.slim within layouts/application
133649
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (5.1ms)
133650
+ Rendered trees/index.html.slim within layouts/application (6.8ms)
133651
+ Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.4ms)
133652
+
133653
+
133654
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:49 +0400
133655
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133656
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133657
+ Processing by TreesController#index as HTML
133658
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133659
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133660
+ Tree Load (0.1ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133661
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133662
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 3.0ms)
133663
+
133664
+
133665
+
133666
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133667
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133668
+ NoMethodError (private method `pagy' called for #<TreesController:0x0000559321e0f7e0>):
133669
+
133670
+ app/controllers/trees_controller.rb:6:in `index'
133671
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:50 +0400
133672
+ Processing by TreesController#index as HTML
133673
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133674
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133675
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133676
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133677
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.4ms)
133678
+
133679
+
133680
+
133681
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133682
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133683
+ NoMethodError (private method `pagy' called for #<TreesController:0x0000559322b1dba8>):
133684
+
133685
+ app/controllers/trees_controller.rb:6:in `index'
133686
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:50 +0400
133687
+ Processing by TreesController#index as HTML
133688
+ Tree Load (0.8ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133689
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133690
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133691
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133692
+ Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.8ms)
133693
+
133694
+
133695
+
133696
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133697
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133698
+ NoMethodError (private method `pagy' called for #<TreesController:0x00007f7c783c92a8>):
133699
+
133700
+ app/controllers/trees_controller.rb:6:in `index'
133701
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:51 +0400
133702
+ Processing by TreesController#index as HTML
133703
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133704
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133705
+ Tree Load (0.1ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133706
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133707
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms)
133708
+
133709
+
133710
+
133711
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133712
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133713
+ NoMethodError (private method `pagy' called for #<TreesController:0x0000559321d26bd0>):
133714
+
133715
+ app/controllers/trees_controller.rb:6:in `index'
133716
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:51 +0400
133717
+ Processing by TreesController#index as HTML
133718
+ Tree Load (0.8ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133719
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133720
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133721
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133722
+ Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.8ms)
133723
+
133724
+
133725
+
133726
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133727
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133728
+ NoMethodError (private method `pagy' called for #<TreesController:0x0000559322bed1c8>):
133729
+
133730
+ app/controllers/trees_controller.rb:6:in `index'
133731
+ Started GET "/trees" for ::1 at 2019-08-06 14:56:52 +0400
133732
+ Processing by TreesController#index as HTML
133733
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133734
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133735
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133736
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133737
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.4ms)
133738
+
133739
+
133740
+
133741
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133742
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133743
+ NoMethodError (private method `pagy' called for #<TreesController:0x00007f7c784731e0>):
133744
+
133745
+ app/controllers/trees_controller.rb:6:in `index'
133746
+ Started GET "/trees" for ::1 at 2019-08-06 14:57:06 +0400
133747
+ Processing by TreesController#index as HTML
133748
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133749
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133750
+ Tree Load (0.1ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133751
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133752
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms)
133753
+
133754
+
133755
+
133756
+ CACHE Tree Load (0.0ms) SELECT "trees".* FROM "trees" LIMIT $1 [["LIMIT", 11]]
133757
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133758
+ NoMethodError (private method `pagy' called for #<TreesController:0x0000559321e889b0>):
133759
+
133760
+ app/controllers/trees_controller.rb:6:in `index'
133761
+ Started GET "/trees" for ::1 at 2019-08-06 14:57:10 +0400
133762
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133763
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133764
+ Processing by TreesController#index as HTML
133765
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133766
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133767
+  (0.3ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133768
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:30
133769
+ Rendering trees/index.html.slim within layouts/application
133770
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.9ms)
133771
+ Rendered trees/index.html.slim within layouts/application (16.0ms)
133772
+ Completed 200 OK in 191ms (Views: 181.8ms | ActiveRecord: 2.6ms)
133773
+
133774
+
133775
+  (0.2ms) SELECT COUNT(*) FROM "trees"
133776
+ Started GET "/trees" for ::1 at 2019-08-06 15:03:04 +0400
133777
+ Processing by TreesController#index as HTML
133778
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133779
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133780
+  (0.4ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133781
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:30
133782
+ Rendering trees/index.html.slim within layouts/application
133783
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (7.1ms)
133784
+ Rendered trees/index.html.slim within layouts/application (10.0ms)
133785
+ Completed 200 OK in 44ms (Views: 22.8ms | ActiveRecord: 3.5ms)
133786
+
133787
+
133788
+ Started GET "/trees" for ::1 at 2019-08-06 15:03:30 +0400
133789
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133790
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133791
+ Processing by TreesController#index as HTML
133792
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133793
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133794
+  (0.5ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133795
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:30
133796
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133797
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:34
133798
+ Rendering trees/index.html.slim within layouts/application
133799
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.8ms)
133800
+ Rendered trees/index.html.slim within layouts/application (15.2ms)
133801
+ Completed 200 OK in 185ms (Views: 174.8ms | ActiveRecord: 3.1ms)
133802
+
133803
+
133804
+ Started GET "/trees" for ::1 at 2019-08-06 15:03:31 +0400
133805
+ Processing by TreesController#index as HTML
133806
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133807
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133808
+  (0.5ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133809
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:30
133810
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133811
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:34
133812
+ Rendering trees/index.html.slim within layouts/application
133813
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (7.6ms)
133814
+ Rendered trees/index.html.slim within layouts/application (10.4ms)
133815
+ Completed 200 OK in 38ms (Views: 32.9ms | ActiveRecord: 1.3ms)
133816
+
133817
+
133818
+ Started GET "/trees" for ::1 at 2019-08-06 15:03:32 +0400
133819
+ Processing by TreesController#index as HTML
133820
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133821
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:57
133822
+  (0.3ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133823
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:30
133824
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133825
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:34
133826
+ Rendering trees/index.html.slim within layouts/application
133827
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (7.0ms)
133828
+ Rendered trees/index.html.slim within layouts/application (10.0ms)
133829
+ Completed 200 OK in 27ms (Views: 23.4ms | ActiveRecord: 0.7ms)
133830
+
133831
+
133832
+ Started GET "/trees" for ::1 at 2019-08-06 15:03:47 +0400
133833
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133834
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133835
+ Processing by TreesController#index as HTML
133836
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133837
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
133838
+  (0.4ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133839
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:30
133840
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133841
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:33
133842
+ Rendering trees/index.html.slim within layouts/application
133843
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (11.3ms)
133844
+ Rendered trees/index.html.slim within layouts/application (16.8ms)
133845
+ Completed 200 OK in 198ms (Views: 187.3ms | ActiveRecord: 3.3ms)
133846
+
133847
+
133848
+ Started GET "/trees" for ::1 at 2019-08-06 15:03:48 +0400
133849
+ Processing by TreesController#index as HTML
133850
+ Tree Load (0.7ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133851
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
133852
+  (0.5ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133853
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:30
133854
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133855
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:33
133856
+ Rendering trees/index.html.slim within layouts/application
133857
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (10.2ms)
133858
+ Rendered trees/index.html.slim within layouts/application (13.9ms)
133859
+ Completed 200 OK in 49ms (Views: 42.4ms | ActiveRecord: 1.7ms)
133860
+
133861
+
133862
+ Started GET "/trees" for ::1 at 2019-08-06 15:05:45 +0400
133863
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133864
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133865
+ Processing by TreesController#index as HTML
133866
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133867
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133868
+  (0.4ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133869
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133870
+ Rendering trees/index.html.slim within layouts/application
133871
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.9ms)
133872
+ Rendered trees/index.html.slim within layouts/application (15.3ms)
133873
+ Completed 500 Internal Server Error in 27ms (ActiveRecord: 2.6ms)
133874
+
133875
+
133876
+
133877
+ ActionView::Template::Error (undefined method `prev' for nil:NilClass):
133878
+ 1: h2.text-center #{data[:model]} Index
133879
+ 2:
133880
+ 3: == pagy_nav(@pagy)
133881
+ 4:
133882
+ 5: .row
133883
+ 6: .col-sm-12
133884
+
133885
+ app/views/trees/index.html.slim:3:in `_app_views_trees_index_html_slim__4122209744687710922_47173848393880'
133886
+ Started GET "/trees" for ::1 at 2019-08-06 15:06:02 +0400
133887
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133888
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
133889
+ Processing by TreesController#index as HTML
133890
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133891
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133892
+  (0.3ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133893
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133894
+ Rendering trees/index.html.slim within layouts/application
133895
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133896
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
133897
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (10.8ms)
133898
+ Rendered trees/index.html.slim within layouts/application (16.8ms)
133899
+ Completed 200 OK in 187ms (Views: 177.2ms | ActiveRecord: 3.1ms)
133900
+
133901
+
133902
+ Started GET "/trees" for ::1 at 2019-08-06 15:06:31 +0400
133903
+ Processing by TreesController#index as HTML
133904
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
133905
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133906
+  (0.6ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
133907
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133908
+ Rendering trees/index.html.slim within layouts/application
133909
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.8ms)
133910
+ Tree Load (3.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133911
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
133912
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (23.5ms)
133913
+ Rendered trees/index.html.slim within layouts/application (26.3ms)
133914
+ Completed 200 OK in 74ms (Views: 61.4ms | ActiveRecord: 4.2ms)
133915
+
133916
+
133917
+ Started GET "/trees" for ::1 at 2019-08-06 15:06:43 +0400
133918
+ Processing by TreesController#index as HTML
133919
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
133920
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133921
+  (0.2ms) SELECT COUNT(*) FROM "trees"
133922
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133923
+ Rendering trees/index.html.slim within layouts/application
133924
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (7.6ms)
133925
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
133926
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
133927
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (23.7ms)
133928
+ Rendered trees/index.html.slim within layouts/application (26.3ms)
133929
+ Completed 200 OK in 57ms (Views: 43.9ms | ActiveRecord: 5.1ms)
133930
+
133931
+
133932
+ Started GET "/trees?page=2" for ::1 at 2019-08-06 15:06:45 +0400
133933
+ Processing by TreesController#index as HTML
133934
+ Parameters: {"page"=>"2"}
133935
+ Tree Load (1.1ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
133936
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133937
+  (0.3ms) SELECT COUNT(*) FROM "trees"
133938
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133939
+ Rendering trees/index.html.slim within layouts/application
133940
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (6.1ms)
133941
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 20]]
133942
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
133943
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (21.7ms)
133944
+ Rendered trees/index.html.slim within layouts/application (25.6ms)
133945
+ Completed 200 OK in 46ms (Views: 39.5ms | ActiveRecord: 1.7ms)
133946
+
133947
+
133948
+ Started GET "/trees?page=3" for ::1 at 2019-08-06 15:06:46 +0400
133949
+ Processing by TreesController#index as HTML
133950
+ Parameters: {"page"=>"3"}
133951
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
133952
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133953
+  (0.3ms) SELECT COUNT(*) FROM "trees"
133954
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133955
+ Rendering trees/index.html.slim within layouts/application
133956
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.8ms)
133957
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 40]]
133958
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
133959
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (17.3ms)
133960
+ Rendered trees/index.html.slim within layouts/application (20.6ms)
133961
+ Completed 200 OK in 41ms (Views: 36.7ms | ActiveRecord: 1.3ms)
133962
+
133963
+
133964
+ Started GET "/trees?page=4" for ::1 at 2019-08-06 15:06:47 +0400
133965
+ Processing by TreesController#index as HTML
133966
+ Parameters: {"page"=>"4"}
133967
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
133968
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133969
+  (0.2ms) SELECT COUNT(*) FROM "trees"
133970
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133971
+ Rendering trees/index.html.slim within layouts/application
133972
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.8ms)
133973
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 60]]
133974
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
133975
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.5ms)
133976
+ Rendered trees/index.html.slim within layouts/application (17.1ms)
133977
+ Completed 200 OK in 34ms (Views: 30.0ms | ActiveRecord: 1.2ms)
133978
+
133979
+
133980
+ Started GET "/trees?page=5" for ::1 at 2019-08-06 15:06:47 +0400
133981
+ Processing by TreesController#index as HTML
133982
+ Parameters: {"page"=>"5"}
133983
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
133984
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
133985
+  (0.5ms) SELECT COUNT(*) FROM "trees"
133986
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
133987
+ Rendering trees/index.html.slim within layouts/application
133988
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (6.6ms)
133989
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 80]]
133990
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
133991
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (17.0ms)
133992
+ Rendered trees/index.html.slim within layouts/application (20.5ms)
133993
+ Completed 200 OK in 38ms (Views: 32.6ms | ActiveRecord: 1.4ms)
133994
+
133995
+
133996
+ Started GET "/trees?page=6" for ::1 at 2019-08-06 15:06:48 +0400
133997
+ Processing by TreesController#index as HTML
133998
+ Parameters: {"page"=>"6"}
133999
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134000
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134001
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134002
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134003
+ Rendering trees/index.html.slim within layouts/application
134004
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.9ms)
134005
+ Tree Load (0.7ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 100]]
134006
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134007
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (16.5ms)
134008
+ Rendered trees/index.html.slim within layouts/application (20.0ms)
134009
+ Completed 200 OK in 43ms (Views: 38.3ms | ActiveRecord: 1.4ms)
134010
+
134011
+
134012
+ Started GET "/trees?page=7" for ::1 at 2019-08-06 15:06:48 +0400
134013
+ Processing by TreesController#index as HTML
134014
+ Parameters: {"page"=>"7"}
134015
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134016
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134017
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134018
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134019
+ Rendering trees/index.html.slim within layouts/application
134020
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.7ms)
134021
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 12], ["OFFSET", 120]]
134022
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134023
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (13.0ms)
134024
+ Rendered trees/index.html.slim within layouts/application (16.2ms)
134025
+ Completed 200 OK in 33ms (Views: 29.1ms | ActiveRecord: 0.9ms)
134026
+
134027
+
134028
+ Started GET "/trees?page=6" for ::1 at 2019-08-06 15:06:49 +0400
134029
+ Processing by TreesController#index as HTML
134030
+ Parameters: {"page"=>"6"}
134031
+ Tree Load (0.8ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134032
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134033
+  (0.4ms) SELECT COUNT(*) FROM "trees"
134034
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134035
+ Rendering trees/index.html.slim within layouts/application
134036
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (6.2ms)
134037
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 100]]
134038
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134039
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (19.3ms)
134040
+ Rendered trees/index.html.slim within layouts/application (24.6ms)
134041
+ Completed 200 OK in 46ms (Views: 39.0ms | ActiveRecord: 1.5ms)
134042
+
134043
+
134044
+ Started GET "/trees?page=5" for ::1 at 2019-08-06 15:06:50 +0400
134045
+ Processing by TreesController#index as HTML
134046
+ Parameters: {"page"=>"5"}
134047
+ Tree Load (1.0ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134048
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134049
+  (0.5ms) SELECT COUNT(*) FROM "trees"
134050
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134051
+ Rendering trees/index.html.slim within layouts/application
134052
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.8ms)
134053
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 80]]
134054
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134055
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (17.7ms)
134056
+ Rendered trees/index.html.slim within layouts/application (23.0ms)
134057
+ Completed 200 OK in 44ms (Views: 36.5ms | ActiveRecord: 1.8ms)
134058
+
134059
+
134060
+ Started GET "/trees?page=4" for ::1 at 2019-08-06 15:06:50 +0400
134061
+ Processing by TreesController#index as HTML
134062
+ Parameters: {"page"=>"4"}
134063
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134064
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134065
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134066
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134067
+ Rendering trees/index.html.slim within layouts/application
134068
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.5ms)
134069
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 60]]
134070
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134071
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.9ms)
134072
+ Rendered trees/index.html.slim within layouts/application (17.9ms)
134073
+ Completed 200 OK in 37ms (Views: 32.9ms | ActiveRecord: 0.9ms)
134074
+
134075
+
134076
+ Started GET "/trees?page=3" for ::1 at 2019-08-06 15:06:51 +0400
134077
+ Processing by TreesController#index as HTML
134078
+ Parameters: {"page"=>"3"}
134079
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134080
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134081
+  (0.5ms) SELECT COUNT(*) FROM "trees"
134082
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134083
+ Rendering trees/index.html.slim within layouts/application
134084
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.3ms)
134085
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 40]]
134086
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134087
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.3ms)
134088
+ Rendered trees/index.html.slim within layouts/application (18.2ms)
134089
+ Completed 200 OK in 36ms (Views: 30.6ms | ActiveRecord: 1.3ms)
134090
+
134091
+
134092
+ Started GET "/trees?page=2" for ::1 at 2019-08-06 15:06:51 +0400
134093
+ Processing by TreesController#index as HTML
134094
+ Parameters: {"page"=>"2"}
134095
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134096
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134097
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134098
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134099
+ Rendering trees/index.html.slim within layouts/application
134100
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.0ms)
134101
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 20]]
134102
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134103
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (10.5ms)
134104
+ Rendered trees/index.html.slim within layouts/application (12.8ms)
134105
+ Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 0.7ms)
134106
+
134107
+
134108
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:06:51 +0400
134109
+ Processing by TreesController#index as HTML
134110
+ Parameters: {"page"=>"1"}
134111
+ Tree Load (0.7ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134112
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134113
+  (0.4ms) SELECT COUNT(*) FROM "trees"
134114
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134115
+ Rendering trees/index.html.slim within layouts/application
134116
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.5ms)
134117
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134118
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134119
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (16.1ms)
134120
+ Rendered trees/index.html.slim within layouts/application (21.5ms)
134121
+ Completed 200 OK in 42ms (Views: 35.0ms | ActiveRecord: 1.4ms)
134122
+
134123
+
134124
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:08:04 +0400
134125
+ Processing by TreesController#index as HTML
134126
+ Parameters: {"page"=>"1"}
134127
+ Tree Load (1.0ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134128
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134129
+  (0.5ms) SELECT COUNT(*) FROM "trees"
134130
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134131
+ Rendering trees/index.html.slim within layouts/application
134132
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.6ms)
134133
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134134
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134135
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (15.5ms)
134136
+ Rendered trees/index.html.slim within layouts/application (20.6ms)
134137
+ Completed 200 OK in 44ms (Views: 34.4ms | ActiveRecord: 1.8ms)
134138
+
134139
+
134140
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:08:12 +0400
134141
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134142
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
134143
+ Processing by TreesController#index as HTML
134144
+ Parameters: {"page"=>"1"}
134145
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134146
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:54
134147
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134148
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134149
+ Rendering trees/index.html.slim within layouts/application
134150
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.1ms)
134151
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 30], ["OFFSET", 0]]
134152
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134153
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (11.8ms)
134154
+ Rendered trees/index.html.slim within layouts/application (17.7ms)
134155
+ Completed 200 OK in 192ms (Views: 183.0ms | ActiveRecord: 2.9ms)
134156
+
134157
+
134158
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:11:18 +0400
134159
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134160
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
134161
+ Processing by TreesController#index as HTML
134162
+ Parameters: {"page"=>"1"}
134163
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134164
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134165
+  (0.8ms) SELECT COUNT(*) FROM "trees"
134166
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134167
+ Rendering trees/index.html.slim within layouts/application
134168
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.5ms)
134169
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 60], ["OFFSET", 0]]
134170
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134171
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (19.6ms)
134172
+ Rendered trees/index.html.slim within layouts/application (24.9ms)
134173
+ Completed 200 OK in 214ms (Views: 203.1ms | ActiveRecord: 3.5ms)
134174
+
134175
+
134176
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:11:28 +0400
134177
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134178
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
134179
+ Processing by TreesController#index as HTML
134180
+ Parameters: {"page"=>"1"}
134181
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134182
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134183
+  (0.7ms) SELECT COUNT(*) FROM "trees"
134184
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134185
+ Rendering trees/index.html.slim within layouts/application
134186
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.0ms)
134187
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134188
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134189
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (16.0ms)
134190
+ Rendered trees/index.html.slim within layouts/application (21.3ms)
134191
+ Completed 200 OK in 209ms (Views: 196.9ms | ActiveRecord: 3.3ms)
134192
+
134193
+
134194
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:11:29 +0400
134195
+ Processing by TreesController#index as HTML
134196
+ Parameters: {"page"=>"1"}
134197
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134198
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134199
+  (0.7ms) SELECT COUNT(*) FROM "trees"
134200
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134201
+ Rendering trees/index.html.slim within layouts/application
134202
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (2.7ms)
134203
+ Tree Load (0.1ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134204
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134205
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.0ms)
134206
+ Rendered trees/index.html.slim within layouts/application (10.8ms)
134207
+ Completed 200 OK in 37ms (Views: 23.2ms | ActiveRecord: 1.6ms)
134208
+
134209
+
134210
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:12:14 +0400
134211
+ Processing by TreesController#index as HTML
134212
+ Parameters: {"page"=>"1"}
134213
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134214
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134215
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134216
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134217
+ Rendering trees/index.html.slim within layouts/application
134218
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (19.2ms)
134219
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134220
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134221
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.2ms)
134222
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (46.7ms)
134223
+ Rendered trees/index.html.slim within layouts/application (51.8ms)
134224
+ Completed 200 OK in 86ms (Views: 80.0ms | ActiveRecord: 1.0ms)
134225
+
134226
+
134227
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:15:13 +0400
134228
+ Processing by TreesController#index as HTML
134229
+ Parameters: {"page"=>"1"}
134230
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134231
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134232
+  (0.1ms) SELECT COUNT(*) FROM "trees"
134233
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134234
+ Rendering trees/index.html.slim within layouts/application
134235
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.4ms)
134236
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134237
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134238
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134239
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (12.6ms)
134240
+ Rendered trees/index.html.slim within layouts/application (14.5ms)
134241
+ Completed 200 OK in 27ms (Views: 24.0ms | ActiveRecord: 0.7ms)
134242
+
134243
+
134244
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:15:40 +0400
134245
+ Processing by TreesController#index as HTML
134246
+ Parameters: {"page"=>"1"}
134247
+ Tree Load (0.9ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134248
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134249
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134250
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134251
+ Rendering trees/index.html.slim within layouts/application
134252
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (8.4ms)
134253
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134254
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134255
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.2ms)
134256
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (26.0ms)
134257
+ Rendered trees/index.html.slim within layouts/application (28.7ms)
134258
+ Completed 200 OK in 51ms (Views: 46.6ms | ActiveRecord: 1.5ms)
134259
+
134260
+
134261
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:15:51 +0400
134262
+ Processing by TreesController#index as HTML
134263
+ Parameters: {"page"=>"1"}
134264
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 15]]
134265
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134266
+  (0.2ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 15]]
134267
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134268
+ Rendering trees/index.html.slim within layouts/application
134269
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 15], ["OFFSET", 0]]
134270
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134271
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (5.8ms)
134272
+ Rendered trees/index.html.slim within layouts/application (7.7ms)
134273
+ Completed 200 OK in 27ms (Views: 17.6ms | ActiveRecord: 3.5ms)
134274
+
134275
+
134276
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:15:56 +0400
134277
+ Processing by TreesController#index as HTML
134278
+ Parameters: {"page"=>"1"}
134279
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 21]]
134280
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134281
+  (0.3ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 21]]
134282
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134283
+ Rendering trees/index.html.slim within layouts/application
134284
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (2.2ms)
134285
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134286
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134287
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134288
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.5ms)
134289
+ Rendered trees/index.html.slim within layouts/application (10.1ms)
134290
+ Completed 200 OK in 26ms (Views: 20.1ms | ActiveRecord: 0.8ms)
134291
+
134292
+
134293
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:16:04 +0400
134294
+ Processing by TreesController#index as HTML
134295
+ Parameters: {"page"=>"1"}
134296
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134297
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134298
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134299
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134300
+ Rendering trees/index.html.slim within layouts/application
134301
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.4ms)
134302
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134303
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134304
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134305
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.3ms)
134306
+ Rendered trees/index.html.slim within layouts/application (17.1ms)
134307
+ Completed 200 OK in 39ms (Views: 28.3ms | ActiveRecord: 2.6ms)
134308
+
134309
+
134310
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:17:07 +0400
134311
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134312
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
134313
+ Processing by TreesController#index as HTML
134314
+ Parameters: {"page"=>"1"}
134315
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134316
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134317
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134318
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134319
+ Rendering trees/index.html.slim within layouts/application
134320
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.6ms)
134321
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134322
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134323
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134324
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (15.0ms)
134325
+ Rendered trees/index.html.slim within layouts/application (20.6ms)
134326
+ Completed 200 OK in 193ms (Views: 182.9ms | ActiveRecord: 3.2ms)
134327
+
134328
+
134329
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:17:08 +0400
134330
+ Processing by TreesController#index as HTML
134331
+ Parameters: {"page"=>"1"}
134332
+ Tree Load (1.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134333
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134334
+  (0.5ms) SELECT COUNT(*) FROM "trees"
134335
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134336
+ Rendering trees/index.html.slim within layouts/application
134337
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.7ms)
134338
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134339
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134340
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134341
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.5ms)
134342
+ Rendered trees/index.html.slim within layouts/application (17.3ms)
134343
+ Completed 200 OK in 42ms (Views: 35.1ms | ActiveRecord: 2.0ms)
134344
+
134345
+
134346
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:17:09 +0400
134347
+ Processing by TreesController#index as HTML
134348
+ Parameters: {"page"=>"1"}
134349
+ Tree Load (0.8ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134350
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134351
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134352
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134353
+ Rendering trees/index.html.slim within layouts/application
134354
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (10.8ms)
134355
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134356
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134357
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134358
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (28.4ms)
134359
+ Rendered trees/index.html.slim within layouts/application (34.5ms)
134360
+ Completed 200 OK in 61ms (Views: 54.9ms | ActiveRecord: 1.6ms)
134361
+
134362
+
134363
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:17:09 +0400
134364
+ Processing by TreesController#index as HTML
134365
+ Parameters: {"page"=>"1"}
134366
+ Tree Load (0.7ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134367
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134368
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134369
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134370
+ Rendering trees/index.html.slim within layouts/application
134371
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.3ms)
134372
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134373
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134374
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134375
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (12.2ms)
134376
+ Rendered trees/index.html.slim within layouts/application (14.4ms)
134377
+ Completed 200 OK in 28ms (Views: 23.7ms | ActiveRecord: 1.4ms)
134378
+
134379
+
134380
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:17:09 +0400
134381
+ Processing by TreesController#index as HTML
134382
+ Parameters: {"page"=>"1"}
134383
+ Tree Load (1.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134384
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134385
+  (0.8ms) SELECT COUNT(*) FROM "trees"
134386
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134387
+ Rendering trees/index.html.slim within layouts/application
134388
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (6.0ms)
134389
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134390
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134391
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134392
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (21.1ms)
134393
+ Rendered trees/index.html.slim within layouts/application (26.3ms)
134394
+ Completed 200 OK in 52ms (Views: 40.0ms | ActiveRecord: 2.9ms)
134395
+
134396
+
134397
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:17:10 +0400
134398
+ Processing by TreesController#index as HTML
134399
+ Parameters: {"page"=>"1"}
134400
+ Tree Load (1.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134401
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134402
+  (0.7ms) SELECT COUNT(*) FROM "trees"
134403
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134404
+ Rendering trees/index.html.slim within layouts/application
134405
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.8ms)
134406
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134407
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134408
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.2ms)
134409
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (21.5ms)
134410
+ Rendered trees/index.html.slim within layouts/application (27.0ms)
134411
+ Completed 200 OK in 54ms (Views: 44.6ms | ActiveRecord: 2.7ms)
134412
+
134413
+
134414
+ Started GET "/trees?page=6" for ::1 at 2019-08-06 15:17:11 +0400
134415
+ Processing by TreesController#index as HTML
134416
+ Parameters: {"page"=>"6"}
134417
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134418
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134419
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134420
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134421
+ Rendering trees/index.html.slim within layouts/application
134422
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.8ms)
134423
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 100]]
134424
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134425
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134426
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (20.1ms)
134427
+ Rendered trees/index.html.slim within layouts/application (24.3ms)
134428
+ Completed 200 OK in 43ms (Views: 37.8ms | ActiveRecord: 1.3ms)
134429
+
134430
+
134431
+ Started GET "/trees?page=7" for ::1 at 2019-08-06 15:17:12 +0400
134432
+ Processing by TreesController#index as HTML
134433
+ Parameters: {"page"=>"7"}
134434
+ Tree Load (0.8ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134435
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134436
+  (0.6ms) SELECT COUNT(*) FROM "trees"
134437
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134438
+ Rendering trees/index.html.slim within layouts/application
134439
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.0ms)
134440
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 12], ["OFFSET", 120]]
134441
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134442
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134443
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (15.9ms)
134444
+ Rendered trees/index.html.slim within layouts/application (20.8ms)
134445
+ Completed 200 OK in 42ms (Views: 33.9ms | ActiveRecord: 1.7ms)
134446
+
134447
+
134448
+ Started GET "/trees?page=6" for ::1 at 2019-08-06 15:17:13 +0400
134449
+ Processing by TreesController#index as HTML
134450
+ Parameters: {"page"=>"6"}
134451
+ Tree Load (0.8ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134452
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134453
+  (0.5ms) SELECT COUNT(*) FROM "trees"
134454
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134455
+ Rendering trees/index.html.slim within layouts/application
134456
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (7.4ms)
134457
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 100]]
134458
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134459
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.4ms)
134460
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (22.7ms)
134461
+ Rendered trees/index.html.slim within layouts/application (26.7ms)
134462
+ Completed 200 OK in 49ms (Views: 41.2ms | ActiveRecord: 1.8ms)
134463
+
134464
+
134465
+ Started GET "/trees?page=5" for ::1 at 2019-08-06 15:17:14 +0400
134466
+ Processing by TreesController#index as HTML
134467
+ Parameters: {"page"=>"5"}
134468
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134469
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134470
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134471
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134472
+ Rendering trees/index.html.slim within layouts/application
134473
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.3ms)
134474
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 80]]
134475
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134476
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134477
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (17.6ms)
134478
+ Rendered trees/index.html.slim within layouts/application (19.8ms)
134479
+ Completed 200 OK in 35ms (Views: 31.7ms | ActiveRecord: 0.8ms)
134480
+
134481
+
134482
+ Started GET "/trees?page=4" for ::1 at 2019-08-06 15:17:14 +0400
134483
+ Processing by TreesController#index as HTML
134484
+ Parameters: {"page"=>"4"}
134485
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134486
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134487
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134488
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134489
+ Rendering trees/index.html.slim within layouts/application
134490
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.9ms)
134491
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 60]]
134492
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134493
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134494
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.1ms)
134495
+ Rendered trees/index.html.slim within layouts/application (16.8ms)
134496
+ Completed 200 OK in 32ms (Views: 28.1ms | ActiveRecord: 0.9ms)
134497
+
134498
+
134499
+ Started GET "/trees?page=3" for ::1 at 2019-08-06 15:17:15 +0400
134500
+ Processing by TreesController#index as HTML
134501
+ Parameters: {"page"=>"3"}
134502
+ Tree Load (0.7ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134503
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134504
+  (0.6ms) SELECT COUNT(*) FROM "trees"
134505
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134506
+ Rendering trees/index.html.slim within layouts/application
134507
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.9ms)
134508
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 40]]
134509
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134510
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134511
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (17.5ms)
134512
+ Rendered trees/index.html.slim within layouts/application (22.5ms)
134513
+ Completed 200 OK in 44ms (Views: 36.3ms | ActiveRecord: 1.7ms)
134514
+
134515
+
134516
+ Started GET "/trees?page=2" for ::1 at 2019-08-06 15:17:15 +0400
134517
+ Processing by TreesController#index as HTML
134518
+ Parameters: {"page"=>"2"}
134519
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134520
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134521
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134522
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134523
+ Rendering trees/index.html.slim within layouts/application
134524
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.8ms)
134525
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 20]]
134526
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134527
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.2ms)
134528
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (18.1ms)
134529
+ Rendered trees/index.html.slim within layouts/application (22.4ms)
134530
+ Completed 200 OK in 40ms (Views: 34.9ms | ActiveRecord: 1.1ms)
134531
+
134532
+
134533
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:17:15 +0400
134534
+ Processing by TreesController#index as HTML
134535
+ Parameters: {"page"=>"1"}
134536
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134537
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134538
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134539
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134540
+ Rendering trees/index.html.slim within layouts/application
134541
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (4.8ms)
134542
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134543
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134544
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134545
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (21.3ms)
134546
+ Rendered trees/index.html.slim within layouts/application (24.6ms)
134547
+ Completed 200 OK in 40ms (Views: 36.0ms | ActiveRecord: 0.8ms)
134548
+
134549
+
134550
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:18:20 +0400
134551
+ Processing by TreesController#index as HTML
134552
+ Parameters: {"page"=>"1"}
134553
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134554
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134555
+  (0.4ms) SELECT COUNT(*) FROM "trees"
134556
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134557
+ Rendering trees/index.html.slim within layouts/application
134558
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.3ms)
134559
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134560
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134561
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134562
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (12.0ms)
134563
+ Rendered trees/index.html.slim within layouts/application (14.8ms)
134564
+ Completed 200 OK in 42ms (Views: 25.9ms | ActiveRecord: 5.5ms)
134565
+
134566
+
134567
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:18:25 +0400
134568
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134569
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
134570
+ Processing by TreesController#index as HTML
134571
+ Parameters: {"page"=>"1"}
134572
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134573
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134574
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134575
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134576
+ Rendering trees/index.html.slim within layouts/application
134577
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.0ms)
134578
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134579
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134580
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134581
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (16.2ms)
134582
+ Rendered trees/index.html.slim within layouts/application (22.0ms)
134583
+ Completed 200 OK in 199ms (Views: 189.4ms | ActiveRecord: 2.9ms)
134584
+
134585
+
134586
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:18:26 +0400
134587
+ Processing by TreesController#index as HTML
134588
+ Parameters: {"page"=>"1"}
134589
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134590
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134591
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134592
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134593
+ Rendering trees/index.html.slim within layouts/application
134594
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.0ms)
134595
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134596
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:18
134597
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134598
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (10.2ms)
134599
+ Rendered trees/index.html.slim within layouts/application (12.3ms)
134600
+ Completed 200 OK in 28ms (Views: 23.9ms | ActiveRecord: 0.9ms)
134601
+
134602
+
134603
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:18:40 +0400
134604
+ Processing by TreesController#index as HTML
134605
+ Parameters: {"page"=>"1"}
134606
+ Tree Load (0.8ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134607
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134608
+  (0.4ms) SELECT COUNT(*) FROM "trees"
134609
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134610
+ Rendering trees/index.html.slim within layouts/application
134611
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (27.1ms)
134612
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134613
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134614
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (1.2ms)
134615
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (56.3ms)
134616
+ Rendered trees/index.html.slim within layouts/application (61.2ms)
134617
+ Completed 200 OK in 107ms (Views: 91.4ms | ActiveRecord: 2.1ms)
134618
+
134619
+
134620
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:18:46 +0400
134621
+ Processing by TreesController#index as HTML
134622
+ Parameters: {"page"=>"1"}
134623
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 19]]
134624
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134625
+  (0.5ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 19]]
134626
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134627
+ Rendering trees/index.html.slim within layouts/application
134628
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 19], ["OFFSET", 0]]
134629
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134630
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.7ms)
134631
+ Rendered trees/index.html.slim within layouts/application (11.6ms)
134632
+ Completed 200 OK in 33ms (Views: 22.6ms | ActiveRecord: 3.5ms)
134633
+
134634
+
134635
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:18:49 +0400
134636
+ Processing by TreesController#index as HTML
134637
+ Parameters: {"page"=>"1"}
134638
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 20]]
134639
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134640
+  (0.3ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 20]]
134641
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134642
+ Rendering trees/index.html.slim within layouts/application
134643
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134644
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134645
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (5.7ms)
134646
+ Rendered trees/index.html.slim within layouts/application (7.5ms)
134647
+ Completed 200 OK in 25ms (Views: 16.9ms | ActiveRecord: 0.9ms)
134648
+
134649
+
134650
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:18:54 +0400
134651
+ Processing by TreesController#index as HTML
134652
+ Parameters: {"page"=>"1"}
134653
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 [["LIMIT", 21]]
134654
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134655
+  (0.2ms) SELECT COUNT(*) FROM (SELECT 1 AS one FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1) subquery_for_count [["LIMIT", 21]]
134656
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134657
+ Rendering trees/index.html.slim within layouts/application
134658
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.0ms)
134659
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134660
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134661
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134662
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (11.1ms)
134663
+ Rendered trees/index.html.slim within layouts/application (12.8ms)
134664
+ Completed 200 OK in 29ms (Views: 22.8ms | ActiveRecord: 0.6ms)
134665
+
134666
+
134667
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:19:02 +0400
134668
+ Processing by TreesController#index as HTML
134669
+ Parameters: {"page"=>"1"}
134670
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134671
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134672
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134673
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134674
+ Rendering trees/index.html.slim within layouts/application
134675
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (2.4ms)
134676
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134677
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134678
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134679
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.9ms)
134680
+ Rendered trees/index.html.slim within layouts/application (10.5ms)
134681
+ Completed 200 OK in 28ms (Views: 20.9ms | ActiveRecord: 1.0ms)
134682
+
134683
+
134684
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:19:06 +0400
134685
+ Processing by TreesController#index as HTML
134686
+ Parameters: {"page"=>"1"}
134687
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
134688
+
134689
+
134690
+
134691
+ NoMethodError (undefined method `raise_args_error' for Lasha:Module
134692
+ Did you mean? raise_arg_error):
134693
+
134694
+ app/controllers/trees_controller.rb:6:in `index'
134695
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:19:33 +0400
134696
+ Processing by TreesController#index as HTML
134697
+ Parameters: {"page"=>"1"}
134698
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134699
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134700
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134701
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134702
+ Rendering trees/index.html.slim within layouts/application
134703
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (2.6ms)
134704
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134705
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134706
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134707
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (14.8ms)
134708
+ Rendered trees/index.html.slim within layouts/application (17.0ms)
134709
+ Completed 200 OK in 36ms (Views: 27.1ms | ActiveRecord: 2.5ms)
134710
+
134711
+
134712
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:19:41 +0400
134713
+ Processing by TreesController#index as HTML
134714
+ Parameters: {"page"=>"1"}
134715
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
134716
+
134717
+
134718
+
134719
+ NoMethodError (undefined method `raise_args_error' for Lasha:Module
134720
+ Did you mean? raise_arg_error):
134721
+
134722
+ app/controllers/trees_controller.rb:6:in `index'
134723
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:19:46 +0400
134724
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134725
+ ↳ /home/lasha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98
134726
+ Processing by TreesController#index as HTML
134727
+ Parameters: {"page"=>"1"}
134728
+ Rendering trees/index.html.slim within layouts/application
134729
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (4.2ms)
134730
+ Rendered trees/index.html.slim within layouts/application (9.2ms)
134731
+ Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
134732
+
134733
+
134734
+
134735
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
134736
+ 1: h2.text-center #{data[:model]} Index
134737
+ 2:
134738
+ 3: = pagy_helper(data[:pagy])
134739
+ 4:
134740
+
134741
+ app/views/trees/index.html.slim:3:in `_app_views_trees_index_html_slim__4308557921594487888_47229925341240'
134742
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:19:58 +0400
134743
+ Processing by TreesController#index as HTML
134744
+ Parameters: {"page"=>"1"}
134745
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134746
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134747
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134748
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134749
+ Rendering trees/index.html.slim within layouts/application
134750
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (2.6ms)
134751
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134752
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134753
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134754
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (11.0ms)
134755
+ Rendered trees/index.html.slim within layouts/application (12.8ms)
134756
+ Completed 200 OK in 178ms (Views: 167.8ms | ActiveRecord: 3.3ms)
134757
+
134758
+
134759
+ Started GET "/trees/new" for ::1 at 2019-08-06 15:20:02 +0400
134760
+ Processing by TreesController#new as HTML
134761
+ Rendering trees/new.html.slim within layouts/application
134762
+ Rendered trees/_form.html.slim (22.0ms)
134763
+ Rendered trees/new.html.slim within layouts/application (24.2ms)
134764
+ Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.0ms)
134765
+
134766
+
134767
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:20:06 +0400
134768
+ Processing by TreesController#index as HTML
134769
+ Parameters: {"page"=>"1"}
134770
+ Tree Load (0.6ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134771
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134772
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134773
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134774
+ Rendering trees/index.html.slim within layouts/application
134775
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (7.9ms)
134776
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134777
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134778
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134779
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (21.0ms)
134780
+ Rendered trees/index.html.slim within layouts/application (30.2ms)
134781
+ Completed 200 OK in 59ms (Views: 53.1ms | ActiveRecord: 1.0ms)
134782
+
134783
+
134784
+ Started GET "/trees?page=5" for ::1 at 2019-08-06 15:20:31 +0400
134785
+ Processing by TreesController#index as HTML
134786
+ Parameters: {"page"=>"5"}
134787
+ Tree Load (1.1ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134788
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134789
+  (0.8ms) SELECT COUNT(*) FROM "trees"
134790
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134791
+ Rendering trees/index.html.slim within layouts/application
134792
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.4ms)
134793
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 80]]
134794
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134795
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134796
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (20.2ms)
134797
+ Rendered trees/index.html.slim within layouts/application (24.9ms)
134798
+ Completed 200 OK in 53ms (Views: 40.2ms | ActiveRecord: 2.3ms)
134799
+
134800
+
134801
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:20:32 +0400
134802
+ Processing by TreesController#index as HTML
134803
+ Parameters: {"page"=>"1"}
134804
+ Tree Load (1.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134805
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134806
+  (0.5ms) SELECT COUNT(*) FROM "trees"
134807
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134808
+ Rendering trees/index.html.slim within layouts/application
134809
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.5ms)
134810
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134811
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134812
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.2ms)
134813
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (19.3ms)
134814
+ Rendered trees/index.html.slim within layouts/application (23.3ms)
134815
+ Completed 200 OK in 45ms (Views: 36.3ms | ActiveRecord: 2.1ms)
134816
+
134817
+
134818
+ Started GET "/trees?page=7" for ::1 at 2019-08-06 15:20:33 +0400
134819
+ Processing by TreesController#index as HTML
134820
+ Parameters: {"page"=>"7"}
134821
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134822
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134823
+  (0.1ms) SELECT COUNT(*) FROM "trees"
134824
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134825
+ Rendering trees/index.html.slim within layouts/application
134826
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (2.6ms)
134827
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 12], ["OFFSET", 120]]
134828
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134829
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134830
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (8.8ms)
134831
+ Rendered trees/index.html.slim within layouts/application (10.4ms)
134832
+ Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.8ms)
134833
+
134834
+
134835
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:20:36 +0400
134836
+ Processing by TreesController#index as HTML
134837
+ Parameters: {"page"=>"1"}
134838
+ Tree Load (1.1ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134839
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134840
+  (0.7ms) SELECT COUNT(*) FROM "trees"
134841
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134842
+ Rendering trees/index.html.slim within layouts/application
134843
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (5.3ms)
134844
+ Tree Load (0.4ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134845
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134846
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134847
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (19.2ms)
134848
+ Rendered trees/index.html.slim within layouts/application (25.5ms)
134849
+ Completed 200 OK in 56ms (Views: 44.1ms | ActiveRecord: 2.2ms)
134850
+
134851
+
134852
+ Started GET "/trees?page=4" for ::1 at 2019-08-06 15:20:37 +0400
134853
+ Processing by TreesController#index as HTML
134854
+ Parameters: {"page"=>"4"}
134855
+ Tree Load (0.3ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134856
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134857
+  (0.2ms) SELECT COUNT(*) FROM "trees"
134858
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134859
+ Rendering trees/index.html.slim within layouts/application
134860
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (2.6ms)
134861
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 60]]
134862
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134863
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134864
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (9.3ms)
134865
+ Rendered trees/index.html.slim within layouts/application (11.1ms)
134866
+ Completed 200 OK in 24ms (Views: 20.2ms | ActiveRecord: 0.7ms)
134867
+
134868
+
134869
+ Started GET "/trees?page=1" for ::1 at 2019-08-06 15:20:38 +0400
134870
+ Processing by TreesController#index as HTML
134871
+ Parameters: {"page"=>"1"}
134872
+ Tree Load (0.5ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC
134873
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:56
134874
+  (0.3ms) SELECT COUNT(*) FROM "trees"
134875
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/lib/lasha.rb:31
134876
+ Rendering trees/index.html.slim within layouts/application
134877
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (3.5ms)
134878
+ Tree Load (0.2ms) SELECT "trees".* FROM "trees" ORDER BY "trees"."created_at" DESC LIMIT $1 OFFSET $2 [["LIMIT", 20], ["OFFSET", 0]]
134879
+ ↳ /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim:17
134880
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_bootstrap_nav.html.slim (0.1ms)
134881
+ Rendered /home/lasha/www/chest/ruby/gems/lasha/app/views/lasha/_index_generator.html.slim (13.0ms)
134882
+ Rendered trees/index.html.slim within layouts/application (16.1ms)
134883
+ Completed 200 OK in 32ms (Views: 27.3ms | ActiveRecord: 1.0ms)
134884
+
134885
+