-
Notifications
You must be signed in to change notification settings - Fork 2
/
infopark_webcrm_sdk.gemspec
31 lines (29 loc) · 1.28 KB
/
infopark_webcrm_sdk.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "infopark_webcrm_sdk"
spec.version = begin
`cd #{File.dirname(__FILE__)} && git describe --tag`.chomp.gsub(/-([0-9]+)-g/, '.\1.').tap do
raise "git describe failed" unless $?.success?
end
end
spec.authors = 'JustRelate Group GmbH'
spec.email = '[email protected]'
spec.summary = 'JustRelate WebCRM SDK'
spec.description = %{
JustRelate WebCRM is a professional cloud CRM built for Ruby.
For more information about JustRelate WebCRM, please visit https://justrelate.com/.
For more information about the JustRelate WebCRM SDK for Ruby, please visit
http://www.rubydoc.info/gems/infopark_webcrm_sdk
}
spec.homepage = 'https://github.com/infopark/webcrm_sdk'
spec.license = 'MIT'
spec.files = ["README.md", "LICENSE", "UPGRADE.md", "config/ca-bundle.crt"] + Dir["lib/**/*"]
spec.require_paths = ["lib"]
spec.add_dependency('actionpack', '> 4.0')
spec.add_dependency('activesupport', '> 4.0')
spec.add_dependency('multi_json', '~> 1.0')
spec.add_dependency('multipart-post', '~> 2.0')
spec.add_dependency('addressable', '~> 2.0')
end