-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopens3.gemspec
29 lines (22 loc) · 875 Bytes
/
opens3.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
require File.expand_path('../lib/opens3/version', __FILE__)
path = File.expand_path('../', __FILE__)
Gem::Specification.new do |s|
s.name = 'OpenS3'
s.version = OpenS3::Version
s.summary = 'A storage server'
s.description = s.summary
s.authors = ['Pablo Merino', 'Squeeks']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/pablo-merino/opens3'
s.has_rdoc = 'yard'
s.files = `cd #{path}; git ls-files`.split("\n").sort
s.executables = `ls bin/*`.split("\n").map{ |f| File.basename(f) }
s.add_dependency 'json'
s.add_dependency 'yaml'
s.add_dependency 'digest'
s.add_dependency 'rack'
s.add_dependency 'trollop'
s.add_development_dependency('rake' , ['~> 0.9.2'])
s.add_development_dependency('yard' , ['~> 0.7.2'])
s.rubyforge_project = 'nowarning'
end