forked from gwdg/rOCCI-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocci-api.gemspec
27 lines (22 loc) · 1.13 KB
/
occi-api.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
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'occi/api/version'
Gem::Specification.new do |gem|
gem.name = "occi-api"
gem.version = Occi::Api::VERSION
gem.authors = ["Florian Feldhaus","Piotr Kasprzak", "Boris Parak"]
gem.description = %q{This gem provides ready-to-use client classes to simplify the integration of OCCI into your application}
gem.summary = %q{OCCI development library providing a high-level client API}
gem.homepage = 'https://github.com/EGI-FCTF/rOCCI-api'
gem.license = 'Apache License, Version 2.0'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec}/*`.split("\n")
gem.require_paths = ['lib']
gem.add_dependency 'occi-core', '~> 4.3', '>= 4.3.2'
gem.add_dependency 'httparty', '~> 0.13', '>= 0.13.1'
gem.add_dependency 'json', '~> 1.8', '>= 1.8.1'
#gem.add_dependency 'persistent_httparty', '~> 0.1', '>= 0.1.2'
gem.required_ruby_version = '>= 1.9.3'
end