-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxp5k.gemspec
30 lines (24 loc) · 957 Bytes
/
xp5k.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'xp5k/version'
Gem::Specification.new do |s|
s.name = 'xp5k'
s.version = XP5K::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Pascal Morillon']
s.email = ['[email protected]']
s.license = 'MIT'
s.homepage = 'https://github.com/pmorillon/xp5k'
s.summary = %q{A small Grid'5000 helper}
s.description = %q{A small Grid'5000 helper to submit jobs and deploy environments via REST API}
s.required_rubygems_version = '>= 1.3.6'
s.add_dependency 'logger', '~> 1.4'
s.add_dependency 'rest-client', '~> 2.1'
#s.add_dependency 'restfully', '~>1.2.0'
s.add_dependency 'term-ansicolor', '~> 1.3'
s.add_dependency 'net-ssh-multi', '~> 1.2'
s.add_dependency 'rake', '~> 13'
s.add_development_dependency 'bundler', '~> 2.0'
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
end