-
Notifications
You must be signed in to change notification settings - Fork 9
/
bwapi.gemspec
28 lines (24 loc) · 1.07 KB
/
bwapi.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
require File.dirname(__FILE__) + "/lib/bwapi/version"
Gem::Specification.new do |s|
s.name = 'bwapi'
s.version = BWAPI::VERSION
s.version = BWAPI::VERSION + ".pre.#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS']
s.date = '2013-10-30'
s.summary = 'Brandwatch v2 API Wrapper'
s.description = 'A Ruby wrapper for the Brandwatch v2 API'
s.author = 'Jonathan Chrisp'
s.email = '[email protected]'
s.license = 'MIT'
s.homepage = 'https://github.com/jonathanchrisp/bwapi'
s.required_ruby_version = ">= 1.9.2"
s.add_development_dependency 'rspec', '~> 2.13.0'
s.add_runtime_dependency 'faraday', '~> 0.8.7'
s.add_runtime_dependency 'faraday_middleware', '~> 0.9.0'
s.add_runtime_dependency 'netrc', '~> 0.7.7'
s.add_runtime_dependency 'colored', '~> 1.2'
s.add_runtime_dependency 'hashie', '~> 2.0.5'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ['lib']
end