forked from jasonroelofs/rbgccxml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrbgccxml.gemspec
More file actions
30 lines (24 loc) · 780 Bytes
/
rbgccxml.gemspec
File metadata and controls
30 lines (24 loc) · 780 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
Gem::Specification.new do |s|
s.name = "rbgccxml"
s.version = "1.0.3"
s.summary = 'Ruby interface to GCCXML'
s.homepage = 'http://rbplusplus.rubyforge.org/rbgccxml'
s.rubyforge_project = "rbplusplus"
s.author = 'Jason Roelofs'
s.email = 'jasongroelofs@gmail.com'
s.add_dependency "nokogiri", "~> 1.5.0"
s.add_dependency "gccxml_gem", "~> 0.9"
s.description = <<-END
Rbgccxml is a library that parses out GCCXML (http://www.gccxml.org) output
and provides a simple but very powerful querying API for finding exactly
what you want out of the C++ source code
END
patterns = [
'TODO',
'Rakefile',
'lib/**/*.rb',
]
s.files = patterns.map {|p| Dir.glob(p) }.flatten
s.test_files = Dir.glob('spec/**/*.rb')
s.require_paths = ['lib']
end