-
Notifications
You must be signed in to change notification settings - Fork 16
/
washbullet.gemspec
30 lines (26 loc) · 1.11 KB
/
washbullet.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
26
27
28
29
30
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'washbullet/version'
Gem::Specification.new do |gem|
gem.name = 'washbullet'
gem.version = Washbullet::VERSION
gem.authors = ['Hiroshi Yoshida']
gem.email = ['[email protected]']
gem.summary = %q{Ruby client of Pushbullet API.}
gem.description = %q{Ruby client of Pushbullet API.}
gem.homepage = 'https://github.com/hrysd/washbullet'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|gem|features)/})
gem.require_paths = ['lib']
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 3.4.0'
gem.add_development_dependency 'rubocop'
gem.add_development_dependency 'vcr', '~> 3.0.0'
gem.add_development_dependency 'webmock'
gem.add_dependency 'faraday', '~> 0.9.0'
gem.add_dependency 'mime-types'
end