lsegal / yard-spec-plugin

YARD Plugin example that documents RSpec code (live example in homepage)

This URL has Read+Write access

lsegal (author)
Mon Nov 02 01:58:16 -0800 2009
commit  c6decc07dd8c5306c319d1209e702260a1320c80
tree    9f28c47e7800fe6c6ef0d05c4ac62660c0f919ea
parent  ea96363d01825df152f98d891a073ea6e58e2282
yard-spec-plugin / yard-rspec.gemspec
100644 15 lines (15 sloc) 0.591 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SPEC = Gem::Specification.new do |s|
  s.name = "yard-rspec"
  s.summary = "YARD plugin to list RSpec specifications inside documentation"
  s.version = "0.1"
  s.date = "2009-09-15"
  s.author = "Loren Segal"
  s.email = "lsegal@soen.ca"
  s.homepage = "http://yard.soen.ca"
  s.platform = Gem::Platform::RUBY
  s.files = Dir.glob("{example,lib,templates}/**/*") + ['LICENSE', 'README.rdoc', 'Rakefile']
  s.require_paths = ['lib']
  s.has_rdoc = 'yard'
  s.rubyforge_project = 'yard-rspec'
  s.add_dependency 'yard'
end