forked from leereilly/swot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswot.gemspec
20 lines (17 loc) · 987 Bytes
/
swot.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = 'swot'
s.version = '0.5.0'
s.homepage = 'https://github.com/leereilly/swot'
s.license = 'MIT'
s.summary = 'Identify email addresses or domains names that belong to colleges or universities.'
s.description = 'Identify email addresses or domains names that belong to colleges or universities. Help automate the process of approving or rejecting academic discounts.'
s.email = 'lee@leereilly.net'
s.authors = ['Lee Reilly']
s.required_ruby_version = Gem::Requirement.new('>= 3.1.2')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_runtime_dependency 'naughty_or_nice', '~> 2.0'
s.add_runtime_dependency 'public_suffix'
end