yar 1.0.0 → 1.0.1

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: 2bccc44a614eb9a950752e62a467766e2c133ea6f1f28e69f38f1145b2fa8bc7
4
- data.tar.gz: 2b226cc2d442e9aa6c70c13c63d7a6af0005d9e1ff624f026e9a60e29e5f80a6
3
+ metadata.gz: ac226a0af6b4c8761daa6f7814417fcf12ff2548604e49ba53d398a9791c62f1
4
+ data.tar.gz: 7d3b2293ab13f4abcb10f466083b18265f6cecefad12b8cf77dfa17900827538
5
5
  SHA512:
6
- metadata.gz: f9af341e0634d5fce627367b5a2ef6b009af7ab52e86daa81ffd474abe7eaefedcdf25da1afc27320dd87ebb55472b12cc4511466e1dda90f3594783eec3bfe9
7
- data.tar.gz: 5344ebe87f967c3730e0651d88293df63d8b7ed210c45e4fb0809cca74733572cb9eeeb3eb078b5b610a9e8ff55b460183a69e7aa99e2d40db214f691db3360e
6
+ metadata.gz: 5c47e561f76733d7304f6bc0d37e612abf69f185e1e78923afed4bfd3e9f69b0afc7945175468aa3fe7140b5864cd316fa3f6f1af756ceef88d408b60ff27edb
7
+ data.tar.gz: 49ae082c99afe2e21e1075124d3018b8b1575a9bf0d279c260e577e540e4e825555ef9c3e56414e258e09def824fb1779120cd9f8ee21fe6e3bbb3e343e8aaaf
@@ -0,0 +1,12 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: /
5
+ schedule:
6
+ interval: daily
7
+ open-pull-requests-limit: 20
8
+ - package-ecosystem: "github-actions"
9
+ directory: "/"
10
+ schedule:
11
+ interval: "weekly"
12
+ open-pull-requests-limit: 20
@@ -0,0 +1,50 @@
1
+ name: Ruby specs
2
+ on: [push, pull_request]
3
+ jobs:
4
+ test:
5
+ name: tests
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ os: [ubuntu-latest, macos-latest]
10
+ ruby: ['2.6', '2.7', '3.0', '3.1', head, truffleruby, truffleruby-head]
11
+ runs-on: ${{ matrix.os }}
12
+ continue-on-error: true
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: ${{ matrix.ruby }}
18
+
19
+ - name: Get the newest rubygems version to rid ourselves of warnings
20
+ run: gem update --system --no-document
21
+
22
+ - name: Install bundler
23
+ run: gem i bundler --no-document
24
+
25
+ - name: Install dependencies
26
+ run: |
27
+ bundle config set --local without benchmark
28
+ bundle install --jobs=3
29
+ - name: RSpec testing
30
+ run: |
31
+ JRUBY_OPTS="--dev --debug" bundle exec rspec
32
+ - name: Coveralls Parallel
33
+ uses: coverallsapp/github-action@1.1.3
34
+ with:
35
+ github-token: ${{ secrets.github_token }}
36
+ flag-name: run-${{ matrix.ruby-version }}
37
+ path-to-lcov: ./coverage/lcov/yar.lcov
38
+ parallel: true
39
+
40
+ coverage:
41
+ name: Coverage
42
+ needs: test
43
+ runs-on: ubuntu-latest
44
+ steps:
45
+ - name: Coveralls Finished
46
+ uses: coverallsapp/github-action@1.1.3
47
+ with:
48
+ github-token: ${{ secrets.github_token }}
49
+ path-to-lcov: ${{ github.workspace }}/coverage/lcov.info
50
+ parallel-finished: true
data/.rspec CHANGED
@@ -1,5 +1,6 @@
1
1
  --tty
2
2
  --color
3
+ --order rand
3
4
  --format documentation # progress
4
5
  --backtrace
5
6
  --require spec_helper
data/Gemfile.lock CHANGED
@@ -1,8 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yar (1.0.0)
5
- addressable (~> 2.3, >= 2.3.7)
4
+ yar (1.0.1)
6
5
  faraday (~> 1.7)
7
6
 
8
7
  GEM
@@ -29,9 +28,6 @@ GEM
29
28
  faraday-em_http (1.0.0)
30
29
  faraday-em_synchrony (1.0.0)
31
30
  faraday-excon (1.1.0)
32
- faraday-gzip (0.1.0)
33
- faraday (>= 1.0)
34
- zlib (~> 2.1)
35
31
  faraday-httpclient (1.0.1)
36
32
  faraday-multipart (1.0.4)
37
33
  multipart-post (~> 2)
@@ -71,14 +67,12 @@ GEM
71
67
  addressable (>= 2.8.0)
72
68
  crack (>= 0.3.2)
73
69
  hashdiff (>= 0.4.0, < 2.0.0)
74
- zlib (2.1.1)
75
70
 
76
71
  PLATFORMS
77
72
  x86_64-darwin-17
78
73
 
79
74
  DEPENDENCIES
80
75
  bundler
81
- faraday-gzip (~> 0.1.0)
82
76
  rake (~> 12.3.3)
83
77
  rspec (~> 3.0)
84
78
  simplecov (~> 0.9)
data/lib/Yar/error.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Yar
4
- class Error < StandardError; end
4
+ class Error < StandardError; end
5
5
  end
data/lib/Yar/version.rb CHANGED
@@ -3,6 +3,6 @@
3
3
  module Yar
4
4
  major = 1
5
5
  minor = 0
6
- patch = 0
6
+ patch = 1
7
7
  VERSION = "#{major}.#{minor}.#{patch}"
8
8
  end
data/lib/yar.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "addressable/uri"
4
3
  require "faraday"
5
4
  require "yar/version"
6
5
 
data/spec/client_spec.rb CHANGED
@@ -14,6 +14,6 @@ RSpec.describe Yar::Client do
14
14
  end
15
15
 
16
16
  describe "VERSION" do
17
- it { expect(Yar::VERSION).to eq "1.0.0" }
17
+ it { expect(Yar::VERSION).to eq "1.0.1" }
18
18
  end
19
19
  end
@@ -27,7 +27,7 @@ http_interactions:
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:21 GMT
30
+ - Sun, 23 Oct 2022 08:29:12 GMT
31
31
  Vary:
32
32
  - Accept, Accept-Encoding
33
33
  X-Content-Type-Options:
@@ -40,5 +40,5 @@ http_interactions:
40
40
  Airlines","codes":{"sirena":null,"iata":"TK","icao":"THY"},"address":"Bakırköy/
41
41
  İstanbul","url":"http://www.turkishairlines.com/","email":"","contacts":"","phone":"444
42
42
  08 49","logo":"https://yastat.net/s3/rasp/media/data/company/logo/thy_kopya.jpg","offices":[]}]}'
43
- recorded_at: Sun, 23 Oct 2022 08:19:21 GMT
43
+ recorded_at: Sun, 23 Oct 2022 08:29:12 GMT
44
44
  recorded_with: VCR 6.1.0
@@ -27,7 +27,7 @@ http_interactions:
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:21 GMT
30
+ - Sun, 23 Oct 2022 08:29:12 GMT
31
31
  Vary:
32
32
  - Accept, Accept-Encoding
33
33
  X-Content-Type-Options:
@@ -47,5 +47,5 @@ http_interactions:
47
47
  51px;\" src=\"//yandex.st/rasp/media/apicc/copyright_horiz_mono.html\"></iframe>","logo_hd":"<iframe
48
48
  frameborder=\"0\" style=\"overflow: hidden; border: 0; width: 740px; height:
49
49
  51px;\" src=\"//yandex.st/rasp/media/apicc/copyright_horiz_dark.html\"></iframe>"}}'
50
- recorded_at: Sun, 23 Oct 2022 08:19:21 GMT
50
+ recorded_at: Sun, 23 Oct 2022 08:29:12 GMT
51
51
  recorded_with: VCR 6.1.0
@@ -27,7 +27,7 @@ http_interactions:
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:22 GMT
30
+ - Sun, 23 Oct 2022 08:29:13 GMT
31
31
  Vary:
32
32
  - Accept
33
33
  X-Content-Type-Options:
@@ -35,5 +35,5 @@ http_interactions:
35
35
  body:
36
36
  encoding: UTF-8
37
37
  string: '{"type":"settlement","title":"Москва","short_title":"Москва","popular_title":"Москва","code":"c213","lat":55.753676,"lng":37.619899,"distance":3.016378011063095}'
38
- recorded_at: Sun, 23 Oct 2022 08:19:22 GMT
38
+ recorded_at: Sun, 23 Oct 2022 08:29:13 GMT
39
39
  recorded_with: VCR 6.1.0
@@ -23,11 +23,11 @@ http_interactions:
23
23
  Allow:
24
24
  - GET
25
25
  Content-Length:
26
- - '5892'
26
+ - '5879'
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:21 GMT
30
+ - Sun, 23 Oct 2022 08:29:13 GMT
31
31
  Vary:
32
32
  - Accept, Accept-Encoding
33
33
  X-Content-Type-Options:
@@ -41,7 +41,7 @@ http_interactions:
41
41
  остановка","transport_type":"bus","distance":1.6193015470823315,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848574/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848574/schedule"}}},{"type":"station","title":"м.
42
42
  Октябрьская, кольцевая","short_title":null,"popular_title":null,"code":"s9848573","lat":55.728776424,"lng":37.6113395318,"station_type":"bus_stop","station_type_name":"автобусная
43
43
  остановка","transport_type":"bus","distance":1.6430253313533918,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848573/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848573/schedule"}}},{"type":"station","title":"Москва
44
- (Киевский вокзал)","short_title":"М-Киевская","popular_title":"Киевский вокзал","code":"s2000007","lat":55.742799,"lng":37.565187,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":1.6710833940539933,"majority":1,"type_choices":{"aeroex":{"desktop_url":"https://rasp.yandex.ru/station/2000007/aeroex","touch_url":"https://t.rasp.yandex.ru/station/2000007/aeroex"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000007/train","touch_url":"https://t.rasp.yandex.ru/station/2000007/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000007/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000007/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000007/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000007/suburban"}}},{"type":"station","title":"Лужники","short_title":"","popular_title":"","code":"s9855172","lat":55.720884,"lng":37.560263,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":2.2084053831395294,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855172/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855172/suburban"}}},{"type":"station","title":"м.
44
+ (Киевский вокзал)","short_title":"М-Киевская","popular_title":"Киевский вокзал","code":"s2000007","lat":55.742799,"lng":37.565187,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":1.6710833940539933,"majority":1,"type_choices":{"aeroex":{"desktop_url":"https://rasp.yandex.ru/station/2000007/aeroex","touch_url":"https://t.rasp.yandex.ru/station/2000007/aeroex"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000007/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000007/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000007/train","touch_url":"https://t.rasp.yandex.ru/station/2000007/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000007/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000007/tablo"}}},{"type":"station","title":"Лужники","short_title":"","popular_title":"","code":"s9855172","lat":55.720884,"lng":37.560263,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":2.2084053831395294,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855172/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855172/suburban"}}},{"type":"station","title":"м.
45
45
  Александровский Сад","short_title":null,"popular_title":null,"code":"s9848575","lat":55.7529376761,"lng":37.6112537011,"station_type":"bus_stop","station_type_name":"автобусная
46
46
  остановка","transport_type":"bus","distance":2.6074367807518772,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848575/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848575/schedule"}}},{"type":"station","title":"Площадь
47
47
  Гагарина","short_title":null,"popular_title":null,"code":"s9848572","lat":55.7087189551715,"lng":37.5821570976812,"station_type":"bus_stop","station_type_name":"автобусная
@@ -55,7 +55,7 @@ http_interactions:
55
55
  площадь","short_title":null,"popular_title":null,"code":"s9848583","lat":55.7586864403836,"lng":37.6188635839993,"station_type":"bus_stop","station_type_name":"автобусная
56
56
  остановка","transport_type":"bus","distance":3.404707707976818,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848583/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848583/schedule"}}},{"type":"station","title":"Москва
57
57
  (Павелецкий вокзал)","short_title":"М-Павелецк.","popular_title":"Павелецкий
58
- вокзал","code":"s2000005","lat":55.729498,"lng":37.640771,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":3.4177366150807456,"majority":1,"type_choices":{"aeroex":{"desktop_url":"https://rasp.yandex.ru/station/2000005/aeroex","touch_url":"https://t.rasp.yandex.ru/station/2000005/aeroex"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000005/train","touch_url":"https://t.rasp.yandex.ru/station/2000005/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000005/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000005/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000005/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000005/suburban"}}},{"type":"station","title":"Пушкинская
58
+ вокзал","code":"s2000005","lat":55.729498,"lng":37.640771,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":3.4177366150807456,"majority":1,"type_choices":{"aeroex":{"desktop_url":"https://rasp.yandex.ru/station/2000005/aeroex","touch_url":"https://t.rasp.yandex.ru/station/2000005/aeroex"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000005/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000005/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000005/train","touch_url":"https://t.rasp.yandex.ru/station/2000005/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000005/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000005/tablo"}}},{"type":"station","title":"Пушкинская
59
59
  площадь","short_title":null,"popular_title":null,"code":"s9848577","lat":55.7656167187466,"lng":37.6037864311773,"station_type":"bus_stop","station_type_name":"автобусная
60
60
  остановка","transport_type":"bus","distance":3.677412490283576,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848577/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848577/schedule"}}},{"type":"station","title":"м.
61
61
  Китай-Город","short_title":null,"popular_title":null,"code":"s9848585","lat":55.7540696344419,"lng":37.6340663446951,"station_type":"bus_stop","station_type_name":"автобусная
@@ -70,20 +70,20 @@ http_interactions:
70
70
  Парк Победы","short_title":"","popular_title":"","code":"s9744836","lat":55.736486,"lng":37.515491,"station_type":"bus_stop","station_type_name":"автобусная
71
71
  остановка","transport_type":"bus","distance":4.4730495913885715,"majority":2,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9744836/schedule","touch_url":"https://t.rasp.yandex.ru/station/9744836/schedule"}}},{"type":"station","title":"Шелепиха","short_title":"","popular_title":"","code":"s9855174","lat":55.756734,"lng":37.525939,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":4.573776006739791,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855174/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855174/suburban"}}},{"type":"station","title":"Фили","short_title":"","popular_title":"","code":"s9600821","lat":55.74425,"lng":37.51487,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":4.645635973376558,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9600821/suburban","touch_url":"https://t.rasp.yandex.ru/station/9600821/suburban"}}},{"type":"station","title":"Москва
72
72
  (Белорусский вокзал)","short_title":"М-Белорусск.","popular_title":"Белорусский
73
- вокзал","code":"s2000006","lat":55.7764527677074,"lng":37.57958027843418,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":4.746638469128356,"majority":1,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/2000006/train","touch_url":"https://t.rasp.yandex.ru/station/2000006/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000006/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000006/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000006/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000006/suburban"}}},{"type":"station","title":"Поклонная","short_title":"Поклонная","popular_title":null,"code":"s9601674","lat":55.728368,"lng":37.511543,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":4.753028540583507,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601674/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601674/suburban"}}},{"type":"station","title":"м.
73
+ вокзал","code":"s2000006","lat":55.7764527677074,"lng":37.57958027843418,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":4.746638469128356,"majority":1,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000006/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000006/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000006/train","touch_url":"https://t.rasp.yandex.ru/station/2000006/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000006/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000006/tablo"}}},{"type":"station","title":"Поклонная","short_title":"Поклонная","popular_title":null,"code":"s9601674","lat":55.728368,"lng":37.511543,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":4.753028540583507,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601674/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601674/suburban"}}},{"type":"station","title":"м.
74
74
  Белорусская","short_title":"","popular_title":"","code":"s9842285","lat":55.7768004905017,"lng":37.58195976927681,"station_type":"bus_stop","station_type_name":"автобусная
75
75
  остановка","transport_type":"bus","distance":4.773418823700639,"majority":3,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9842285/schedule","touch_url":"https://t.rasp.yandex.ru/station/9842285/schedule"}}},{"type":"station","title":"Беговая","short_title":"","popular_title":"","code":"s9601666","lat":55.773264,"lng":37.550457,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":4.9265162970163905,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601666/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601666/suburban"}}},{"type":"station","title":"Крымская","short_title":"","popular_title":"","code":"s9855170","lat":55.690006,"lng":37.605086,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":5.022682505738037,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855170/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855170/suburban"}}},{"type":"station","title":"Верхние
76
76
  Котлы, МЦК","short_title":null,"popular_title":null,"code":"s9855169","lat":55.689955,"lng":37.618187,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":5.276359493551012,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855169/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855169/suburban"}}},{"type":"station","title":"Верхние
77
77
  Котлы","short_title":null,"popular_title":null,"code":"s9868808","lat":55.6896100291869,"lng":37.6171913730163,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":5.289188017664572,"majority":4,"type_choices":{"aeroex":{"desktop_url":"https://rasp.yandex.ru/station/9868808/aeroex","touch_url":"https://t.rasp.yandex.ru/station/9868808/aeroex"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9868808/suburban","touch_url":"https://t.rasp.yandex.ru/station/9868808/suburban"}}},{"type":"station","title":"Москва
78
- (Курский вокзал)","short_title":"М-Курская","popular_title":"Курский вокзал","code":"s2000001","lat":55.757383,"lng":37.660784,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":5.314776316307411,"majority":1,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/2000001/train","touch_url":"https://t.rasp.yandex.ru/station/2000001/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000001/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000001/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000001/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000001/suburban"}}},{"type":"station","title":"ЗИЛ,
78
+ (Курский вокзал)","short_title":"М-Курская","popular_title":"Курский вокзал","code":"s2000001","lat":55.757383,"lng":37.660784,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":5.314776316307411,"majority":1,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000001/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000001/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000001/train","touch_url":"https://t.rasp.yandex.ru/station/2000001/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000001/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000001/tablo"}}},{"type":"station","title":"ЗИЛ,
79
79
  МЦК","short_title":null,"popular_title":null,"code":"s9855168","lat":55.698654,"lng":37.649119,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":5.539337554126366,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855168/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855168/suburban"}}},{"type":"station","title":"Минская","short_title":null,"popular_title":null,"code":"s9880959","lat":55.72317586391199,"lng":37.499143660068505,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":5.618700353056655,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9880959/suburban","touch_url":"https://t.rasp.yandex.ru/station/9880959/suburban"}}},{"type":"station","title":"Автозаводская","short_title":"","popular_title":"","code":"s9855167","lat":55.705498,"lng":37.661706,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":5.662296059641851,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855167/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855167/suburban"}}},{"type":"station","title":"Парк
80
80
  Победы","short_title":null,"popular_title":null,"code":"s9845613","lat":55.73157,"lng":37.490707,"station_type":"bus_stop","station_type_name":"автобусная
81
81
  остановка","transport_type":"bus","distance":6.022617711721193,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9845613/schedule","touch_url":"https://t.rasp.yandex.ru/station/9845613/schedule"}}},{"type":"station","title":"Дубровка","short_title":"","popular_title":"","code":"s9855166","lat":55.712309,"lng":37.67663,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":6.122341335243698,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855166/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855166/suburban"}}},{"type":"station","title":"Нагатинская","short_title":null,"popular_title":null,"code":"s9601975","lat":55.682026,"lng":37.621104,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":6.164942198463707,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601975/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601975/suburban"}}},{"type":"station","title":"Серп
82
- и Молот","short_title":"","popular_title":"","code":"s9601796","lat":55.748162,"lng":37.682191,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":6.179001161527269,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9601796/train","touch_url":"https://t.rasp.yandex.ru/station/9601796/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601796/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601796/suburban"}}},{"type":"station","title":"Минская
82
+ и Молот","short_title":"","popular_title":"","code":"s9601796","lat":55.748162,"lng":37.682191,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":6.179001161527269,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601796/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601796/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9601796/train","touch_url":"https://t.rasp.yandex.ru/station/9601796/train"}}},{"type":"station","title":"Минская
83
83
  улица, 8","short_title":"","popular_title":"","code":"s9845614","lat":55.7350428484,"lng":37.4875369497,"station_type":"bus_stop","station_type_name":"автобусная
84
84
  остановка","transport_type":"bus","distance":6.21609645937488,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9845614/schedule","touch_url":"https://t.rasp.yandex.ru/station/9845614/schedule"}}},{"type":"station","title":"Москва
85
85
  (Казанский вокзал)","short_title":"М-Казанская","popular_title":"Казанский
86
- вокзал","code":"s2000003","lat":55.77371724425933,"lng":37.65665372617877,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.2187469023236375,"majority":1,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/2000003/train","touch_url":"https://t.rasp.yandex.ru/station/2000003/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000003/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000003/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000003/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000003/suburban"}}},{"type":"station","title":"Площадь
86
+ вокзал","code":"s2000003","lat":55.77371724425933,"lng":37.65665372617877,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.2187469023236375,"majority":1,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000003/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000003/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000003/train","touch_url":"https://t.rasp.yandex.ru/station/2000003/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000003/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000003/tablo"}}},{"type":"station","title":"Площадь
87
87
  Трех Вокзалов (Каланчёвская)","short_title":"Площадь Трех Вокзалов","popular_title":null,"code":"s2001005","lat":55.77649773912353,"lng":37.65162882208954,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":6.232938029485643,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2001005/suburban","touch_url":"https://t.rasp.yandex.ru/station/2001005/suburban"}}},{"type":"station","title":"Москва
88
88
  Казан Турист","short_title":null,"popular_title":null,"code":"s9879064","lat":55.77435848022523,"lng":37.65811078914875,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.333582107014508,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9879064/train","touch_url":"https://t.rasp.yandex.ru/station/9879064/train"}}},{"type":"station","title":"Площадь
89
89
  Ромена Роллана","short_title":"","popular_title":"","code":"s9845615","lat":55.7368949257,"lng":37.4857378069,"station_type":"bus_stop","station_type_name":"автобусная
@@ -92,48 +92,48 @@ http_interactions:
92
92
  Динамо","short_title":null,"popular_title":null,"code":"s9848579","lat":55.7893192793,"lng":37.557008706,"station_type":"bus_stop","station_type_name":"автобусная
93
93
  остановка","transport_type":"bus","distance":6.432032091838631,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848579/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848579/schedule"}}},{"type":"station","title":"Москва
94
94
  (Ленинградский вокзал)","short_title":"М-Ленинградск","popular_title":"Ленинградский
95
- вокзал","code":"s2006004","lat":55.778353,"lng":37.654377,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.501489120346475,"majority":1,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/2006004/train","touch_url":"https://t.rasp.yandex.ru/station/2006004/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2006004/tablo","touch_url":"https://t.rasp.yandex.ru/station/2006004/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2006004/suburban","touch_url":"https://t.rasp.yandex.ru/station/2006004/suburban"}}},{"type":"station","title":"Москва-Товарная","short_title":"Москва-тов.","popular_title":"","code":"s9601813","lat":55.745427,"lng":37.688808,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":6.514359344880057,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601813/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601813/suburban"}}},{"type":"station","title":"Москва,
95
+ вокзал","code":"s2006004","lat":55.778353,"lng":37.654377,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.501489120346475,"majority":1,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2006004/suburban","touch_url":"https://t.rasp.yandex.ru/station/2006004/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2006004/train","touch_url":"https://t.rasp.yandex.ru/station/2006004/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2006004/tablo","touch_url":"https://t.rasp.yandex.ru/station/2006004/tablo"}}},{"type":"station","title":"Москва-Товарная","short_title":"Москва-тов.","popular_title":"","code":"s9601813","lat":55.745427,"lng":37.688808,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":6.514359344880057,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601813/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601813/suburban"}}},{"type":"station","title":"Москва,
96
96
  Ярославский вокзал","short_title":"","popular_title":"","code":"s9759042","lat":55.776401,"lng":37.658618,"station_type":"bus_stop","station_type_name":"автобусная
97
97
  остановка","transport_type":"bus","distance":6.518468277861795,"majority":3,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9759042/schedule","touch_url":"https://t.rasp.yandex.ru/station/9759042/schedule"}}},{"type":"station","title":"м.
98
98
  Филевский парк","short_title":"","popular_title":"","code":"s9841401","lat":55.7393608568,"lng":37.4827877731,"station_type":"bus_stop","station_type_name":"автобусная
99
99
  остановка","transport_type":"bus","distance":6.539547563793289,"majority":3,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9841401/schedule","touch_url":"https://t.rasp.yandex.ru/station/9841401/schedule"}}},{"type":"station","title":"Москва
100
100
  Яр Турист","short_title":null,"popular_title":null,"code":"s9878548","lat":55.77778761318937,"lng":37.65727420822767,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.574189716184568,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9878548/train","touch_url":"https://t.rasp.yandex.ru/station/9878548/train"}}},{"type":"station","title":"Москва
101
101
  (Ярославский вокзал)","short_title":"М-Ярославск.","popular_title":"Ярославский
102
- вокзал","code":"s2000002","lat":55.777685,"lng":37.657484,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.574568091926836,"majority":1,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/2000002/train","touch_url":"https://t.rasp.yandex.ru/station/2000002/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000002/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000002/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000002/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000002/suburban"}}},{"type":"station","title":"Москва
102
+ вокзал","code":"s2000002","lat":55.777685,"lng":37.657484,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.574568091926836,"majority":1,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000002/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000002/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000002/train","touch_url":"https://t.rasp.yandex.ru/station/2000002/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000002/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000002/tablo"}}},{"type":"station","title":"Москва
103
103
  (Савёловский вокзал)","short_title":"М-Савёловская","popular_title":"Савёловский
104
- вокзал","code":"s2000009","lat":55.795104,"lng":37.589184,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.8013696426052865,"majority":1,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/2000009/train","touch_url":"https://t.rasp.yandex.ru/station/2000009/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000009/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000009/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000009/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000009/suburban"}}},{"type":"station","title":"Хорошёво","short_title":"","popular_title":"","code":"s9855175","lat":55.776935,"lng":37.507445,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":6.891601612699609,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855175/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855175/suburban"}}},{"type":"station","title":"Угрешская","short_title":"","popular_title":"","code":"s9855165","lat":55.717934,"lng":37.695526,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":7.04120359264194,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855165/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855165/suburban"}}},{"type":"station","title":"м.
104
+ вокзал","code":"s2000009","lat":55.795104,"lng":37.589184,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":6.8013696426052865,"majority":1,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000009/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000009/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/2000009/train","touch_url":"https://t.rasp.yandex.ru/station/2000009/train"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000009/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000009/tablo"}}},{"type":"station","title":"Хорошёво","short_title":"","popular_title":"","code":"s9855175","lat":55.776935,"lng":37.507445,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":6.891601612699609,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855175/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855175/suburban"}}},{"type":"station","title":"Угрешская","short_title":"","popular_title":"","code":"s9855165","lat":55.717934,"lng":37.695526,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":7.04120359264194,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855165/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855165/suburban"}}},{"type":"station","title":"м.
105
105
  Славянский Бульвар","short_title":null,"popular_title":null,"code":"s9822021","lat":55.728424,"lng":37.473646,"station_type":"bus_stop","station_type_name":"автобусная
106
106
  остановка","transport_type":"bus","distance":7.112253198571259,"majority":3,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9822021/schedule","touch_url":"https://t.rasp.yandex.ru/station/9822021/schedule"}}},{"type":"station","title":"Славянский
107
107
  Бульвар","short_title":null,"popular_title":null,"code":"s9876336","lat":55.730359,"lng":37.47243,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.172684848693099,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9876336/suburban","touch_url":"https://t.rasp.yandex.ru/station/9876336/suburban"}}},{"type":"station","title":"Калитники","short_title":"","popular_title":"","code":"s9600866","lat":55.733813,"lng":37.702536,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.2491853406288635,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9600866/suburban","touch_url":"https://t.rasp.yandex.ru/station/9600866/suburban"}}},{"type":"station","title":"Москва
108
- (Рижский вокзал)","short_title":"М-Рижская","popular_title":"Рижский вокзал","code":"s2000008","lat":55.794213,"lng":37.632957,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":7.297103732739255,"majority":1,"type_choices":{"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000008/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000008/tablo"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000008/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000008/suburban"}}},{"type":"station","title":"Матвеевская","short_title":"","popular_title":"","code":"s9600771","lat":55.704553,"lng":37.481479,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.363738446951851,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9600771/suburban","touch_url":"https://t.rasp.yandex.ru/station/9600771/suburban"}}},{"type":"station","title":"Рижская
108
+ (Рижский вокзал)","short_title":"М-Рижская","popular_title":"Рижский вокзал","code":"s2000008","lat":55.794213,"lng":37.632957,"station_type":"train_station","station_type_name":"вокзал","transport_type":"train","distance":7.297103732739255,"majority":1,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/2000008/suburban","touch_url":"https://t.rasp.yandex.ru/station/2000008/suburban"},"tablo":{"desktop_url":"https://rasp.yandex.ru/station/2000008/tablo","touch_url":"https://t.rasp.yandex.ru/station/2000008/tablo"}}},{"type":"station","title":"Матвеевская","short_title":"","popular_title":"","code":"s9600771","lat":55.704553,"lng":37.481479,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.363738446951851,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9600771/suburban","touch_url":"https://t.rasp.yandex.ru/station/9600771/suburban"}}},{"type":"station","title":"Рижская
109
109
  (МЦД-2)","short_title":null,"popular_title":null,"code":"s9601266","lat":55.793981,"lng":37.638464,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.417069777320842,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601266/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601266/suburban"}}},{"type":"station","title":"Рижская
110
- (Ленинградское направление)","short_title":null,"popular_title":null,"code":"s9603518","lat":55.797074,"lng":37.639214,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.747823226439533,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9603518/suburban","touch_url":"https://t.rasp.yandex.ru/station/9603518/suburban"}}},{"type":"station","title":"Новохохловская","short_title":null,"popular_title":null,"code":"s9868807","lat":55.725173,"lng":37.71275,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.950125304290123,"majority":4,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9868807/train","touch_url":"https://t.rasp.yandex.ru/station/9868807/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9868807/suburban","touch_url":"https://t.rasp.yandex.ru/station/9868807/suburban"}}},{"type":"station","title":"Улица
110
+ (Ленинградское направление)","short_title":null,"popular_title":null,"code":"s9603518","lat":55.797074,"lng":37.639214,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.747823226439533,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9603518/suburban","touch_url":"https://t.rasp.yandex.ru/station/9603518/suburban"}}},{"type":"station","title":"Новохохловская","short_title":null,"popular_title":null,"code":"s9868807","lat":55.725173,"lng":37.71275,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":7.950125304290123,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9868807/suburban","touch_url":"https://t.rasp.yandex.ru/station/9868807/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9868807/train","touch_url":"https://t.rasp.yandex.ru/station/9868807/train"}}},{"type":"station","title":"Улица
111
111
  Алексея Свиридова","short_title":"","popular_title":"","code":"s9845611","lat":55.726013,"lng":37.460099,"station_type":"bus_stop","station_type_name":"автобусная
112
112
  остановка","transport_type":"bus","distance":7.9833380143699735,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9845611/schedule","touch_url":"https://t.rasp.yandex.ru/station/9845611/schedule"}}},{"type":"station","title":"Зорге","short_title":"","popular_title":"","code":"s9855176","lat":55.789138,"lng":37.50425,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.020386800752222,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855176/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855176/suburban"}}},{"type":"station","title":"м.
113
113
  Аэропорт","short_title":null,"popular_title":null,"code":"s9848580","lat":55.8003604645,"lng":37.5323780779,"station_type":"bus_stop","station_type_name":"автобусная
114
114
  остановка","transport_type":"bus","distance":8.131171583159945,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848580/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848580/schedule"}}},{"type":"station","title":"Метро
115
115
  \"Новаторская\"","short_title":null,"popular_title":null,"code":"s9882637","lat":55.67098744773897,"lng":37.51981340569408,"station_type":"bus_stop","station_type_name":"автобусная
116
116
  остановка","transport_type":"bus","distance":8.166410817806565,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9882637/schedule","touch_url":"https://t.rasp.yandex.ru/station/9882637/schedule"}}},{"type":"station","title":"Гражданская","short_title":"","popular_title":"","code":"s9601934","lat":55.805353,"lng":37.553774,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.203831762805308,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601934/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601934/suburban"}}},{"type":"station","title":"Дмитровская","short_title":"","popular_title":"","code":"s9600901","lat":55.808007,"lng":37.578562,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.250893828512861,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9600901/suburban","touch_url":"https://t.rasp.yandex.ru/station/9600901/suburban"}}},{"type":"station","title":"Новохохловская,
117
- МЦК","short_title":null,"popular_title":null,"code":"s9855164","lat":55.724504,"lng":37.717854,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.276665505908994,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855164/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855164/suburban"}}},{"type":"station","title":"Аминьевская","short_title":null,"popular_title":null,"code":"s9879631","lat":55.69786024282298,"lng":37.46945534796064,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.37646097881694,"majority":4,"type_choices":{"aeroex":{"desktop_url":"https://rasp.yandex.ru/station/9879631/aeroex","touch_url":"https://t.rasp.yandex.ru/station/9879631/aeroex"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9879631/suburban","touch_url":"https://t.rasp.yandex.ru/station/9879631/suburban"}}},{"type":"station","title":"Москва-3","short_title":"","popular_title":"","code":"s9601018","lat":55.801863,"lng":37.651575,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.57097347139448,"majority":4,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9601018/train","touch_url":"https://t.rasp.yandex.ru/station/9601018/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601018/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601018/suburban"}}},{"type":"station","title":"Улица
117
+ МЦК","short_title":null,"popular_title":null,"code":"s9855164","lat":55.724504,"lng":37.717854,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.276665505908994,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855164/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855164/suburban"}}},{"type":"station","title":"Аминьевская","short_title":null,"popular_title":null,"code":"s9879631","lat":55.69786024282298,"lng":37.46945534796064,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.37646097881694,"majority":4,"type_choices":{"aeroex":{"desktop_url":"https://rasp.yandex.ru/station/9879631/aeroex","touch_url":"https://t.rasp.yandex.ru/station/9879631/aeroex"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9879631/suburban","touch_url":"https://t.rasp.yandex.ru/station/9879631/suburban"}}},{"type":"station","title":"Москва-3","short_title":"","popular_title":"","code":"s9601018","lat":55.801863,"lng":37.651575,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.57097347139448,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601018/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601018/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9601018/train","touch_url":"https://t.rasp.yandex.ru/station/9601018/train"}}},{"type":"station","title":"Улица
118
118
  Клочкова","short_title":null,"popular_title":null,"code":"s9822022","lat":55.723798,"lng":37.450901,"station_type":"bus_stop","station_type_name":"автобусная
119
- остановка","transport_type":"bus","distance":8.585324005216684,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9822022/schedule","touch_url":"https://t.rasp.yandex.ru/station/9822022/schedule"}}},{"type":"station","title":"Авиамоторная","short_title":null,"popular_title":null,"code":"s9601642","lat":55.750411,"lng":37.721612,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.637783138630237,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9601642/train","touch_url":"https://t.rasp.yandex.ru/station/9601642/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601642/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601642/suburban"}}},{"type":"station","title":"Кунцевская","short_title":null,"popular_title":null,"code":"s9601728","lat":55.726867,"lng":37.449246,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.649921710027458,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601728/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601728/suburban"}}},{"type":"station","title":"м.
119
+ остановка","transport_type":"bus","distance":8.585324005216684,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9822022/schedule","touch_url":"https://t.rasp.yandex.ru/station/9822022/schedule"}}},{"type":"station","title":"Авиамоторная","short_title":null,"popular_title":null,"code":"s9601642","lat":55.750411,"lng":37.721612,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":8.637783138630237,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601642/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601642/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9601642/train","touch_url":"https://t.rasp.yandex.ru/station/9601642/train"}}},{"type":"station","title":"Кунцевская","short_title":null,"popular_title":null,"code":"s9601728","lat":55.726867,"lng":37.449246,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.649921710027458,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601728/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601728/suburban"}}},{"type":"station","title":"м.
120
120
  Кунцевская","short_title":"","popular_title":"","code":"s9744744","lat":55.730855,"lng":37.446804,"station_type":"bus_stop","station_type_name":"автобусная
121
121
  остановка","transport_type":"bus","distance":8.773106019190692,"majority":2,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9744744/schedule","touch_url":"https://t.rasp.yandex.ru/station/9744744/schedule"}}},{"type":"station","title":"Нижегородская
122
122
  (МЦК)","short_title":null,"popular_title":null,"code":"s9855163","lat":55.732031,"lng":37.72806,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.850422176683576,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855163/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855163/suburban"}}},{"type":"station","title":"Нижегородская
123
- (Горьковское направление)","short_title":null,"popular_title":null,"code":"s9601835","lat":55.733381,"lng":37.729584,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.943321306183616,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9601835/train","touch_url":"https://t.rasp.yandex.ru/station/9601835/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601835/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601835/suburban"}}},{"type":"station","title":"Панфиловская","short_title":"","popular_title":"","code":"s9855177","lat":55.798025,"lng":37.499724,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.968475616429027,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855177/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855177/suburban"}}},{"type":"station","title":"Автостанция
124
- Варшавская","short_title":"","popular_title":"","code":"s9850911","lat":55.655893,"lng":37.624881,"station_type":"bus_station","station_type_name":"автовокзал","transport_type":"bus","distance":9.006673795781351,"majority":2,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9850911/schedule","touch_url":"https://t.rasp.yandex.ru/station/9850911/schedule"}}},{"type":"station","title":"Сортировочная","short_title":null,"popular_title":"","code":"s9601335","lat":55.763676,"lng":37.720641,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.007640819959448,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9601335/train","touch_url":"https://t.rasp.yandex.ru/station/9601335/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601335/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601335/suburban"}}},{"type":"station","title":"Улица
123
+ (Горьковское направление)","short_title":null,"popular_title":null,"code":"s9601835","lat":55.733381,"lng":37.729584,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.943321306183616,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601835/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601835/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9601835/train","touch_url":"https://t.rasp.yandex.ru/station/9601835/train"}}},{"type":"station","title":"Панфиловская","short_title":"","popular_title":"","code":"s9855177","lat":55.798025,"lng":37.499724,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":8.968475616429027,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855177/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855177/suburban"}}},{"type":"station","title":"Автостанция
124
+ Варшавская","short_title":"","popular_title":"","code":"s9850911","lat":55.655893,"lng":37.624881,"station_type":"bus_station","station_type_name":"автовокзал","transport_type":"bus","distance":9.006673795781351,"majority":2,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9850911/schedule","touch_url":"https://t.rasp.yandex.ru/station/9850911/schedule"}}},{"type":"station","title":"Сортировочная","short_title":null,"popular_title":"","code":"s9601335","lat":55.763676,"lng":37.720641,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.007640819959448,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601335/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601335/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9601335/train","touch_url":"https://t.rasp.yandex.ru/station/9601335/train"}}},{"type":"station","title":"Улица
125
125
  Вересаева","short_title":null,"popular_title":null,"code":"s9822023","lat":55.722223,"lng":37.444206,"station_type":"bus_stop","station_type_name":"автобусная
126
- остановка","transport_type":"bus","distance":9.025032346155617,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9822023/schedule","touch_url":"https://t.rasp.yandex.ru/station/9822023/schedule"}}},{"type":"station","title":"Электрозаводская","short_title":"Эл-заводская","popular_title":"","code":"s9601647","lat":55.781358,"lng":37.705088,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.088859485432875,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9601647/train","touch_url":"https://t.rasp.yandex.ru/station/9601647/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601647/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601647/suburban"}}},{"type":"station","title":"м.
126
+ остановка","transport_type":"bus","distance":9.025032346155617,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9822023/schedule","touch_url":"https://t.rasp.yandex.ru/station/9822023/schedule"}}},{"type":"station","title":"Электрозаводская","short_title":"Эл-заводская","popular_title":"","code":"s9601647","lat":55.781358,"lng":37.705088,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.088859485432875,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601647/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601647/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9601647/train","touch_url":"https://t.rasp.yandex.ru/station/9601647/train"}}},{"type":"station","title":"м.
127
127
  Сокол","short_title":null,"popular_title":null,"code":"s9848581","lat":55.8052428563,"lng":37.5143536333,"station_type":"bus_stop","station_type_name":"автобусная
128
- остановка","transport_type":"bus","distance":9.131182503672488,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848581/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848581/schedule"}}},{"type":"station","title":"Варшавская","short_title":null,"popular_title":null,"code":"s9601656","lat":55.6539320421164,"lng":37.6222109828028,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":9.175222223765651,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601656/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601656/suburban"}}},{"type":"station","title":"Останкино","short_title":null,"popular_title":"","code":"s9603505","lat":55.81705,"lng":37.603743,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.301407927284878,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9603505/suburban","touch_url":"https://t.rasp.yandex.ru/station/9603505/suburban"}}},{"type":"station","title":"Тимирязевская","short_title":null,"popular_title":null,"code":"s9602463","lat":55.817527,"lng":37.57722,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.312954339166584,"majority":4,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9602463/train","touch_url":"https://t.rasp.yandex.ru/station/9602463/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9602463/suburban","touch_url":"https://t.rasp.yandex.ru/station/9602463/suburban"}}},{"type":"station","title":"Текстильщики","short_title":"","popular_title":"","code":"s9600711","lat":55.707074,"lng":37.729527,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.429636296433308,"majority":4,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9600711/train","touch_url":"https://t.rasp.yandex.ru/station/9600711/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9600711/suburban","touch_url":"https://t.rasp.yandex.ru/station/9600711/suburban"}}},{"type":"station","title":"Тимирязевская,
128
+ остановка","transport_type":"bus","distance":9.131182503672488,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9848581/schedule","touch_url":"https://t.rasp.yandex.ru/station/9848581/schedule"}}},{"type":"station","title":"Варшавская","short_title":null,"popular_title":null,"code":"s9601656","lat":55.6539320421164,"lng":37.6222109828028,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":9.175222223765651,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601656/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601656/suburban"}}},{"type":"station","title":"Останкино","short_title":null,"popular_title":"","code":"s9603505","lat":55.81705,"lng":37.603743,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.301407927284878,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9603505/suburban","touch_url":"https://t.rasp.yandex.ru/station/9603505/suburban"}}},{"type":"station","title":"Тимирязевская","short_title":null,"popular_title":null,"code":"s9602463","lat":55.817527,"lng":37.57722,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.312954339166584,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9602463/suburban","touch_url":"https://t.rasp.yandex.ru/station/9602463/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9602463/train","touch_url":"https://t.rasp.yandex.ru/station/9602463/train"}}},{"type":"station","title":"Текстильщики","short_title":"","popular_title":"","code":"s9600711","lat":55.707074,"lng":37.729527,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.429636296433308,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9600711/suburban","touch_url":"https://t.rasp.yandex.ru/station/9600711/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9600711/train","touch_url":"https://t.rasp.yandex.ru/station/9600711/train"}}},{"type":"station","title":"Тимирязевская,
129
129
  монорельс","short_title":null,"popular_title":null,"code":"s9859408","lat":55.81904,"lng":37.578867,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":9.474956775948744,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9859408/suburban","touch_url":"https://t.rasp.yandex.ru/station/9859408/suburban"}}},{"type":"station","title":"Улица
130
130
  Багрицкого","short_title":"","popular_title":"","code":"s9822024","lat":55.721206,"lng":37.436825,"station_type":"bus_stop","station_type_name":"автобусная
131
131
  остановка","transport_type":"bus","distance":9.49906575936948,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9822024/schedule","touch_url":"https://t.rasp.yandex.ru/station/9822024/schedule"}}},{"type":"station","title":"Андроновка
132
132
  (МЦК)","short_title":null,"popular_title":null,"code":"s9855157","lat":55.746401,"lng":37.736886,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":9.499956468820942,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9855157/suburban","touch_url":"https://t.rasp.yandex.ru/station/9855157/suburban"}}},{"type":"station","title":"Андроновка
133
- (Казанское направление)","short_title":null,"popular_title":null,"code":"s9601991","lat":55.744544,"lng":37.740898,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.721642429741454,"majority":3,"type_choices":{"train":{"desktop_url":"https://rasp.yandex.ru/station/9601991/train","touch_url":"https://t.rasp.yandex.ru/station/9601991/train"},"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601991/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601991/suburban"}}},{"type":"station","title":"Улица
133
+ (Казанское направление)","short_title":null,"popular_title":null,"code":"s9601991","lat":55.744544,"lng":37.740898,"station_type":"platform","station_type_name":"платформа","transport_type":"train","distance":9.721642429741454,"majority":3,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601991/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601991/suburban"},"train":{"desktop_url":"https://rasp.yandex.ru/station/9601991/train","touch_url":"https://t.rasp.yandex.ru/station/9601991/train"}}},{"type":"station","title":"Улица
134
134
  Милашенкова","short_title":"","popular_title":"","code":"s9859407","lat":55.821873,"lng":37.591209,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":9.781046004372495,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9859407/suburban","touch_url":"https://t.rasp.yandex.ru/station/9859407/suburban"}}},{"type":"station","title":"Красный
135
135
  Балтиец","short_title":"Кр. Балтиец","popular_title":"","code":"s9601947","lat":55.815512,"lng":37.526368,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":9.82552981072492,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9601947/suburban","touch_url":"https://t.rasp.yandex.ru/station/9601947/suburban"}}},{"type":"station","title":"Телецентр","short_title":"","popular_title":"","code":"s9859406","lat":55.82181,"lng":37.608946,"station_type":"station","station_type_name":"станция","transport_type":"train","distance":9.868014268927723,"majority":4,"type_choices":{"suburban":{"desktop_url":"https://rasp.yandex.ru/station/9859406/suburban","touch_url":"https://t.rasp.yandex.ru/station/9859406/suburban"}}},{"type":"station","title":"Улица
136
136
  Петра Алексеева","short_title":null,"popular_title":null,"code":"s9822025","lat":55.720528,"lng":37.429229,"station_type":"bus_stop","station_type_name":"автобусная
137
137
  остановка","transport_type":"bus","distance":9.98085049236869,"majority":4,"type_choices":{"schedule":{"desktop_url":"https://rasp.yandex.ru/station/9822025/schedule","touch_url":"https://t.rasp.yandex.ru/station/9822025/schedule"}}}]}'
138
- recorded_at: Sun, 23 Oct 2022 08:19:21 GMT
138
+ recorded_at: Sun, 23 Oct 2022 08:29:13 GMT
139
139
  recorded_with: VCR 6.1.0
@@ -27,7 +27,7 @@ http_interactions:
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:22 GMT
30
+ - Sun, 23 Oct 2022 08:29:14 GMT
31
31
  Vary:
32
32
  - Accept, Accept-Encoding
33
33
  X-Content-Type-Options:
@@ -126,5 +126,5 @@ http_interactions:
126
126
  остановка","transport_type":"bus"},"to":{"type":"station","title":"Пушкинская
127
127
  площадь","short_title":null,"popular_title":null,"code":"s9848577","station_type":"bus_stop","station_type_name":"автобусная
128
128
  остановка","transport_type":"bus"},"departure_platform":"","arrival_platform":"","departure_terminal":null,"arrival_terminal":null,"duration":480.0,"days":"ежедневно","except_days":"","departure":"06:00:00","arrival":"06:08:00","start_date":"2022-10-23"}],"interval_segments":[],"pagination":{"total":11,"limit":100,"offset":0}}'
129
- recorded_at: Sun, 23 Oct 2022 08:19:22 GMT
129
+ recorded_at: Sun, 23 Oct 2022 08:29:14 GMT
130
130
  recorded_with: VCR 6.1.0
@@ -27,7 +27,7 @@ http_interactions:
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:22 GMT
30
+ - Sun, 23 Oct 2022 08:29:14 GMT
31
31
  Vary:
32
32
  - Accept, Accept-Encoding
33
33
  X-Content-Type-Options:
@@ -91,5 +91,5 @@ http_interactions:
91
91
  \"Мосгортранс\"","codes":{"sirena":null,"iata":null,"icao":null}},"uid":"N1_10_9848585_4","vehicle":null,"transport_subtype":{"title":"Автобус","code":"bus","color":"#ff0000"}},"is_fuzzy":false,"platform":"","terminal":null,"days":"ежедневно","except_days":null,"stops":"","departure":"06:00","arrival":null},{"thread":{"number":"Н11","title":"м.
92
92
  Китай-Город — Аэропорт Внуково","short_title":"м. Китай-Город — Аэропорт Внуково","express_type":null,"transport_type":"bus","carrier":{"code":55874,"title":"ГУП
93
93
  \"Мосгортранс\"","codes":{"sirena":null,"iata":null,"icao":null}},"uid":"N11_10_9848585_4","vehicle":null,"transport_subtype":{"title":"Автобус","code":"bus","color":"#ff0000"}},"is_fuzzy":false,"platform":"","terminal":null,"days":"ежедневно","except_days":null,"stops":"","departure":"06:00","arrival":null}],"interval_schedule":[]}'
94
- recorded_at: Sun, 23 Oct 2022 08:19:22 GMT
94
+ recorded_at: Sun, 23 Oct 2022 08:29:14 GMT
95
95
  recorded_with: VCR 6.1.0
@@ -27,7 +27,7 @@ http_interactions:
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:23 GMT
30
+ - Sun, 23 Oct 2022 08:29:13 GMT
31
31
  Vary:
32
32
  - Accept, Accept-Encoding
33
33
  X-Content-Type-Options:
@@ -126,5 +126,5 @@ http_interactions:
126
126
  остановка","transport_type":"bus"},"to":{"type":"station","title":"Пушкинская
127
127
  площадь","short_title":null,"popular_title":null,"code":"s9848577","station_type":"bus_stop","station_type_name":"автобусная
128
128
  остановка","transport_type":"bus"},"departure_platform":"","arrival_platform":"","departure_terminal":null,"arrival_terminal":null,"duration":480.0,"days":"ежедневно","except_days":"","departure":"06:00:00","arrival":"06:08:00","start_date":"2022-10-23"}],"interval_segments":[],"pagination":{"total":11,"limit":100,"offset":0}}'
129
- recorded_at: Sun, 23 Oct 2022 08:19:23 GMT
129
+ recorded_at: Sun, 23 Oct 2022 08:29:13 GMT
130
130
  recorded_with: VCR 6.1.0
@@ -27,7 +27,7 @@ http_interactions:
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Sun, 23 Oct 2022 08:19:22 GMT
30
+ - Sun, 23 Oct 2022 08:29:13 GMT
31
31
  Vary:
32
32
  - Accept, Accept-Encoding
33
33
  X-Content-Type-Options:
@@ -91,5 +91,5 @@ http_interactions:
91
91
  \"Мосгортранс\"","codes":{"sirena":null,"iata":null,"icao":null}},"uid":"N1_10_9848585_4","vehicle":null,"transport_subtype":{"title":"Автобус","code":"bus","color":"#ff0000"}},"is_fuzzy":false,"platform":"","terminal":null,"days":"ежедневно","except_days":null,"stops":"","departure":"06:00","arrival":null},{"thread":{"number":"Н11","title":"м.
92
92
  Китай-Город — Аэропорт Внуково","short_title":"м. Китай-Город — Аэропорт Внуково","express_type":null,"transport_type":"bus","carrier":{"code":55874,"title":"ГУП
93
93
  \"Мосгортранс\"","codes":{"sirena":null,"iata":null,"icao":null}},"uid":"N11_10_9848585_4","vehicle":null,"transport_subtype":{"title":"Автобус","code":"bus","color":"#ff0000"}},"is_fuzzy":false,"platform":"","terminal":null,"days":"ежедневно","except_days":null,"stops":"","departure":"06:00","arrival":null}],"interval_schedule":[]}'
94
- recorded_at: Sun, 23 Oct 2022 08:19:22 GMT
94
+ recorded_at: Sun, 23 Oct 2022 08:29:13 GMT
95
95
  recorded_with: VCR 6.1.0
data/yar.gemspec CHANGED
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
22
22
 
23
23
  s.metadata["rubygems_mfa_required"] = "true"
24
24
 
25
- s.add_dependency "addressable", "~> 2.3", ">= 2.3.7"
26
25
  s.add_dependency "faraday", "~> 1.7"
27
26
 
28
27
  s.add_development_dependency "bundler"
@@ -32,5 +31,4 @@ Gem::Specification.new do |s|
32
31
  s.add_development_dependency "simplecov-lcov", "~> 0.7.0"
33
32
  s.add_development_dependency "vcr", "~> 6.1"
34
33
  s.add_development_dependency "webmock", "~> 3.18", ">= 3.18.1"
35
- s.add_development_dependency "faraday-gzip","~> 0.1.0"
36
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yar
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Brin
@@ -10,26 +10,6 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2022-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: addressable
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '2.3'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 2.3.7
23
- type: :runtime
24
- prerelease: false
25
- version_requirements: !ruby/object:Gem::Requirement
26
- requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '2.3'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 2.3.7
33
13
  - !ruby/object:Gem::Dependency
34
14
  name: faraday
35
15
  requirement: !ruby/object:Gem::Requirement
@@ -148,26 +128,14 @@ dependencies:
148
128
  - - ">="
149
129
  - !ruby/object:Gem::Version
150
130
  version: 3.18.1
151
- - !ruby/object:Gem::Dependency
152
- name: faraday-gzip
153
- requirement: !ruby/object:Gem::Requirement
154
- requirements:
155
- - - "~>"
156
- - !ruby/object:Gem::Version
157
- version: 0.1.0
158
- type: :development
159
- prerelease: false
160
- version_requirements: !ruby/object:Gem::Requirement
161
- requirements:
162
- - - "~>"
163
- - !ruby/object:Gem::Version
164
- version: 0.1.0
165
131
  description: Yandex.Rasp API wrapper written in Ruby
166
132
  email: ilya@codeplay.ru
167
133
  executables: []
168
134
  extensions: []
169
135
  extra_rdoc_files: []
170
136
  files:
137
+ - ".github/dependabot.yml"
138
+ - ".github/workflows/ci.yml"
171
139
  - ".gitignore"
172
140
  - ".rspec"
173
141
  - ".rubocop.yml"