forked from pmorillon/xp5k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxp5k.gemspec
29 lines (23 loc) · 952 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
# -*- 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 'rest-client', '~> 1.8' # SSL problems with newer version
s.add_dependency 'restfully', '~>1.1'
s.add_dependency 'term-ansicolor', '~> 1.3'
s.add_dependency 'json', '~> 1.8'
s.add_dependency 'net-ssh-multi', '~> 1.2'
s.add_development_dependency 'bundler', '~> 1.10'
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
end