-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpodio.gemspec
37 lines (30 loc) · 1.25 KB
/
podio.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'podio/version'
Gem::Specification.new do |s|
s.name = 'podio'
s.version = Podio::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Ruby wrapper for the Podio API'
s.description = 'The official Ruby wrapper for the Podio API used and maintained by the Podio team'
s.license = 'MIT'
s.authors = ['Florian Munz', 'Casper Fabricius']
s.email = '[email protected]'
s.homepage = 'https://github.com/podio/podio-rb'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']
s.has_rdoc = false
s.add_dependency('faraday', ['>= 0.8.0', '<= 1.3.0'])
s.add_dependency('multi_json')
if RUBY_VERSION < '1.9.3'
s.add_dependency('i18n', '<= 0.6.11')
s.add_dependency('activesupport', '~> 3.0')
s.add_dependency('activemodel', '~> 3.0')
else
s.add_dependency('activesupport', '>= 3.0')
s.add_dependency('activemodel', '>= 3.0')
end
s.add_development_dependency('rake')
s.add_development_dependency('yard')
s.add_development_dependency('test-unit-minitest', '>= 0.9.1')
end