onebusaway-sdk 0.1.0.pre.alpha.208 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a9b073f692a05665cd75663441bbc61e534df31fb6e45ca18f4d700bbe2d0ae6
4
- data.tar.gz: f054224a63f38b771c8f265a51b61085c5c1c399ce836b1eff98cf88b0e63005
3
+ metadata.gz: 8bf9c7a84281c31f444066c8c535a3f8f508cb839a43f2607e430fac0fb99f74
4
+ data.tar.gz: 66c79fb157b35da6f48c6bc7df6f0154abdd11a886cc166cd77d64cf47d56c2a
5
5
  SHA512:
6
- metadata.gz: 14fd7c1d709cc2ffc05eb57f3f9c5b78fd1ef6326b7763def63838a89dd4819ff8947e87bc5d7e704852ef925d9437d5700cf8c45ca3a69336619d7caccaa8bf
7
- data.tar.gz: a853ea9acb98adafc7c73de850fca015cb1a760ed31495ab2791581f34ff83f8f51bf9221c8c9ea122e9d3374a05d32f324f74f2e3dcb48bb07b7b5759ca9486
6
+ metadata.gz: fbdba9ac9e8dce1b444079b5b260bd4050d60cac0e2292f7a155bd5baf8686315feb8cf826bb91e67b938452d87e35f5dc80c836a9110914f2d470e2b081613d
7
+ data.tar.gz: 177c10e54edf61e4bc69657e78df0fb2e11de49c108598a4956450f2732d9c3b74bf1adc0a353c88b060c771e3f36aa08a8d4569591867a6e53a6cdef551b466
data/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.1 (2025-05-17)
4
+
5
+ Full Changelog: [v1.0.0...v1.0.1](https://github.com/OneBusAway/ruby-sdk/compare/v1.0.0...v1.0.1)
6
+
7
+ ### Chores
8
+
9
+ * **internal:** version bump ([4f870e1](https://github.com/OneBusAway/ruby-sdk/commit/4f870e1501bd3dbb308f9cb1e82426fffa06a820))
10
+
11
+ ## 1.0.0 (2025-05-17)
12
+
13
+ Full Changelog: [v0.1.0-alpha.208...v1.0.0](https://github.com/OneBusAway/ruby-sdk/compare/v0.1.0-alpha.208...v1.0.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** manual updates ([bd2c9c4](https://github.com/OneBusAway/ruby-sdk/commit/bd2c9c4aab540d4e5a7eb8fa6b5103a10d26f426))
18
+
19
+
20
+ ### Chores
21
+
22
+ * configure new SDK language ([f00a06e](https://github.com/OneBusAway/ruby-sdk/commit/f00a06e0c296b6d168019b43a1e55f1375ee52b1))
23
+ * trigger release ([5d40578](https://github.com/OneBusAway/ruby-sdk/commit/5d405785499dedaaa8aaba077563c254b6077fe6))
24
+ * update SDK settings ([c0b720f](https://github.com/OneBusAway/ruby-sdk/commit/c0b720fa25631fb6456d19516f216f24e0ebde9e))
25
+
3
26
  ## 0.1.0-alpha.208 (2025-05-15)
4
27
 
5
28
  Full Changelog: [v0.1.0-alpha.207...v0.1.0-alpha.208](https://github.com/OneBusAway/ruby-sdk/compare/v0.1.0-alpha.207...v0.1.0-alpha.208)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "onebusaway-sdk", "~> 0.1.0.pre.alpha.208"
20
+ gem "onebusaway-sdk", "~> 1.0.1"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -528,6 +528,11 @@ module OnebusawaySDK
528
528
  # @return [Float]
529
529
  required :lat, Float
530
530
 
531
+ # @!attribute location_type
532
+ #
533
+ # @return [Integer]
534
+ required :location_type, Integer, api_name: :locationType
535
+
531
536
  # @!attribute lon
532
537
  #
533
538
  # @return [Float]
@@ -563,19 +568,15 @@ module OnebusawaySDK
563
568
  # @return [String, nil]
564
569
  optional :direction, String
565
570
 
566
- # @!attribute location_type
567
- #
568
- # @return [Integer, nil]
569
- optional :location_type, Integer, api_name: :locationType
570
-
571
571
  # @!attribute wheelchair_boarding
572
572
  #
573
573
  # @return [String, nil]
574
574
  optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
575
575
 
576
- # @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
576
+ # @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
577
577
  # @param id [String]
578
578
  # @param lat [Float]
579
+ # @param location_type [Integer]
579
580
  # @param lon [Float]
580
581
  # @param name [String]
581
582
  # @param parent [String]
@@ -583,7 +584,6 @@ module OnebusawaySDK
583
584
  # @param static_route_ids [Array<String>]
584
585
  # @param code [String]
585
586
  # @param direction [String]
586
- # @param location_type [Integer]
587
587
  # @param wheelchair_boarding [String]
588
588
  end
589
589
 
@@ -76,6 +76,11 @@ module OnebusawaySDK
76
76
  # @return [Float]
77
77
  required :lat, Float
78
78
 
79
+ # @!attribute location_type
80
+ #
81
+ # @return [Integer]
82
+ required :location_type, Integer, api_name: :locationType
83
+
79
84
  # @!attribute lon
80
85
  #
81
86
  # @return [Float]
@@ -113,19 +118,15 @@ module OnebusawaySDK
113
118
  # @return [String, nil]
114
119
  optional :direction, String
115
120
 
116
- # @!attribute location_type
117
- #
118
- # @return [Integer, nil]
119
- optional :location_type, Integer, api_name: :locationType
120
-
121
121
  # @!attribute wheelchair_boarding
122
122
  #
123
123
  # @return [String, nil]
124
124
  optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
125
125
 
126
- # @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
126
+ # @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
127
127
  # @param id [String]
128
128
  # @param lat [Float]
129
+ # @param location_type [Integer]
129
130
  # @param lon [Float]
130
131
  # @param name [String]
131
132
  # @param parent [String]
@@ -133,7 +134,6 @@ module OnebusawaySDK
133
134
  # @param static_route_ids [Array<String>]
134
135
  # @param code [String]
135
136
  # @param direction [String]
136
- # @param location_type [Integer]
137
137
  # @param wheelchair_boarding [String]
138
138
  end
139
139
 
@@ -51,6 +51,11 @@ module OnebusawaySDK
51
51
  # @return [Float]
52
52
  required :lat, Float
53
53
 
54
+ # @!attribute location_type
55
+ #
56
+ # @return [Integer]
57
+ required :location_type, Integer, api_name: :locationType
58
+
54
59
  # @!attribute lon
55
60
  #
56
61
  # @return [Float]
@@ -88,19 +93,15 @@ module OnebusawaySDK
88
93
  # @return [String, nil]
89
94
  optional :direction, String
90
95
 
91
- # @!attribute location_type
92
- #
93
- # @return [Integer, nil]
94
- optional :location_type, Integer, api_name: :locationType
95
-
96
96
  # @!attribute wheelchair_boarding
97
97
  #
98
98
  # @return [String, nil]
99
99
  optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
100
100
 
101
- # @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
101
+ # @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
102
102
  # @param id [String]
103
103
  # @param lat [Float]
104
+ # @param location_type [Integer]
104
105
  # @param lon [Float]
105
106
  # @param name [String]
106
107
  # @param parent [String]
@@ -108,7 +109,6 @@ module OnebusawaySDK
108
109
  # @param static_route_ids [Array<String>]
109
110
  # @param code [String]
110
111
  # @param direction [String]
111
- # @param location_type [Integer]
112
112
  # @param wheelchair_boarding [String]
113
113
  end
114
114
  end
@@ -39,6 +39,11 @@ module OnebusawaySDK
39
39
  # @return [Float]
40
40
  required :lat, Float
41
41
 
42
+ # @!attribute location_type
43
+ #
44
+ # @return [Integer]
45
+ required :location_type, Integer, api_name: :locationType
46
+
42
47
  # @!attribute lon
43
48
  #
44
49
  # @return [Float]
@@ -76,19 +81,15 @@ module OnebusawaySDK
76
81
  # @return [String, nil]
77
82
  optional :direction, String
78
83
 
79
- # @!attribute location_type
80
- #
81
- # @return [Integer, nil]
82
- optional :location_type, Integer, api_name: :locationType
83
-
84
84
  # @!attribute wheelchair_boarding
85
85
  #
86
86
  # @return [String, nil]
87
87
  optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
88
88
 
89
- # @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
89
+ # @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
90
90
  # @param id [String]
91
91
  # @param lat [Float]
92
+ # @param location_type [Integer]
92
93
  # @param lon [Float]
93
94
  # @param name [String]
94
95
  # @param parent [String]
@@ -96,7 +97,6 @@ module OnebusawaySDK
96
97
  # @param static_route_ids [Array<String>]
97
98
  # @param code [String]
98
99
  # @param direction [String]
99
- # @param location_type [Integer]
100
100
  # @param wheelchair_boarding [String]
101
101
  end
102
102
  end
@@ -42,6 +42,11 @@ module OnebusawaySDK
42
42
  # @return [Float]
43
43
  required :lat, Float
44
44
 
45
+ # @!attribute location_type
46
+ #
47
+ # @return [Integer]
48
+ required :location_type, Integer, api_name: :locationType
49
+
45
50
  # @!attribute lon
46
51
  #
47
52
  # @return [Float]
@@ -77,19 +82,15 @@ module OnebusawaySDK
77
82
  # @return [String, nil]
78
83
  optional :direction, String
79
84
 
80
- # @!attribute location_type
81
- #
82
- # @return [Integer, nil]
83
- optional :location_type, Integer, api_name: :locationType
84
-
85
85
  # @!attribute wheelchair_boarding
86
86
  #
87
87
  # @return [String, nil]
88
88
  optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
89
89
 
90
- # @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
90
+ # @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
91
91
  # @param id [String]
92
92
  # @param lat [Float]
93
+ # @param location_type [Integer]
93
94
  # @param lon [Float]
94
95
  # @param name [String]
95
96
  # @param parent [String]
@@ -97,7 +98,6 @@ module OnebusawaySDK
97
98
  # @param static_route_ids [Array<String>]
98
99
  # @param code [String]
99
100
  # @param direction [String]
100
- # @param location_type [Integer]
101
101
  # @param wheelchair_boarding [String]
102
102
  end
103
103
  end
@@ -51,6 +51,11 @@ module OnebusawaySDK
51
51
  # @return [Float]
52
52
  required :lat, Float
53
53
 
54
+ # @!attribute location_type
55
+ #
56
+ # @return [Integer]
57
+ required :location_type, Integer, api_name: :locationType
58
+
54
59
  # @!attribute lon
55
60
  #
56
61
  # @return [Float]
@@ -88,19 +93,15 @@ module OnebusawaySDK
88
93
  # @return [String, nil]
89
94
  optional :direction, String
90
95
 
91
- # @!attribute location_type
92
- #
93
- # @return [Integer, nil]
94
- optional :location_type, Integer, api_name: :locationType
95
-
96
96
  # @!attribute wheelchair_boarding
97
97
  #
98
98
  # @return [String, nil]
99
99
  optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
100
100
 
101
- # @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
101
+ # @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
102
102
  # @param id [String]
103
103
  # @param lat [Float]
104
+ # @param location_type [Integer]
104
105
  # @param lon [Float]
105
106
  # @param name [String]
106
107
  # @param parent [String]
@@ -108,7 +109,6 @@ module OnebusawaySDK
108
109
  # @param static_route_ids [Array<String>]
109
110
  # @param code [String]
110
111
  # @param direction [String]
111
- # @param location_type [Integer]
112
112
  # @param wheelchair_boarding [String]
113
113
  end
114
114
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OnebusawaySDK
4
- VERSION = "0.1.0.pre.alpha.208"
4
+ VERSION = "1.0.1"
5
5
  end
@@ -1000,6 +1000,9 @@ module OnebusawaySDK
1000
1000
  sig { returns(Float) }
1001
1001
  attr_accessor :lat
1002
1002
 
1003
+ sig { returns(Integer) }
1004
+ attr_accessor :location_type
1005
+
1003
1006
  sig { returns(Float) }
1004
1007
  attr_accessor :lon
1005
1008
 
@@ -1027,12 +1030,6 @@ module OnebusawaySDK
1027
1030
  sig { params(direction: String).void }
1028
1031
  attr_writer :direction
1029
1032
 
1030
- sig { returns(T.nilable(Integer)) }
1031
- attr_reader :location_type
1032
-
1033
- sig { params(location_type: Integer).void }
1034
- attr_writer :location_type
1035
-
1036
1033
  sig { returns(T.nilable(String)) }
1037
1034
  attr_reader :wheelchair_boarding
1038
1035
 
@@ -1043,6 +1040,7 @@ module OnebusawaySDK
1043
1040
  params(
1044
1041
  id: String,
1045
1042
  lat: Float,
1043
+ location_type: Integer,
1046
1044
  lon: Float,
1047
1045
  name: String,
1048
1046
  parent: String,
@@ -1050,13 +1048,13 @@ module OnebusawaySDK
1050
1048
  static_route_ids: T::Array[String],
1051
1049
  code: String,
1052
1050
  direction: String,
1053
- location_type: Integer,
1054
1051
  wheelchair_boarding: String
1055
1052
  ).returns(T.attached_class)
1056
1053
  end
1057
1054
  def self.new(
1058
1055
  id:,
1059
1056
  lat:,
1057
+ location_type:,
1060
1058
  lon:,
1061
1059
  name:,
1062
1060
  parent:,
@@ -1064,7 +1062,6 @@ module OnebusawaySDK
1064
1062
  static_route_ids:,
1065
1063
  code: nil,
1066
1064
  direction: nil,
1067
- location_type: nil,
1068
1065
  wheelchair_boarding: nil
1069
1066
  )
1070
1067
  end
@@ -1074,6 +1071,7 @@ module OnebusawaySDK
1074
1071
  {
1075
1072
  id: String,
1076
1073
  lat: Float,
1074
+ location_type: Integer,
1077
1075
  lon: Float,
1078
1076
  name: String,
1079
1077
  parent: String,
@@ -1081,7 +1079,6 @@ module OnebusawaySDK
1081
1079
  static_route_ids: T::Array[String],
1082
1080
  code: String,
1083
1081
  direction: String,
1084
- location_type: Integer,
1085
1082
  wheelchair_boarding: String
1086
1083
  }
1087
1084
  )
@@ -200,6 +200,9 @@ module OnebusawaySDK
200
200
  sig { returns(Float) }
201
201
  attr_accessor :lat
202
202
 
203
+ sig { returns(Integer) }
204
+ attr_accessor :location_type
205
+
203
206
  sig { returns(Float) }
204
207
  attr_accessor :lon
205
208
 
@@ -227,12 +230,6 @@ module OnebusawaySDK
227
230
  sig { params(direction: String).void }
228
231
  attr_writer :direction
229
232
 
230
- sig { returns(T.nilable(Integer)) }
231
- attr_reader :location_type
232
-
233
- sig { params(location_type: Integer).void }
234
- attr_writer :location_type
235
-
236
233
  sig { returns(T.nilable(String)) }
237
234
  attr_reader :wheelchair_boarding
238
235
 
@@ -243,6 +240,7 @@ module OnebusawaySDK
243
240
  params(
244
241
  id: String,
245
242
  lat: Float,
243
+ location_type: Integer,
246
244
  lon: Float,
247
245
  name: String,
248
246
  parent: String,
@@ -250,13 +248,13 @@ module OnebusawaySDK
250
248
  static_route_ids: T::Array[String],
251
249
  code: String,
252
250
  direction: String,
253
- location_type: Integer,
254
251
  wheelchair_boarding: String
255
252
  ).returns(T.attached_class)
256
253
  end
257
254
  def self.new(
258
255
  id:,
259
256
  lat:,
257
+ location_type:,
260
258
  lon:,
261
259
  name:,
262
260
  parent:,
@@ -264,7 +262,6 @@ module OnebusawaySDK
264
262
  static_route_ids:,
265
263
  code: nil,
266
264
  direction: nil,
267
- location_type: nil,
268
265
  wheelchair_boarding: nil
269
266
  )
270
267
  end
@@ -274,6 +271,7 @@ module OnebusawaySDK
274
271
  {
275
272
  id: String,
276
273
  lat: Float,
274
+ location_type: Integer,
277
275
  lon: Float,
278
276
  name: String,
279
277
  parent: String,
@@ -281,7 +279,6 @@ module OnebusawaySDK
281
279
  static_route_ids: T::Array[String],
282
280
  code: String,
283
281
  direction: String,
284
- location_type: Integer,
285
282
  wheelchair_boarding: String
286
283
  }
287
284
  )
@@ -116,6 +116,9 @@ module OnebusawaySDK
116
116
  sig { returns(Float) }
117
117
  attr_accessor :lat
118
118
 
119
+ sig { returns(Integer) }
120
+ attr_accessor :location_type
121
+
119
122
  sig { returns(Float) }
120
123
  attr_accessor :lon
121
124
 
@@ -143,12 +146,6 @@ module OnebusawaySDK
143
146
  sig { params(direction: String).void }
144
147
  attr_writer :direction
145
148
 
146
- sig { returns(T.nilable(Integer)) }
147
- attr_reader :location_type
148
-
149
- sig { params(location_type: Integer).void }
150
- attr_writer :location_type
151
-
152
149
  sig { returns(T.nilable(String)) }
153
150
  attr_reader :wheelchair_boarding
154
151
 
@@ -159,6 +156,7 @@ module OnebusawaySDK
159
156
  params(
160
157
  id: String,
161
158
  lat: Float,
159
+ location_type: Integer,
162
160
  lon: Float,
163
161
  name: String,
164
162
  parent: String,
@@ -166,13 +164,13 @@ module OnebusawaySDK
166
164
  static_route_ids: T::Array[String],
167
165
  code: String,
168
166
  direction: String,
169
- location_type: Integer,
170
167
  wheelchair_boarding: String
171
168
  ).returns(T.attached_class)
172
169
  end
173
170
  def self.new(
174
171
  id:,
175
172
  lat:,
173
+ location_type:,
176
174
  lon:,
177
175
  name:,
178
176
  parent:,
@@ -180,7 +178,6 @@ module OnebusawaySDK
180
178
  static_route_ids:,
181
179
  code: nil,
182
180
  direction: nil,
183
- location_type: nil,
184
181
  wheelchair_boarding: nil
185
182
  )
186
183
  end
@@ -190,6 +187,7 @@ module OnebusawaySDK
190
187
  {
191
188
  id: String,
192
189
  lat: Float,
190
+ location_type: Integer,
193
191
  lon: Float,
194
192
  name: String,
195
193
  parent: String,
@@ -197,7 +195,6 @@ module OnebusawaySDK
197
195
  static_route_ids: T::Array[String],
198
196
  code: String,
199
197
  direction: String,
200
- location_type: Integer,
201
198
  wheelchair_boarding: String
202
199
  }
203
200
  )
@@ -101,6 +101,9 @@ module OnebusawaySDK
101
101
  sig { returns(Float) }
102
102
  attr_accessor :lat
103
103
 
104
+ sig { returns(Integer) }
105
+ attr_accessor :location_type
106
+
104
107
  sig { returns(Float) }
105
108
  attr_accessor :lon
106
109
 
@@ -128,12 +131,6 @@ module OnebusawaySDK
128
131
  sig { params(direction: String).void }
129
132
  attr_writer :direction
130
133
 
131
- sig { returns(T.nilable(Integer)) }
132
- attr_reader :location_type
133
-
134
- sig { params(location_type: Integer).void }
135
- attr_writer :location_type
136
-
137
134
  sig { returns(T.nilable(String)) }
138
135
  attr_reader :wheelchair_boarding
139
136
 
@@ -144,6 +141,7 @@ module OnebusawaySDK
144
141
  params(
145
142
  id: String,
146
143
  lat: Float,
144
+ location_type: Integer,
147
145
  lon: Float,
148
146
  name: String,
149
147
  parent: String,
@@ -151,13 +149,13 @@ module OnebusawaySDK
151
149
  static_route_ids: T::Array[String],
152
150
  code: String,
153
151
  direction: String,
154
- location_type: Integer,
155
152
  wheelchair_boarding: String
156
153
  ).returns(T.attached_class)
157
154
  end
158
155
  def self.new(
159
156
  id:,
160
157
  lat:,
158
+ location_type:,
161
159
  lon:,
162
160
  name:,
163
161
  parent:,
@@ -165,7 +163,6 @@ module OnebusawaySDK
165
163
  static_route_ids:,
166
164
  code: nil,
167
165
  direction: nil,
168
- location_type: nil,
169
166
  wheelchair_boarding: nil
170
167
  )
171
168
  end
@@ -175,6 +172,7 @@ module OnebusawaySDK
175
172
  {
176
173
  id: String,
177
174
  lat: Float,
175
+ location_type: Integer,
178
176
  lon: Float,
179
177
  name: String,
180
178
  parent: String,
@@ -182,7 +180,6 @@ module OnebusawaySDK
182
180
  static_route_ids: T::Array[String],
183
181
  code: String,
184
182
  direction: String,
185
- location_type: Integer,
186
183
  wheelchair_boarding: String
187
184
  }
188
185
  )
@@ -76,6 +76,9 @@ module OnebusawaySDK
76
76
  sig { returns(Float) }
77
77
  attr_accessor :lat
78
78
 
79
+ sig { returns(Integer) }
80
+ attr_accessor :location_type
81
+
79
82
  sig { returns(Float) }
80
83
  attr_accessor :lon
81
84
 
@@ -103,12 +106,6 @@ module OnebusawaySDK
103
106
  sig { params(direction: String).void }
104
107
  attr_writer :direction
105
108
 
106
- sig { returns(T.nilable(Integer)) }
107
- attr_reader :location_type
108
-
109
- sig { params(location_type: Integer).void }
110
- attr_writer :location_type
111
-
112
109
  sig { returns(T.nilable(String)) }
113
110
  attr_reader :wheelchair_boarding
114
111
 
@@ -119,6 +116,7 @@ module OnebusawaySDK
119
116
  params(
120
117
  id: String,
121
118
  lat: Float,
119
+ location_type: Integer,
122
120
  lon: Float,
123
121
  name: String,
124
122
  parent: String,
@@ -126,13 +124,13 @@ module OnebusawaySDK
126
124
  static_route_ids: T::Array[String],
127
125
  code: String,
128
126
  direction: String,
129
- location_type: Integer,
130
127
  wheelchair_boarding: String
131
128
  ).returns(T.attached_class)
132
129
  end
133
130
  def self.new(
134
131
  id:,
135
132
  lat:,
133
+ location_type:,
136
134
  lon:,
137
135
  name:,
138
136
  parent:,
@@ -140,7 +138,6 @@ module OnebusawaySDK
140
138
  static_route_ids:,
141
139
  code: nil,
142
140
  direction: nil,
143
- location_type: nil,
144
141
  wheelchair_boarding: nil
145
142
  )
146
143
  end
@@ -150,6 +147,7 @@ module OnebusawaySDK
150
147
  {
151
148
  id: String,
152
149
  lat: Float,
150
+ location_type: Integer,
153
151
  lon: Float,
154
152
  name: String,
155
153
  parent: String,
@@ -157,7 +155,6 @@ module OnebusawaySDK
157
155
  static_route_ids: T::Array[String],
158
156
  code: String,
159
157
  direction: String,
160
- location_type: Integer,
161
158
  wheelchair_boarding: String
162
159
  }
163
160
  )
@@ -117,6 +117,9 @@ module OnebusawaySDK
117
117
  sig { returns(Float) }
118
118
  attr_accessor :lat
119
119
 
120
+ sig { returns(Integer) }
121
+ attr_accessor :location_type
122
+
120
123
  sig { returns(Float) }
121
124
  attr_accessor :lon
122
125
 
@@ -144,12 +147,6 @@ module OnebusawaySDK
144
147
  sig { params(direction: String).void }
145
148
  attr_writer :direction
146
149
 
147
- sig { returns(T.nilable(Integer)) }
148
- attr_reader :location_type
149
-
150
- sig { params(location_type: Integer).void }
151
- attr_writer :location_type
152
-
153
150
  sig { returns(T.nilable(String)) }
154
151
  attr_reader :wheelchair_boarding
155
152
 
@@ -160,6 +157,7 @@ module OnebusawaySDK
160
157
  params(
161
158
  id: String,
162
159
  lat: Float,
160
+ location_type: Integer,
163
161
  lon: Float,
164
162
  name: String,
165
163
  parent: String,
@@ -167,13 +165,13 @@ module OnebusawaySDK
167
165
  static_route_ids: T::Array[String],
168
166
  code: String,
169
167
  direction: String,
170
- location_type: Integer,
171
168
  wheelchair_boarding: String
172
169
  ).returns(T.attached_class)
173
170
  end
174
171
  def self.new(
175
172
  id:,
176
173
  lat:,
174
+ location_type:,
177
175
  lon:,
178
176
  name:,
179
177
  parent:,
@@ -181,7 +179,6 @@ module OnebusawaySDK
181
179
  static_route_ids:,
182
180
  code: nil,
183
181
  direction: nil,
184
- location_type: nil,
185
182
  wheelchair_boarding: nil
186
183
  )
187
184
  end
@@ -191,6 +188,7 @@ module OnebusawaySDK
191
188
  {
192
189
  id: String,
193
190
  lat: Float,
191
+ location_type: Integer,
194
192
  lon: Float,
195
193
  name: String,
196
194
  parent: String,
@@ -198,7 +196,6 @@ module OnebusawaySDK
198
196
  static_route_ids: T::Array[String],
199
197
  code: String,
200
198
  direction: String,
201
- location_type: Integer,
202
199
  wheelchair_boarding: String
203
200
  }
204
201
  )
@@ -452,6 +452,7 @@ module OnebusawaySDK
452
452
  {
453
453
  id: String,
454
454
  lat: Float,
455
+ location_type: Integer,
455
456
  lon: Float,
456
457
  name: String,
457
458
  parent: String,
@@ -459,7 +460,6 @@ module OnebusawaySDK
459
460
  static_route_ids: ::Array[String],
460
461
  code: String,
461
462
  direction: String,
462
- location_type: Integer,
463
463
  wheelchair_boarding: String
464
464
  }
465
465
 
@@ -468,6 +468,8 @@ module OnebusawaySDK
468
468
 
469
469
  attr_accessor lat: Float
470
470
 
471
+ attr_accessor location_type: Integer
472
+
471
473
  attr_accessor lon: Float
472
474
 
473
475
  attr_accessor name: String
@@ -486,10 +488,6 @@ module OnebusawaySDK
486
488
 
487
489
  def direction=: (String) -> String
488
490
 
489
- attr_reader location_type: Integer?
490
-
491
- def location_type=: (Integer) -> Integer
492
-
493
491
  attr_reader wheelchair_boarding: String?
494
492
 
495
493
  def wheelchair_boarding=: (String) -> String
@@ -497,6 +495,7 @@ module OnebusawaySDK
497
495
  def initialize: (
498
496
  id: String,
499
497
  lat: Float,
498
+ location_type: Integer,
500
499
  lon: Float,
501
500
  name: String,
502
501
  parent: String,
@@ -504,7 +503,6 @@ module OnebusawaySDK
504
503
  static_route_ids: ::Array[String],
505
504
  ?code: String,
506
505
  ?direction: String,
507
- ?location_type: Integer,
508
506
  ?wheelchair_boarding: String
509
507
  ) -> void
510
508
  end
@@ -62,6 +62,7 @@ module OnebusawaySDK
62
62
  {
63
63
  id: String,
64
64
  lat: Float,
65
+ location_type: Integer,
65
66
  lon: Float,
66
67
  name: String,
67
68
  parent: String,
@@ -69,7 +70,6 @@ module OnebusawaySDK
69
70
  static_route_ids: ::Array[String],
70
71
  code: String,
71
72
  direction: String,
72
- location_type: Integer,
73
73
  wheelchair_boarding: String
74
74
  }
75
75
 
@@ -78,6 +78,8 @@ module OnebusawaySDK
78
78
 
79
79
  attr_accessor lat: Float
80
80
 
81
+ attr_accessor location_type: Integer
82
+
81
83
  attr_accessor lon: Float
82
84
 
83
85
  attr_accessor name: String
@@ -96,10 +98,6 @@ module OnebusawaySDK
96
98
 
97
99
  def direction=: (String) -> String
98
100
 
99
- attr_reader location_type: Integer?
100
-
101
- def location_type=: (Integer) -> Integer
102
-
103
101
  attr_reader wheelchair_boarding: String?
104
102
 
105
103
  def wheelchair_boarding=: (String) -> String
@@ -107,6 +105,7 @@ module OnebusawaySDK
107
105
  def initialize: (
108
106
  id: String,
109
107
  lat: Float,
108
+ location_type: Integer,
110
109
  lon: Float,
111
110
  name: String,
112
111
  parent: String,
@@ -114,7 +113,6 @@ module OnebusawaySDK
114
113
  static_route_ids: ::Array[String],
115
114
  ?code: String,
116
115
  ?direction: String,
117
- ?location_type: Integer,
118
116
  ?wheelchair_boarding: String
119
117
  ) -> void
120
118
  end
@@ -42,6 +42,7 @@ module OnebusawaySDK
42
42
  {
43
43
  id: String,
44
44
  lat: Float,
45
+ location_type: Integer,
45
46
  lon: Float,
46
47
  name: String,
47
48
  parent: String,
@@ -49,7 +50,6 @@ module OnebusawaySDK
49
50
  static_route_ids: ::Array[String],
50
51
  code: String,
51
52
  direction: String,
52
- location_type: Integer,
53
53
  wheelchair_boarding: String
54
54
  }
55
55
 
@@ -58,6 +58,8 @@ module OnebusawaySDK
58
58
 
59
59
  attr_accessor lat: Float
60
60
 
61
+ attr_accessor location_type: Integer
62
+
61
63
  attr_accessor lon: Float
62
64
 
63
65
  attr_accessor name: String
@@ -76,10 +78,6 @@ module OnebusawaySDK
76
78
 
77
79
  def direction=: (String) -> String
78
80
 
79
- attr_reader location_type: Integer?
80
-
81
- def location_type=: (Integer) -> Integer
82
-
83
81
  attr_reader wheelchair_boarding: String?
84
82
 
85
83
  def wheelchair_boarding=: (String) -> String
@@ -87,6 +85,7 @@ module OnebusawaySDK
87
85
  def initialize: (
88
86
  id: String,
89
87
  lat: Float,
88
+ location_type: Integer,
90
89
  lon: Float,
91
90
  name: String,
92
91
  parent: String,
@@ -94,7 +93,6 @@ module OnebusawaySDK
94
93
  static_route_ids: ::Array[String],
95
94
  ?code: String,
96
95
  ?direction: String,
97
- ?location_type: Integer,
98
96
  ?wheelchair_boarding: String
99
97
  ) -> void
100
98
  end
@@ -34,6 +34,7 @@ module OnebusawaySDK
34
34
  {
35
35
  id: String,
36
36
  lat: Float,
37
+ location_type: Integer,
37
38
  lon: Float,
38
39
  name: String,
39
40
  parent: String,
@@ -41,7 +42,6 @@ module OnebusawaySDK
41
42
  static_route_ids: ::Array[String],
42
43
  code: String,
43
44
  direction: String,
44
- location_type: Integer,
45
45
  wheelchair_boarding: String
46
46
  }
47
47
 
@@ -50,6 +50,8 @@ module OnebusawaySDK
50
50
 
51
51
  attr_accessor lat: Float
52
52
 
53
+ attr_accessor location_type: Integer
54
+
53
55
  attr_accessor lon: Float
54
56
 
55
57
  attr_accessor name: String
@@ -68,10 +70,6 @@ module OnebusawaySDK
68
70
 
69
71
  def direction=: (String) -> String
70
72
 
71
- attr_reader location_type: Integer?
72
-
73
- def location_type=: (Integer) -> Integer
74
-
75
73
  attr_reader wheelchair_boarding: String?
76
74
 
77
75
  def wheelchair_boarding=: (String) -> String
@@ -79,6 +77,7 @@ module OnebusawaySDK
79
77
  def initialize: (
80
78
  id: String,
81
79
  lat: Float,
80
+ location_type: Integer,
82
81
  lon: Float,
83
82
  name: String,
84
83
  parent: String,
@@ -86,7 +85,6 @@ module OnebusawaySDK
86
85
  static_route_ids: ::Array[String],
87
86
  ?code: String,
88
87
  ?direction: String,
89
- ?location_type: Integer,
90
88
  ?wheelchair_boarding: String
91
89
  ) -> void
92
90
  end
@@ -40,6 +40,7 @@ module OnebusawaySDK
40
40
  {
41
41
  id: String,
42
42
  lat: Float,
43
+ location_type: Integer,
43
44
  lon: Float,
44
45
  name: String,
45
46
  parent: String,
@@ -47,7 +48,6 @@ module OnebusawaySDK
47
48
  static_route_ids: ::Array[String],
48
49
  code: String,
49
50
  direction: String,
50
- location_type: Integer,
51
51
  wheelchair_boarding: String
52
52
  }
53
53
 
@@ -56,6 +56,8 @@ module OnebusawaySDK
56
56
 
57
57
  attr_accessor lat: Float
58
58
 
59
+ attr_accessor location_type: Integer
60
+
59
61
  attr_accessor lon: Float
60
62
 
61
63
  attr_accessor name: String
@@ -74,10 +76,6 @@ module OnebusawaySDK
74
76
 
75
77
  def direction=: (String) -> String
76
78
 
77
- attr_reader location_type: Integer?
78
-
79
- def location_type=: (Integer) -> Integer
80
-
81
79
  attr_reader wheelchair_boarding: String?
82
80
 
83
81
  def wheelchair_boarding=: (String) -> String
@@ -85,6 +83,7 @@ module OnebusawaySDK
85
83
  def initialize: (
86
84
  id: String,
87
85
  lat: Float,
86
+ location_type: Integer,
88
87
  lon: Float,
89
88
  name: String,
90
89
  parent: String,
@@ -92,7 +91,6 @@ module OnebusawaySDK
92
91
  static_route_ids: ::Array[String],
93
92
  ?code: String,
94
93
  ?direction: String,
95
- ?location_type: Integer,
96
94
  ?wheelchair_boarding: String
97
95
  ) -> void
98
96
  end
@@ -44,6 +44,7 @@ module OnebusawaySDK
44
44
  {
45
45
  id: String,
46
46
  lat: Float,
47
+ location_type: Integer,
47
48
  lon: Float,
48
49
  name: String,
49
50
  parent: String,
@@ -51,7 +52,6 @@ module OnebusawaySDK
51
52
  static_route_ids: ::Array[String],
52
53
  code: String,
53
54
  direction: String,
54
- location_type: Integer,
55
55
  wheelchair_boarding: String
56
56
  }
57
57
 
@@ -60,6 +60,8 @@ module OnebusawaySDK
60
60
 
61
61
  attr_accessor lat: Float
62
62
 
63
+ attr_accessor location_type: Integer
64
+
63
65
  attr_accessor lon: Float
64
66
 
65
67
  attr_accessor name: String
@@ -78,10 +80,6 @@ module OnebusawaySDK
78
80
 
79
81
  def direction=: (String) -> String
80
82
 
81
- attr_reader location_type: Integer?
82
-
83
- def location_type=: (Integer) -> Integer
84
-
85
83
  attr_reader wheelchair_boarding: String?
86
84
 
87
85
  def wheelchair_boarding=: (String) -> String
@@ -89,6 +87,7 @@ module OnebusawaySDK
89
87
  def initialize: (
90
88
  id: String,
91
89
  lat: Float,
90
+ location_type: Integer,
92
91
  lon: Float,
93
92
  name: String,
94
93
  parent: String,
@@ -96,7 +95,6 @@ module OnebusawaySDK
96
95
  static_route_ids: ::Array[String],
97
96
  ?code: String,
98
97
  ?direction: String,
99
- ?location_type: Integer,
100
98
  ?wheelchair_boarding: String
101
99
  ) -> void
102
100
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onebusaway-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.208
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Onebusaway SDK
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-15 00:00:00.000000000 Z
11
+ date: 2025-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -375,9 +375,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
375
375
  version: 3.2.0
376
376
  required_rubygems_version: !ruby/object:Gem::Requirement
377
377
  requirements:
378
- - - ">"
378
+ - - ">="
379
379
  - !ruby/object:Gem::Version
380
- version: 1.3.1
380
+ version: '0'
381
381
  requirements: []
382
382
  rubygems_version: 3.4.1
383
383
  signing_key: