google_distance_matrix 0.6.5 → 0.6.6

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: 19d33e843a74e3d6f5c335182c92c2937c40dc616162486fe516ee4516ef540a
4
- data.tar.gz: 3a88825149042aa2985d1e9eb0a950c7c2bb0150248a513b1bebc6ba5c353c13
3
+ metadata.gz: 9a10d12400b1ded8f4d8803a1ba53e38fbdf2ae26687dec9c763bd5aa2327100
4
+ data.tar.gz: 81ebcd758bccc4ce98fb57221954d570ffa0be69a27e7bf101616966d2288850
5
5
  SHA512:
6
- metadata.gz: 46402654a232ed265243c342379cd0e940a4f8c020169c8aaaf7250e10d5e470f73a69f7ea5fca1b35bdac45a365cf588bcc63847543c213639cbfd44a7e989a
7
- data.tar.gz: e5ae795ff5dc36f18b0d62c6e86e002d87419116d63baeb8b0b1919b1008678f7c043be8b9bd79b72536f515ba467d3ed5315a8d90adb647acf984be99397c5b
6
+ metadata.gz: 23373a368af616c476a49caecf1235d769acb5ce3bf19f005848bbbda5d4fc31b7ae5d246a5ee4f8c2511cc3251e5dc9504aea79d234eac719ac123d86927236
7
+ data.tar.gz: 7c2bb213bcda87d85fc6c3e3e572211a99a4cf86acb3d2dddde1492f92ea34514be60eaf71fa282796ddf60171e478c5620c61b460a8aa6e38eb2c9f552f2b56
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v.0.6.6
2
+
3
+ * chore: require net/http in client.rb (#57)
4
+
1
5
  ## v.0.6.5
2
6
 
3
7
  * chore: bumped dependency support up to Rails 7 (by justisb)
data/Rakefile CHANGED
@@ -6,9 +6,6 @@ require 'rubocop/rake_task'
6
6
  RuboCop::RakeTask.new
7
7
 
8
8
  require 'rspec/core/rake_task'
9
- RSpec::Core::RakeTask.new(:spec) do |t|
10
- t.rspec_opts = ['-c', '-f progress', '-r ./spec/spec_helper.rb']
11
- t.pattern = 'spec/**/*_spec.rb'
12
- end
9
+ RSpec::Core::RakeTask.new(:spec)
13
10
 
14
11
  task default: %i[rubocop spec]
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'net/http'
4
+
3
5
  module GoogleDistanceMatrix
4
6
  # HTTP client making request to Google's API
5
7
  class Client
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoogleDistanceMatrix
4
- VERSION = '0.6.5'
4
+ VERSION = '0.6.6'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_distance_matrix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thorbjørn Hermansen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-31 00:00:00.000000000 Z
11
+ date: 2023-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -206,7 +206,7 @@ homepage: ''
206
206
  licenses:
207
207
  - MIT
208
208
  metadata: {}
209
- post_install_message:
209
+ post_install_message:
210
210
  rdoc_options: []
211
211
  require_paths:
212
212
  - lib
@@ -221,8 +221,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
221
221
  - !ruby/object:Gem::Version
222
222
  version: '0'
223
223
  requirements: []
224
- rubygems_version: 3.0.3.1
225
- signing_key:
224
+ rubygems_version: 3.4.10
225
+ signing_key:
226
226
  specification_version: 4
227
227
  summary: Ruby client for The Google Distance Matrix API
228
228
  test_files: