forked from nov/webfinger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webfinger.gemspec
23 lines (22 loc) · 1.02 KB
/
webfinger.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |gem|
gem.name = 'webfinger'
gem.version = File.read('VERSION').delete("\n\r")
gem.authors = ['nov matake']
gem.email = ['[email protected]']
gem.description = %q{Ruby WebFinger client library}
gem.summary = %q{Ruby WebFinger client library, following IETF WebFinger WG spec updates.}
gem.homepage = 'https://github.com/nov/webfinger'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_runtime_dependency 'faraday', '~> 2.0'
gem.add_runtime_dependency 'faraday-follow_redirects'
gem.add_runtime_dependency 'activesupport'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'webmock', '>= 1.6.2'
end