Changeset faedb82a6fa9090b3d7a904ca413c09d8ad98621
- 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
| r6f1f031 |
rfaedb82 |
|
| 24 | 24 | PKG_FILES = %w(README COPYING Rakefile lib/ohcount.rb) + |
|---|
| 25 | 25 | Dir.glob("ext/ohcount_native/*.{h,c,rb}") + |
|---|
| 26 | | Dir.glob("lib/ohcount/*.rb") + |
|---|
| | 26 | Dir.glob("lib/**/*.rb") + |
|---|
| 27 | 27 | Dir.glob("test/*") + |
|---|
| 28 | 28 | Dir.glob("test/**/*") + |
|---|
| … | … | |
| 35 | 35 | s.platform = Gem::Platform::RUBY |
|---|
| 36 | 36 | s.has_rdoc = true |
|---|
| 37 | | s.rdoc_options += RDOC_OPTS |
|---|
| | 37 | s.rdoc_options = RDOC_OPTS |
|---|
| 38 | 38 | s.summary = "The Ohloh source code line counter" |
|---|
| 39 | 39 | s.description = s.summary |
|---|
| 40 | 40 | s.author = "Ohloh Corporation" |
|---|
| 41 | 41 | s.email = "info@ohloh.net" |
|---|
| 42 | | s.homepage = "http://www.ohloh.net" |
|---|
| | 42 | s.homepage = "http://labs.ohloh.net/ohcount" |
|---|
| 43 | 43 | s.files = PKG_FILES |
|---|
| 44 | | s.require_paths = ["lib", ARCH_DIR] |
|---|
| | 44 | s.require_paths << 'lib' |
|---|
| 45 | 45 | s.extensions << 'ext/ohcount_native/extconf.rb' |
|---|
| 46 | 46 | s.bindir = 'bin' |
|---|