-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy patharea.gemspec
More file actions
20 lines (18 loc) · 751 Bytes
/
area.gemspec
File metadata and controls
20 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/area/version', __FILE__)
Gem::Specification.new do |s|
s.name = "area"
s.version = Area::VERSION
s.author = "Jonathan Vingiano"
s.email = "jgv@jonathanvingiano.com"
s.homepage = "http://github.com/jgv/area"
s.rubyforge_project = "area"
s.summary = "Convert a region to area code and vice versa."
s.description = "Area allows you to perform a variety of conversions between places in the United States and area codes or zip codes."
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.add_dependency 'fastercsv', '~> 1.5'
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler'
s.add_development_dependency 'minitest'
end