Changeset faedb82a6fa9090b3d7a904ca413c09d8ad98621

Show
Ignore:
Timestamp:
07/17/2008 01:46:48 PM (6 months ago)
Author:
Robin Luckey <robin@ohloh.net>
git-committer:
Robin Luckey <robin@ohloh.net> 1216327608 -0700
git-parent:

[739610868231c57d32fb35c062d97c3f363d5bcc]

git-author:
Robin Luckey <robin@ohloh.net> 1216327608 -0700
Message:

[FIX] Gem fixes: Add lib/license to the gem, also fix ticket #229.

There's still some trouble with RDoc in the gem install.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Rakefile

    r6f1f031 rfaedb82  
    2424PKG_FILES = %w(README COPYING Rakefile lib/ohcount.rb) + 
    2525  Dir.glob("ext/ohcount_native/*.{h,c,rb}") + 
    26   Dir.glob("lib/ohcount/*.rb") + 
     26  Dir.glob("lib/**/*.rb") + 
    2727  Dir.glob("test/*") + 
    2828  Dir.glob("test/**/*") + 
     
    3535    s.platform = Gem::Platform::RUBY 
    3636    s.has_rdoc = true 
    37     s.rdoc_options += RDOC_OPTS 
     37    s.rdoc_options = RDOC_OPTS 
    3838    s.summary = "The Ohloh source code line counter" 
    3939    s.description = s.summary 
    4040    s.author = "Ohloh Corporation" 
    4141    s.email = "info@ohloh.net" 
    42     s.homepage = "http://www.ohloh.net" 
     42    s.homepage = "http://labs.ohloh.net/ohcount" 
    4343    s.files = PKG_FILES 
    44     s.require_paths = ["lib", ARCH_DIR] 
     44    s.require_paths <<  'lib' 
    4545    s.extensions << 'ext/ohcount_native/extconf.rb' 
    4646    s.bindir = 'bin'