forked from adrienthebo/waylon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwaylon.gemspec
25 lines (20 loc) · 876 Bytes
/
waylon.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
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'waylon/version'
Gem::Specification.new do |s|
s.name = 'waylon'
s.version = Waylon::VERSION
s.date = '2015-05-11'
s.authors = ['Roger Ignazio']
s.email = ['[email protected]']
s.homepage = 'https://github.com/rji/waylon'
s.summary = 'Waylon is a dashboard to display the status of your Jenkins builds.'
s.description = s.summary
s.license = 'Apache License, Version 2.0'
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.required_ruby_version = '~> 2.1.0'
s.add_runtime_dependency 'sinatra', '~> 1.4.5'
s.add_runtime_dependency 'jenkins_api_client', '~> 1.0.1'
s.add_runtime_dependency 'deterministic', '~> 0.6.0'
s.add_runtime_dependency 'memcached', '~> 1.8.0'
end