Sha256: 24a276ac0f79c9a216a38ea184aa5d68331f3cc96596d6c7c3fdde827a012530
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
# 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
inat-get-0.8.0.15 | inat-get.gemspec |
inat-get-0.8.0.14 | inat-get.gemspec |
inat-get-0.8.0.13 | inat-get.gemspec |