forked from gwdg/rOCCI-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocci-core.gemspec
28 lines (23 loc) · 1.07 KB
/
occi-core.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
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'occi/version'
Gem::Specification.new do |gem|
gem.name = 'occi-core'
gem.version = Occi::VERSION
gem.authors = ['Florian Feldhaus','Piotr Kasprzak', 'Boris Parak']
gem.description = %q{OCCI is a collection of classes to simplify the implementation of the Open Cloud Computing API in Ruby}
gem.summary = %q{OCCI toolkit}
gem.homepage = 'https://github.com/EGI-FCTF/rOCCI-core'
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 'json', '>= 1.8.1'
gem.add_dependency 'hashie', '>= 3.3.1'
gem.add_dependency 'uuidtools', '>= 2.1.3'
gem.add_dependency 'activesupport', '>= 4.0.0'
gem.add_dependency 'settingslogic', '>= 2.0.9'
gem.required_ruby_version = '>= 1.9.3'
end