-
Notifications
You must be signed in to change notification settings - Fork 2
/
spatial_features.gemspec
31 lines (26 loc) · 1.17 KB
/
spatial_features.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "spatial_features/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "spatial_features"
s.version = SpatialFeatures::VERSION
s.authors = ["Ryan Wallace", "Nicholas Jakobsen"]
s.email = ["contact@culturecode.ca"]
s.homepage = "https://github.com/culturecode/spatial_features"
s.summary = "Adds spatial methods to a model."
s.description = "Adds spatial methods to a model."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_runtime_dependency "rails", '>= 6', '< 8'
s.add_runtime_dependency "delayed_job_active_record", '~> 4.1'
s.add_runtime_dependency "rgeo-shapefile", '~> 3.1'
s.add_runtime_dependency "rgeo-geojson", '~> 2.1.1'
s.add_runtime_dependency "rubyzip", '>= 1.0.0'
s.add_runtime_dependency "nokogiri"
s.add_development_dependency "rails", '>= 7', '< 8'
s.add_development_dependency "pg", '~> 1'
s.add_development_dependency "rspec", '~> 3.5'
s.add_development_dependency 'pry-byebug'
end