Skip to content

Commit bddd849

Browse files
committed
valeev dz 3 completed
1 parent ee76098 commit bddd849

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+84161
-160
lines changed

.DS_Store

8 KB
Binary file not shown.

.byebug_history

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
exit
2+
Dir[File.join('.', 'app', '*', '*.rb')].each { |file| require file }
3+
City.last
4+
ReloadJson.new.call('fixtures/medium.json')
5+
Rake.application.run
6+
require 'rake'
7+
ReloadJson.new.call('fixtures/medium.json')
8+
require_relative 'config/boot'
9+
require_relative '../config/boot'
10+
q
11+
ReloadJson.new.call('fixtures/medium.json')
12+
require_relative 'config/application'
13+
Dir[File.join('.', 'app', '*', '*.rb')].each { |file| require file }
14+
q
15+
ReloadJson.new.call('fixtures/medium.json')
16+
RubyProf.measure_mode = RubyProf::WALL_TIME
17+
q
18+
ReloadJson.new.call('fixtures/medium.json')
19+
RubyProf.measure_mode = RubyProf::WALL_TIME
20+
q
21+
Service.import(@services, validate: true)
22+
City.import(@cities, validate: true, on_duplicate_key_ignore: true, recursive: true)
23+
City.import(@cities, validate: true, recursive: true)
24+
bus.trips
25+
Bus.import(@buses, validate: true, recursive: true)
26+
bus.trips
27+
bus = @buses.first
28+
bus = @buses.trips
29+
city.from_trips
30+
city.to_trips
31+
city.trips_to
32+
city = City.last
33+
city = Coty.last
34+
Trip.all
35+
service.buses
36+
service.bus
37+
service = @services.last
38+
1+1
39+
@buses
40+
@cities
41+
city = @cities.first
42+
@cities.reload
43+
City.import(@cities, validate: true, on_duplicate_key_update: {conflict_target: [:name], columns: [:name]}, recursive: true)
44+
c
45+
Trip.last
46+
Service.import(@services, validate: true, on_duplicate_key_update: {conflict_target: [:name], columns: [:name]})
47+
Bus.import(@buses, validate: true, on_duplicate_key_update: {conflict_target: [:number], columns: [:model]}, recursive: true)
48+
City.import(@cities, validate: true, on_duplicate_key_update: {conflict_target: [:name], columns: [:name]}, recursive: true)
49+
n
50+
json = JSON.parse(File.read(file_name))
51+
file_name = 'fixtures/medium.json'
52+
file_name
53+
json

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/tmp
33
/log
44
/public
5+
/config/newrelic.yml

.rubocop.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Style/Documentation:
2+
Enabled: false

Gemfile

+11
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ gem 'bootsnap', '>= 1.1.0', require: false
1010
gem 'newrelic_rpm'
1111
gem 'pghero'
1212
gem 'badger-rails'
13+
gem 'rack-mini-profiler', require: false
14+
gem 'memory_profiler'
15+
gem 'flamegraph'
16+
gem 'stackprof'
17+
gem 'strong_migrations'
18+
gem 'activerecord-import'
1319

1420
group :development, :test do
1521
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
@@ -20,9 +26,14 @@ group :development do
2026
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
2127
gem 'web-console', '>= 3.3.0'
2228
gem 'listen', '>= 3.0.5', '< 3.2'
29+
gem 'meta_request'
30+
gem 'bullet'
31+
gem 'ruby-prof'
2332
end
2433

2534
group :test do
35+
gem 'rspec'
36+
gem 'database_cleaner-active_record'
2637
end
2738

2839
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem

Gemfile.lock

+113-65
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,45 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actioncable (5.2.3)
5-
actionpack (= 5.2.3)
4+
actioncable (5.2.4.1)
5+
actionpack (= 5.2.4.1)
66
nio4r (~> 2.0)
77
websocket-driver (>= 0.6.1)
8-
actionmailer (5.2.3)
9-
actionpack (= 5.2.3)
10-
actionview (= 5.2.3)
11-
activejob (= 5.2.3)
8+
actionmailer (5.2.4.1)
9+
actionpack (= 5.2.4.1)
10+
actionview (= 5.2.4.1)
11+
activejob (= 5.2.4.1)
1212
mail (~> 2.5, >= 2.5.4)
1313
rails-dom-testing (~> 2.0)
14-
actionpack (5.2.3)
15-
actionview (= 5.2.3)
16-
activesupport (= 5.2.3)
17-
rack (~> 2.0)
14+
actionpack (5.2.4.1)
15+
actionview (= 5.2.4.1)
16+
activesupport (= 5.2.4.1)
17+
rack (~> 2.0, >= 2.0.8)
1818
rack-test (>= 0.6.3)
1919
rails-dom-testing (~> 2.0)
2020
rails-html-sanitizer (~> 1.0, >= 1.0.2)
21-
actionview (5.2.3)
22-
activesupport (= 5.2.3)
21+
actionview (5.2.4.1)
22+
activesupport (= 5.2.4.1)
2323
builder (~> 3.1)
2424
erubi (~> 1.4)
2525
rails-dom-testing (~> 2.0)
2626
rails-html-sanitizer (~> 1.0, >= 1.0.3)
27-
activejob (5.2.3)
28-
activesupport (= 5.2.3)
27+
activejob (5.2.4.1)
28+
activesupport (= 5.2.4.1)
2929
globalid (>= 0.3.6)
30-
activemodel (5.2.3)
31-
activesupport (= 5.2.3)
32-
activerecord (5.2.3)
33-
activemodel (= 5.2.3)
34-
activesupport (= 5.2.3)
30+
activemodel (5.2.4.1)
31+
activesupport (= 5.2.4.1)
32+
activerecord (5.2.4.1)
33+
activemodel (= 5.2.4.1)
34+
activesupport (= 5.2.4.1)
3535
arel (>= 9.0)
36-
activestorage (5.2.3)
37-
actionpack (= 5.2.3)
38-
activerecord (= 5.2.3)
36+
activerecord-import (1.0.4)
37+
activerecord (>= 3.2)
38+
activestorage (5.2.4.1)
39+
actionpack (= 5.2.4.1)
40+
activerecord (= 5.2.4.1)
3941
marcel (~> 0.3.1)
40-
activesupport (5.2.3)
42+
activesupport (5.2.4.1)
4143
concurrent-ruby (~> 1.0, >= 1.0.2)
4244
i18n (>= 0.7, < 2)
4345
minitest (~> 5.1)
@@ -47,85 +49,116 @@ GEM
4749
arel (9.0.0)
4850
badger-rails (1.0.4)
4951
capistrano
50-
bindex (0.6.0)
51-
bootsnap (1.4.2)
52+
bindex (0.8.1)
53+
bootsnap (1.4.5)
5254
msgpack (~> 1.0)
53-
builder (3.2.3)
54-
byebug (11.0.1)
55+
builder (3.2.4)
56+
bullet (6.1.0)
57+
activesupport (>= 3.0.0)
58+
uniform_notifier (~> 1.11)
59+
byebug (11.1.1)
5560
capistrano (3.12.0)
5661
airbrussh (>= 1.0.0)
5762
i18n
5863
rake (>= 10.0.0)
5964
sshkit (>= 1.9.0)
60-
concurrent-ruby (1.1.5)
61-
crass (1.0.4)
62-
erubi (1.8.0)
63-
ffi (1.10.0)
65+
concurrent-ruby (1.1.6)
66+
crass (1.0.6)
67+
database_cleaner (1.8.3)
68+
database_cleaner-active_record (1.8.0)
69+
activerecord
70+
database_cleaner (~> 1.8.0)
71+
diff-lcs (1.3)
72+
erubi (1.9.0)
73+
ffi (1.12.2)
74+
flamegraph (0.9.5)
6475
globalid (0.4.2)
6576
activesupport (>= 4.2.0)
66-
i18n (1.6.0)
77+
i18n (1.8.2)
6778
concurrent-ruby (~> 1.0)
6879
listen (3.1.5)
6980
rb-fsevent (~> 0.9, >= 0.9.4)
7081
rb-inotify (~> 0.9, >= 0.9.7)
7182
ruby_dep (~> 1.2)
72-
loofah (2.2.3)
83+
loofah (2.4.0)
7384
crass (~> 1.0.2)
7485
nokogiri (>= 1.5.9)
7586
mail (2.7.1)
7687
mini_mime (>= 0.1.1)
7788
marcel (0.3.3)
7889
mimemagic (~> 0.3.2)
90+
memory_profiler (0.9.14)
91+
meta_request (0.7.2)
92+
rack-contrib (>= 1.1, < 3)
93+
railties (>= 3.0.0, < 7)
7994
method_source (0.9.2)
80-
mimemagic (0.3.3)
81-
mini_mime (1.0.1)
95+
mimemagic (0.3.4)
96+
mini_mime (1.0.2)
8297
mini_portile2 (2.4.0)
83-
minitest (5.11.3)
84-
msgpack (1.2.9)
98+
minitest (5.14.0)
99+
msgpack (1.3.3)
85100
net-scp (2.0.0)
86101
net-ssh (>= 2.6.5, < 6.0.0)
87102
net-ssh (5.2.0)
88103
newrelic_rpm (6.8.0.360)
89-
nio4r (2.3.1)
90-
nokogiri (1.10.2)
104+
nio4r (2.5.2)
105+
nokogiri (1.10.8)
91106
mini_portile2 (~> 2.4.0)
92-
pg (1.1.4)
107+
pg (1.2.2)
93108
pghero (2.4.1)
94109
activerecord (>= 5)
95-
puma (3.12.1)
96-
rack (2.0.6)
110+
puma (3.12.2)
111+
rack (2.2.2)
112+
rack-contrib (2.1.0)
113+
rack (~> 2.0)
114+
rack-mini-profiler (1.1.6)
115+
rack (>= 1.2.0)
97116
rack-test (1.1.0)
98117
rack (>= 1.0, < 3)
99-
rails (5.2.3)
100-
actioncable (= 5.2.3)
101-
actionmailer (= 5.2.3)
102-
actionpack (= 5.2.3)
103-
actionview (= 5.2.3)
104-
activejob (= 5.2.3)
105-
activemodel (= 5.2.3)
106-
activerecord (= 5.2.3)
107-
activestorage (= 5.2.3)
108-
activesupport (= 5.2.3)
118+
rails (5.2.4.1)
119+
actioncable (= 5.2.4.1)
120+
actionmailer (= 5.2.4.1)
121+
actionpack (= 5.2.4.1)
122+
actionview (= 5.2.4.1)
123+
activejob (= 5.2.4.1)
124+
activemodel (= 5.2.4.1)
125+
activerecord (= 5.2.4.1)
126+
activestorage (= 5.2.4.1)
127+
activesupport (= 5.2.4.1)
109128
bundler (>= 1.3.0)
110-
railties (= 5.2.3)
129+
railties (= 5.2.4.1)
111130
sprockets-rails (>= 2.0.0)
112131
rails-dom-testing (2.0.3)
113132
activesupport (>= 4.2.0)
114133
nokogiri (>= 1.6)
115-
rails-html-sanitizer (1.0.4)
116-
loofah (~> 2.2, >= 2.2.2)
117-
railties (5.2.3)
118-
actionpack (= 5.2.3)
119-
activesupport (= 5.2.3)
134+
rails-html-sanitizer (1.3.0)
135+
loofah (~> 2.3)
136+
railties (5.2.4.1)
137+
actionpack (= 5.2.4.1)
138+
activesupport (= 5.2.4.1)
120139
method_source
121140
rake (>= 0.8.7)
122141
thor (>= 0.19.0, < 2.0)
123-
rake (12.3.2)
142+
rake (13.0.1)
124143
rb-fsevent (0.10.3)
125-
rb-inotify (0.10.0)
144+
rb-inotify (0.10.1)
126145
ffi (~> 1.0)
146+
rspec (3.9.0)
147+
rspec-core (~> 3.9.0)
148+
rspec-expectations (~> 3.9.0)
149+
rspec-mocks (~> 3.9.0)
150+
rspec-core (3.9.1)
151+
rspec-support (~> 3.9.1)
152+
rspec-expectations (3.9.0)
153+
diff-lcs (>= 1.2.0, < 2.0)
154+
rspec-support (~> 3.9.0)
155+
rspec-mocks (3.9.1)
156+
diff-lcs (>= 1.2.0, < 2.0)
157+
rspec-support (~> 3.9.0)
158+
rspec-support (3.9.2)
159+
ruby-prof (1.2.0)
127160
ruby_dep (1.5.0)
128-
sprockets (3.7.2)
161+
sprockets (4.0.0)
129162
concurrent-ruby (~> 1.0)
130163
rack (> 1, < 3)
131164
sprockets-rails (3.2.1)
@@ -135,32 +168,47 @@ GEM
135168
sshkit (1.20.0)
136169
net-scp (>= 1.1.2)
137170
net-ssh (>= 2.8.0)
138-
thor (0.20.3)
171+
stackprof (0.2.15)
172+
strong_migrations (0.6.2)
173+
activerecord (>= 5)
174+
thor (1.0.1)
139175
thread_safe (0.3.6)
140-
tzinfo (1.2.5)
176+
tzinfo (1.2.6)
141177
thread_safe (~> 0.1)
178+
uniform_notifier (1.13.0)
142179
web-console (3.7.0)
143180
actionview (>= 5.0)
144181
activemodel (>= 5.0)
145182
bindex (>= 0.4.0)
146183
railties (>= 5.0)
147-
websocket-driver (0.7.0)
184+
websocket-driver (0.7.1)
148185
websocket-extensions (>= 0.1.0)
149-
websocket-extensions (0.1.3)
186+
websocket-extensions (0.1.4)
150187

151188
PLATFORMS
152189
ruby
153190

154191
DEPENDENCIES
192+
activerecord-import
155193
badger-rails
156194
bootsnap (>= 1.1.0)
195+
bullet
157196
byebug
197+
database_cleaner-active_record
198+
flamegraph
158199
listen (>= 3.0.5, < 3.2)
200+
memory_profiler
201+
meta_request
159202
newrelic_rpm
160203
pg (>= 0.18, < 2.0)
161204
pghero
162205
puma (~> 3.11)
206+
rack-mini-profiler
163207
rails (~> 5.2.3)
208+
rspec
209+
ruby-prof
210+
stackprof
211+
strong_migrations
164212
tzinfo-data
165213
web-console (>= 3.3.0)
166214

app/controllers/trips_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ class TripsController < ApplicationController
22
def index
33
@from = City.find_by_name!(params[:from])
44
@to = City.find_by_name!(params[:to])
5-
@trips = Trip.where(from: @from, to: @to).order(:start_time)
5+
@trips = Trip.includes(bus: [:services]).where(from: @from, to: @to).order(:start_time)
66
end
77
end

app/models/application_record.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
class ApplicationRecord < ActiveRecord::Base
24
self.abstract_class = true
35
end

app/models/bus.rb

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ class Bus < ApplicationRecord
1414

1515
has_many :trips
1616
has_and_belongs_to_many :services, join_table: :buses_services
17+
# has_many :buses_services
18+
# has_many :services, through: :buses_services
1719

1820
validates :number, presence: true, uniqueness: true
1921
validates :model, inclusion: { in: MODELS }

app/models/buses_services.rb

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# frozen_string_literal: true
2+
3+
class BusesServices < ApplicationRecord
4+
belongs_to :bus
5+
belongs_to :service
6+
end

0 commit comments

Comments
 (0)