forked from gwdg/rOCCI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
occi.gemspec
24 lines (19 loc) · 998 Bytes
/
occi.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
# 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"
gem.version = Occi::Dummy::VERSION
gem.authors = ["Florian Feldhaus","Piotr Kasprzak", "Boris Parak"]
gem.description = %q{This gem is a client implementation of the Open Cloud Computing Interface in Ruby}
gem.summary = %q{Executable OCCI client}
gem.homepage = 'https://github.com/gwdg/rOCCI'
gem.license = 'Apache License, Version 2.0'
gem.extensions = 'ext/mkrf_conf.rb'
gem.add_dependency 'occi-cli'
gem.add_development_dependency 'rake'
gem.required_ruby_version = ">= 1.8.7"
gem.post_install_message = "This gem is just a wrapper providing backward compatibility and might be removed in the future! Please, consider using 'occi-cli' directly."
end