-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvehiclesdb.gemspec
More file actions
34 lines (28 loc) · 1.69 KB
/
Copy pathvehiclesdb.gemspec
File metadata and controls
34 lines (28 loc) · 1.69 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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "vehiclesdb"
# Tracks the `vehicles` minor it aliases (no version.rb — the alias is two
# files; the constant VehiclesDB is Vehicles itself, so a nested VERSION
# would collide with the real one).
spec.version = "0.6.1"
spec.authors = ["rameerez"]
spec.email = ["rubygems@rameerez.com"]
spec.summary = "Official alias of the `vehicles` gem — the VehiclesDB open vehicle dataset for Ruby."
spec.description = "vehiclesdb is a thin, official alias of the `vehicles` gem: the VehiclesDB open " \
"dataset (~17k vehicle models across cars, motorcycles, mopeds, vans, trucks and " \
"buses, from official registers of 14 countries) with Rails-friendly lookups, " \
"dropdown helpers, validators, popularity/availability data, and a bundled MCP " \
"server. Installing this gem installs `vehicles` and exposes the same API under " \
"the VehiclesDB constant. If in doubt, depend on `vehicles` directly."
spec.homepage = "https://github.com/vehiclesdb/vehiclesdb-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "#{spec.homepage}/tree/main"
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = ["lib/vehiclesdb.rb", "README.md", "LICENSE.txt", "CHANGELOG.md"]
spec.require_paths = ["lib"]
spec.add_dependency "vehicles", "~> 0.6", ">= 0.6.1"
end