-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathocci-api.gemspec
37 lines (31 loc) · 1.67 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
28
29
30
31
32
33
34
35
36
37
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'occi/api/version'
Gem::Specification.new do |gem|
gem.name = 'occi-api'
gem.version = Occi::API::VERSION
gem.authors = ['Boris Parak', 'Zdeněk Šustr']
gem.email = ['[email protected]', '[email protected]']
gem.description = 'The rOCCI toolkit is a collection of classes simplifying implementation ' \
'of Open Cloud Computing Interface in Ruby'
gem.summary = 'The rOCCI client API toolkit'
gem.homepage = 'https://github.com/the-rocci-project/rOCCI-api'
gem.license = 'Apache-2.0'
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
gem.require_paths = ['lib']
gem.add_runtime_dependency 'activesupport', '>= 4.0', '< 6'
gem.add_runtime_dependency 'faraday', '>= 0.13', '< 1'
gem.add_runtime_dependency 'faraday_middleware', '>= 0.12', '< 1'
gem.add_runtime_dependency 'occi-core', '>= 5.0.4', '< 6'
gem.add_runtime_dependency 'yell', '>= 2.0', '< 3'
gem.add_development_dependency 'bundler', '>= 1.12', '< 2'
gem.add_development_dependency 'fasterer', '>= 0.3.2', '< 0.4'
gem.add_development_dependency 'pry', '>= 0.10', '< 1'
gem.add_development_dependency 'rake', '>= 11.0', '< 13'
gem.add_development_dependency 'rspec', '>= 3.4', '< 4'
gem.add_development_dependency 'rubocop', '>= 0.32', '< 1'
gem.add_development_dependency 'rubygems-tasks', '>= 0.2', '< 1'
gem.add_development_dependency 'simplecov', '>= 0.11', '< 1'
gem.add_development_dependency 'yard', '>= 0.8', '< 1'
gem.required_ruby_version = '>= 2.2.2'
end