Sha256: de2d8c6a0023e114ed83d7f37afead8d3c55c1852d79647eee14d788254aa957

Contents?: true

Size: 1022 Bytes

Versions: 6

Compression:

Stored size: 1022 Bytes

Contents

Gem::Specification.new do |spec|
  spec.name = "us_geo"
  spec.version = File.read(File.expand_path("../VERSION", __FILE__)).strip
  spec.authors = ["Brian Durand"]
  spec.email = ["bbdurand@gmail.com"]

  spec.summary = "Collection of geographic data for the United States for use with ActiveRecord"
  spec.homepage = "https://github.com/bdurand/us_geo"
  spec.license = "MIT"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  ignore_files = %w[
    .
    Appraisals
    Gemfile
    Gemfile.lock
    Rakefile
    bin/
    gemfiles/
    spec/
    data/
    sampleapp/
  ]
  spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } }
  end

  spec.require_paths = ["lib"]

  spec.add_dependency "activerecord", ">= 5.2"

  spec.add_development_dependency "bundler"

  spec.required_ruby_version = ">= 2.6"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
us_geo-2.1.0 us_geo.gemspec
us_geo-2.0.4 us_geo.gemspec
us_geo-2.0.3 us_geo.gemspec
us_geo-2.0.2 us_geo.gemspec
us_geo-2.0.1 us_geo.gemspec
us_geo-2.0.0 us_geo.gemspec