gemfyi 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.
- checksums.yaml +7 -0
- data/lib/gemfyi.rb +116 -0
- metadata +46 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 61a2bbadbec35e788adef212ac5cf85f6bb33ea1bf622e90935f0030493c5757
|
|
4
|
+
data.tar.gz: 24de81983b01eb40279bf4b30a31745abeaeacd59d674ade3dca71cb821c1cb5
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 6755ba4a4f1bd48e85eb68a9415a89dc97fc75befb312d2865ae4bc2121737f1c8155eb181183053d7854820389920a2c74d71bd7103b40b0dfd0d57f6968420
|
|
7
|
+
data.tar.gz: 5ba878257004c24bc229732ca04f6053a30057f238acecd1e43600cf6fa45996b15459d94e169c17aec64b8685ac6b855f30ef6d26ebf5cf2e44a2ed700ea023
|
data/lib/gemfyi.rb
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "net/http"
|
|
4
|
+
require "json"
|
|
5
|
+
require "uri"
|
|
6
|
+
|
|
7
|
+
# Ruby client for GemFYI REST API (gemfyi.com).
|
|
8
|
+
#
|
|
9
|
+
# client = GemFYI::Client.new
|
|
10
|
+
# result = client.search("query")
|
|
11
|
+
#
|
|
12
|
+
module GemFYI
|
|
13
|
+
class Client
|
|
14
|
+
BASE_URL = "https://gemfyi.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 categories.
|
|
25
|
+
def list_categories
|
|
26
|
+
get("/api/v1/categories/")
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# Get category by slug.
|
|
30
|
+
def get_category(slug)
|
|
31
|
+
get("/api/v1/categories/#{slug}/")
|
|
32
|
+
end
|
|
33
|
+
# List all comparisons.
|
|
34
|
+
def list_comparisons
|
|
35
|
+
get("/api/v1/comparisons/")
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Get comparison by slug.
|
|
39
|
+
def get_comparison(slug)
|
|
40
|
+
get("/api/v1/comparisons/#{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
|
+
# List all gems.
|
|
52
|
+
def list_gems
|
|
53
|
+
get("/api/v1/gems/")
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Get gem by slug.
|
|
57
|
+
def get_gem(slug)
|
|
58
|
+
get("/api/v1/gems/#{slug}/")
|
|
59
|
+
end
|
|
60
|
+
# List all glossary.
|
|
61
|
+
def list_glossary
|
|
62
|
+
get("/api/v1/glossary/")
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# Get term by slug.
|
|
66
|
+
def get_term(slug)
|
|
67
|
+
get("/api/v1/glossary/#{slug}/")
|
|
68
|
+
end
|
|
69
|
+
# List all glossary categories.
|
|
70
|
+
def list_glossary_categories
|
|
71
|
+
get("/api/v1/glossary-categories/")
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# Get glossary category by slug.
|
|
75
|
+
def get_glossary_category(slug)
|
|
76
|
+
get("/api/v1/glossary-categories/#{slug}/")
|
|
77
|
+
end
|
|
78
|
+
# List all guide series.
|
|
79
|
+
def list_guide_series
|
|
80
|
+
get("/api/v1/guide-series/")
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# Get guide sery by slug.
|
|
84
|
+
def get_guide_sery(slug)
|
|
85
|
+
get("/api/v1/guide-series/#{slug}/")
|
|
86
|
+
end
|
|
87
|
+
# List all guides.
|
|
88
|
+
def list_guides
|
|
89
|
+
get("/api/v1/guides/")
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# Get guide by slug.
|
|
93
|
+
def get_guide(slug)
|
|
94
|
+
get("/api/v1/guides/#{slug}/")
|
|
95
|
+
end
|
|
96
|
+
# List all origins.
|
|
97
|
+
def list_origins
|
|
98
|
+
get("/api/v1/origins/")
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Get origin by slug.
|
|
102
|
+
def get_origin(slug)
|
|
103
|
+
get("/api/v1/origins/#{slug}/")
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
private
|
|
107
|
+
|
|
108
|
+
def get(path, **params)
|
|
109
|
+
uri = URI.join(@base_url, path)
|
|
110
|
+
uri.query = URI.encode_www_form(params) unless params.empty?
|
|
111
|
+
response = Net::HTTP.get_response(uri)
|
|
112
|
+
raise "HTTP #{response.code}" unless response.is_a?(Net::HTTPSuccess)
|
|
113
|
+
JSON.parse(response.body)
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gemfyi
|
|
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 GemFYI REST API at gemfyi.com. Zero external dependencies.
|
|
14
|
+
email: dev@fyipedia.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/gemfyi.rb
|
|
20
|
+
homepage: https://gemfyi.com
|
|
21
|
+
licenses:
|
|
22
|
+
- MIT
|
|
23
|
+
metadata:
|
|
24
|
+
source_code_uri: https://github.com/fyipedia/gemfyi-rb
|
|
25
|
+
documentation_uri: https://gemfyi.com/api/v1/schema/
|
|
26
|
+
homepage_uri: https://gemfyi.com
|
|
27
|
+
post_install_message:
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '3.0'
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubygems_version: 3.0.3.1
|
|
43
|
+
signing_key:
|
|
44
|
+
specification_version: 4
|
|
45
|
+
summary: Ruby client for GemFYI API
|
|
46
|
+
test_files: []
|