forked from platanus/chilean_cities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chilean_cities.gemspec
29 lines (24 loc) · 1.13 KB
/
chilean_cities.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "chilean_cities/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |gem|
gem.name = "chilean_cities"
gem.version = ChileanCities::VERSION
gem.authors = ["Gonzalo Bulnes Guilpain"]
gem.email = ["[email protected]"]
gem.description = %q{A ruby implementation of the Chilean 'comunas'.}
gem.summary = %q{Provides a Ruby representation of the Chilean 'comunas'
as described by the Subsecretaría de Desarrollo Regional
y Administrativo.}
gem.homepage = "https://github.com/gonzalo-bulnes/chilean_cities"
gem.license = "GPLv3"
gem.files = Dir["{doc,lib}/**/*", "Gemfile", "LICENSE.txt", "Rakefile", "README.md"]
gem.test_files = Dir["spec/**/*"]
gem.add_dependency "activemodel", ">= 3.2.11"
gem.add_dependency "rake"
gem.add_dependency "multi_json", "~> 1.0"
gem.add_development_dependency "rspec", "~> 3.0"
gem.add_development_dependency "inch", "~> 0.4.6"
gem.add_development_dependency "factory_bot"
end