-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathredbooth-ruby.gemspec
31 lines (26 loc) · 1.11 KB
/
redbooth-ruby.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
31
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'redbooth-ruby/version'
Gem::Specification.new do |s|
s.name = 'redbooth-ruby'
s.version = RedboothRuby::VERSION
s.authors = ['Andres Bravo', 'Carlos Saura', 'Bruno Pedro', 'Oscar Ferrer', 'Ivan Ilves']
s.email = ['[email protected]']
s.homepage = 'https://github.com/teambox/redbooth-ruby'
s.summary = 'API wrapper for Redbooth.'
s.description = s.summary
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.9.3'
s.add_dependency 'json', '~> 1.8'
s.add_dependency 'oauth2', '>= 0.8'
s.add_dependency 'multipart-post', '~> 2.0'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'vcr', '~> 2.9'
s.add_development_dependency 'rake', '~> 10.4'
s.add_development_dependency 'webmock', '~> 1.22'
s.add_development_dependency 'rack-test', '~> 0.6'
end