Sha256: 66bf6173b4ef9702b3afcb2541d5bde2b03d8126e37e106c13926048fa0f4c74

Contents?: true

Size: 792 Bytes

Versions: 1

Compression:

Stored size: 792 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "airports/version"

Gem::Specification.new do |spec|
  spec.name = "airports"
  spec.version = Airports::VERSION
  spec.authors = ["Tim Rogers"]
  spec.email = ["me@timrogers.co.uk"]

  spec.summary = "Access data on airports from around the world"
  spec.description = "Access data on airports from around the world"
  spec.homepage = "https://github.com/timrogers/airports"
  spec.license = "MIT"

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">= 2.6"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
airports-1.7.0 airports.gemspec