Sha256: fa06b57dc28c9be9f2c7be781fc763355358a44869f711029955f97734db74de
Contents?: true
Size: 989 Bytes
Versions: 2
Compression:
Stored size: 989 Bytes
Contents
# frozen_string_literal: true require_relative 'lib/inat/app/info' Gem::Specification.new do |spec| spec.name = "inat-get" spec.version = AppInfo::VERSION spec.authors = [ AppInfo::AUTHOR ] spec.email = [ AppInfo::EMAIL ] spec.summary = "Client for iNaturalist API." # spec.description = "TODO: Write a longer description or delete this line." spec.homepage = AppInfo::HOMEPAGE spec.license = "GPL-3.0" spec.required_ruby_version = ">= 3.1.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = AppInfo::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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
inat-get-0.8.0.12 | inat-get.gemspec |
inat-get-0.8.0.11 | inat-get.gemspec |