-
Notifications
You must be signed in to change notification settings - Fork 1
/
redu.gemspec
39 lines (35 loc) · 1.46 KB
/
redu.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
32
33
34
35
36
37
38
39
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'redu/version'
Gem::Specification.new do |gem|
gem.name = "redu"
gem.version = Redu::VERSION
gem.authors = ["Guilherme Cavalcanti"]
gem.email = ["[email protected]"]
gem.description = "Wrapper for Redu REST API"
gem.summary = "This gem provides both authentication and access to Redu (http://redu.com.br) REST API."
gem.homepage = "http://github.com/redu/redu-ruby"
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_development_dependency 'rspec', '~> 2.14.rc1'
gem.add_development_dependency 'webmock'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'json_spec'
if RUBY_VERSION < "1.9"
gem.add_development_dependency "ruby-debug"
else
gem.add_development_dependency "debugger"
end
gem.add_runtime_dependency 'faraday', '~> 0.8.4'
gem.add_runtime_dependency 'faraday_middleware', '~> 0.9.0'
gem.add_runtime_dependency 'oauth2', '~> 0.9'
gem.add_runtime_dependency 'json', '~> 1.8'
gem.add_runtime_dependency 'configurable', '~> 1.0.0'
gem.add_runtime_dependency 'virtus', '~> 0.5.4'
if RUBY_VERSION < "1.9"
gem.add_development_dependency "system_timer"
end
end