public
Rubygem
Fork of lsegal/yard
Description: Official repository for YARD: Yay! A Ruby Documentation-tool.
Homepage: http://yard.soen.ca / IRC: #yard on irc.freenode.net
Clone URL: git://github.com/tmm1/yard.git
yard / yard.gemspec
100644 16 lines (16 sloc) 0.66 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 = "2008-05-16"
  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("{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