Ignore:
Timestamp:
May 12, 2008, 10:53:25 PM (16 years ago)
Author:
Tatsukawa, Akimichi
Message:

created adl_parser gem for version 0.0.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ruby/trunk/lib/adl_parser/Rakefile

    r48 r49  
    1010$DEBUG = false
    1111
    12 RACC_SRC = FileList["*.y"]
    13 RACC_PARSER = FileList['parser.rb']
     12RACC_SRC = FileList["lib/parser.y"]
     13RACC_PARSER = FileList['lib/parser.rb']
    1414
    1515task :default => [:racc]
     
    4040
    4141Rake::TestTask.new('test:shell') do |t|
    42   t.libs = ["."]
     42  t.libs = ["lib"]
    4343  t.pattern = ['tests/shell_test.rb']
    4444  t.warning = true
     
    7070Rake::RDocTask.new('rdoc') do |t|
    7171  t.rdoc_dir = 'rdoc'
    72   t.rdoc_files.include('README', 'lib/*.rb', 'bin/*.rb')
     72  t.rdoc_files.include('README', 'lib/*.rb')
    7373  t.main = 'README'
    7474  t.title = "ADL parser API documentation"
     
    7878  s.name = 'adl_parser'
    7979  s.author = 'Akimichi Tatsukawa'
    80   s.version = '0.0.2'
     80  s.version = '0.0.3'
    8181  s.summary = 'ADL parser'
    8282  s.email = 'akimichi_tatsukawa@nifty.com'
    8383  s.test_files = FileList['tests/*_test.rb', '*.adl']
    84   candidates = Dir.glob("{bin,docs,lib,tests,ext}/**/*")
     84  candidates = Dir.glob("{docs,lib,tests}/**/*") + FileList['README', 'Rakefile']
    8585  s.files = candidates.delete_if do |item|
    8686    item.include?(".svn") || item.include?("rdoc")
    8787  end
    88   s.files = FileList['README', 'COPYING', 'Rakefile']
    89   s.require_path = "lib"
     88#  s.require_path = "lib"
    9089  s.has_rdoc = true
    9190  s.extra_rdoc_files = ["README"]
Note: See TracChangeset for help on using the changeset viewer.