-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinat-get.gemspec
33 lines (26 loc) · 1.01 KB
/
inat-get.gemspec
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
# frozen_string_literal: true
require_relative 'lib/inat/app/info'
Gem::Specification.new do |spec|
spec.name = "inat-get"
spec.version = INat::App::Info::VERSION
spec.authors = [ INat::App::Info::AUTHOR ]
spec.email = [ INat::App::Info::EMAIL ]
spec.summary = "Client for iNaturalist API."
# spec.description = "TODO: Write a longer description or delete this line."
spec.homepage = INat::App::Info::HOMEPAGE
spec.license = "GPL-3.0-or-later"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = INat::App::Info::SOURCE_URL
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) ||
f.start_with?(*%w[test/ spec/ features/ samples/ .git .circleci appveyor Gemfile])
end
end
spec.bindir = "bin"
spec.executables = [ 'inat-get' ]
spec.require_paths = [ "lib" ]
spec.add_dependency "sqlite3", "~> 1.6.6"
spec.add_dependency "tzinfo", "~> 2.0.6"
end