-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathntee.gemspec
More file actions
21 lines (18 loc) · 888 Bytes
/
ntee.gemspec
File metadata and controls
21 lines (18 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ntee/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Nat Budin"]
gem.email = ["nbudin@gively.com"]
gem.description = %q{Utilities to support the Urban Institute's National Taxonomy of Exempt Entities}
gem.summary = %q{NTEE utilities for US nonprofit entity categorization}
gem.homepage = "https://github.com/gively/ntee"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "ntee"
gem.require_paths = ["lib"]
gem.version = NTEE::VERSION
gem.add_development_dependency 'i18n'
gem.add_development_dependency 'activesupport', '>= 3.0'
gem.add_development_dependency 'rake'
end