-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplacemaker.gemspec
More file actions
40 lines (30 loc) · 1002 Bytes
/
placemaker.gemspec
File metadata and controls
40 lines (30 loc) · 1002 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
Gem::Specification.new do |s|
s.name = 'placemaker'
s.version = "0.0.3"
s.authors = 'Justin Leitgeb'
s.summary = 'Ruby interface for the Yahoo Placemaker API'
s.description = <<-EOS
placemaker is a Ruby client for the Yahoo Placemaker API. It uses
the nokogiri and curb gems to help the user to efficiently query the
Placemaker service and parse the XML response.
EOS
s.email = 'justin@stackbuilders.com'
s.extra_rdoc_files = [ "README.rdoc" ]
require 'rake'
s.files = FileList['lib/**/*.rb', '[A-Z]*', 'spec/**/*'].to_a
s.has_rdoc = true
s.homepage = 'http://github.com/jsl/placemaker'
s.summary = 'Ruby interface over the Yahoo Placemaker API'
s.license = 'MIT'
s.extra_rdoc_files = [ "README.rdoc" ]
s.rdoc_options += [
'--title', 'Placemaker',
'--main', 'README.rdoc',
'--line-numbers',
'--inline-source'
]
%w[ curb nokogiri ].each do |dep|
s.add_dependency(dep)
end
s.test_files = Dir['spec/**/*_spec.rb']
end