public
Description: YARD is a Ruby Documentation tool (Yay!)
Homepage: http://yardoc.org
Clone URL: git://github.com/lsegal/yard.git
Click here to lend your support to: yard and make a donation at www.pledgie.com !
yard / yard.gemspec
100644 16 lines (16 sloc) 0.665 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SPEC = Gem::Specification.new do |s|
  s.name = "yard"
  s.version = "0.2.3"
  s.date = "2009-06-07"
  s.author = "Loren Segal"
  s.email = "lsegal@soen.ca"
  s.homepage = "http://yard.soen.ca"
  s.platform = Gem::Platform::RUBY
  s.summary = "Documentation tool for consistent and usable documentation in Ruby."
  s.files = Dir.glob("{docs,bin,lib,spec,templates,benchmarks}/**/*") + ['LICENSE', 'README.markdown', 'Rakefile']
  s.require_paths = ['lib']
  s.executables = [ 'yardoc', 'yri', 'yard-graph' ]
  s.has_rdoc = false
  s.rubyforge_project = 'yard'
  #s.add_dependency 'tadpole'
end