-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaceR.gemspec
More file actions
19 lines (19 loc) · 751 Bytes
/
faceR.gemspec
File metadata and controls
19 lines (19 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
spec = Gem::Specification.new do |s|
s.name = 'facer'
s.version = '0.0.7'
s.summary = "Wrapper for face.com API."
s.description = %{Simple wrapper for face.com api.}
s.files = Dir['lib/**/*.rb'] + ["init.rb", "Manifest.txt","Gemfile","README.rdoc"]
s.test_files = Dir['test/**/*.rb']
s.require_path = 'lib'
s.requirements << 'The gem uses multipart-post, mime-types and JSON gem'
s.has_rdoc = true
s.extra_rdoc_files = Dir['[A-Z]*']
s.rdoc_options << '--title' << 'Facer'
s.author = "Stefano Valicchia"
s.homepage = "https://github.com/giano/FaceR"
s.email = "stefano.valicchia@gmail.com"
s.add_dependency('multipart-post','>= 1.0.1')
s.add_dependency('json','>= 1.4.6')
s.add_dependency('mime-types','>= 1.16')
end