-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvision_api.gemspec
More file actions
37 lines (31 loc) · 1.48 KB
/
Copy pathvision_api.gemspec
File metadata and controls
37 lines (31 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
require_relative "lib/vision_api/version"
Gem::Specification.new do |spec|
spec.name = "vision_api"
spec.version = VisionAPI::VERSION
spec.authors = ["Vision API"]
spec.email = ["support@visionapi.io"]
spec.summary = "Official Ruby client for the Vision API — OCR and visual intelligence."
spec.description = <<~TEXT
Send an image or a PDF, describe the fields you want in plain language, and get
structured JSON back with a confidence level on every value. Presets for invoices,
receipts, IDs and 25 more; custom schemas; visual Q&A; async tasks and signed webhooks.
TEXT
spec.homepage = "https://visionapi.io"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata = {
"homepage_uri" => "https://visionapi.io",
"documentation_uri" => "https://docs.visionapi.io",
"source_code_uri" => "https://github.com/devrobotlabs/visionapi-ruby",
"bug_tracker_uri" => "https://github.com/devrobotlabs/visionapi-ruby/issues",
"changelog_uri" => "https://github.com/devrobotlabs/visionapi-ruby/blob/main/CHANGELOG.md",
"rubygems_mfa_required" => "true"
}
spec.files = Dir["lib/**/*.rb", "README.md", "CHANGELOG.md", "LICENSE"]
spec.require_paths = ["lib"]
# No runtime dependencies: net/http, json and openssl are all standard library.
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rubocop", "~> 1.60"
end