forked from BitBalloon/bitballoon-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbitballoon.gemspec
25 lines (22 loc) · 961 Bytes
/
bitballoon.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bitballoon/version'
Gem::Specification.new do |gem|
gem.name = "bitballoon"
gem.version = BitBalloon::VERSION
gem.authors = ["Mathias Biilmann Christensen"]
gem.email = ["[email protected]"]
gem.description = %q{API Client for BitBalloon}
gem.summary = %q{API Client for BitBalloon}
gem.homepage = "https://www.bitballoon.com"
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_dependency "oauth2", "~> 1.1.0"
gem.add_dependency "slop", "~> 3.6.0"
gem.add_dependency "highline", "~> 1.6.21"
gem.add_development_dependency "minitest"
gem.add_development_dependency "webmock"
end