-
Notifications
You must be signed in to change notification settings - Fork 21
/
pinboard.gemspec
25 lines (24 loc) · 950 Bytes
/
pinboard.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
Gem::Specification.new do |s|
s.add_development_dependency 'yard'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'webmock'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'guard-bundler'
s.add_development_dependency 'libnotify'
s.add_development_dependency 'rb-inotify'
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'terminal-notifier-guard'
s.add_runtime_dependency 'httparty'
s.name = 'pinboard'
s.version = '1.1.0'
s.date = '2023-07-22'
s.summary = "Ruby wrapper for the Pinboard API"
s.description = "Ruby wrapper for the Pinboard API"
s.authors = ["Ry Waker", "Jan-Erik Rediger", "Nicholas E. Rabenau"]
s.email = '[email protected]'
s.require_paths = ['lib']
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.homepage = 'http://github.com/ryw/pinboard'
end