forked from kris-lab/mms-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmms.gemspec
More file actions
22 lines (19 loc) · 813 Bytes
/
mms.gemspec
File metadata and controls
22 lines (19 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require File.expand_path('../lib/mms/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'mms-api'
s.version = MMS::VERSION
s.summary = 'MongoDB MMS API client'
s.description = 'Agent for MMS API'
s.authors = ['Cargo Media', 'kris-lab', 'tomaszdurka']
s.email = 'hello@cargomedia.ch'
s.files = Dir['LICENSE*', 'README*', '{bin,lib}/**/*']
s.executables = ['mms-api']
s.homepage = 'https://github.com/cargomedia/mms-api'
s.license = 'MIT'
s.add_runtime_dependency 'net-http-digest_auth', '~> 1.4'
s.add_runtime_dependency 'terminal-table', '~> 1.4.5'
s.add_runtime_dependency 'parseconfig', '~> 1.0.6'
s.add_runtime_dependency 'clamp', '~> 0.6.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 2.0'
end