distancefyi 0.1.0

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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/distancefyi.rb +62 -0
  3. metadata +47 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f9becf2728a964de68fb053a8a2addd6c703e8d703c74a34f6b0264ce5d5e5ff
4
+ data.tar.gz: 06dc021b195ccb569f819c9cef3c210bfa33e41d4a7f34a5c166d6c5010bd6d3
5
+ SHA512:
6
+ metadata.gz: 4f8527579117dc00ad91d5dcb859f26d98d53e147a7eb56ea3f75e00f23bd167af7f29d487a11882558e39c5c122dea15c0f2aef5f44dddd0c7e6d58566b746f
7
+ data.tar.gz: 74a65b3b1bd3f6fc293f05edc423c53ce6567bda14b11fbcbe9a0530e9cf31b74d36cbc4a095246788fe3946cf514f3cbb5ce327ca77154cf8dec4fa018ff35c
@@ -0,0 +1,62 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "net/http"
4
+ require "json"
5
+ require "uri"
6
+
7
+ # Ruby client for DistanceFYI REST API (distancefyi.com).
8
+ #
9
+ # client = DistanceFYI::Client.new
10
+ # result = client.search("query")
11
+ #
12
+ module DistanceFYI
13
+ class Client
14
+ BASE_URL = "https://distancefyi.com"
15
+
16
+ def initialize(base_url: BASE_URL)
17
+ @base_url = base_url
18
+ end
19
+
20
+ def search(query)
21
+ get("/api/v1/search/", q: query)
22
+ end
23
+
24
+ # List all cities.
25
+ def list_cities
26
+ get("/api/v1/cities/")
27
+ end
28
+
29
+ # Get city by slug.
30
+ def get_city(slug)
31
+ get("/api/v1/cities/#{slug}/")
32
+ end
33
+ # List all countries.
34
+ def list_countries
35
+ get("/api/v1/countries/")
36
+ end
37
+
38
+ # Get country by slug.
39
+ def get_country(slug)
40
+ get("/api/v1/countries/#{slug}/")
41
+ end
42
+ # List all faqs.
43
+ def list_faqs
44
+ get("/api/v1/faqs/")
45
+ end
46
+
47
+ # Get faq by slug.
48
+ def get_faq(slug)
49
+ get("/api/v1/faqs/#{slug}/")
50
+ end
51
+
52
+ private
53
+
54
+ def get(path, **params)
55
+ uri = URI.join(@base_url, path)
56
+ uri.query = URI.encode_www_form(params) unless params.empty?
57
+ response = Net::HTTP.get_response(uri)
58
+ raise "HTTP #{response.code}" unless response.is_a?(Net::HTTPSuccess)
59
+ JSON.parse(response.body)
60
+ end
61
+ end
62
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: distancefyi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - FYIPedia
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-03-21 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Ruby client for the DistanceFYI REST API at distancefyi.com. Zero external
14
+ dependencies.
15
+ email: dev@fyipedia.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/distancefyi.rb
21
+ homepage: https://distancefyi.com
22
+ licenses:
23
+ - MIT
24
+ metadata:
25
+ source_code_uri: https://github.com/fyipedia/distancefyi-rb
26
+ documentation_uri: https://distancefyi.com/api/v1/schema/
27
+ homepage_uri: https://distancefyi.com
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.0.3.1
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Ruby client for DistanceFYI API
47
+ test_files: []