Changeset 3257b52b2ad502c7797ef870e86b0f1d1bbbedc8
- Timestamp:
- 01/31/2008 11:17:13 AM
(1 year ago)
- Author:
- Robin Luckey <robin@Tangier.local>
- git-committer:
- Robin Luckey <robin@Tangier.local> 1201807033 -0800
- git-parent:
[4b9e881f40ea8dff7da57c5d37eeb919e62d2cb0]
- git-author:
- Robin Luckey <robin@Tangier.local> 1201807033 -0800
- Message:
[FIX] Some improvements to the Gem installer.
Still getting 'Could not find main page README' error after rake install; don't know why.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4b9e881 |
r3257b52 |
|
| 22 | 22 | RDOC_OPTS = ['--quiet', '--title', 'Ohcount Reference', '--main', 'README', '--inline-source'] |
|---|
| 23 | 23 | |
|---|
| 24 | | PKG_FILES = %w(README Rakefile lib/ohcount.rb) + |
|---|
| | 24 | PKG_FILES = %w(README COPYING Rakefile lib/ohcount.rb) + |
|---|
| 25 | 25 | Dir.glob("ext/ohcount_native/*.{h,c,rb}") + |
|---|
| 26 | 26 | Dir.glob("ext/ohcount_native/glots/*.rb") + |
|---|
| 27 | 27 | Dir.glob("lib/ohcount/*.rb") + |
|---|
| | 28 | Dir.glob("test/*") + |
|---|
| | 29 | Dir.glob("test/**/*") + |
|---|
| 28 | 30 | Dir.glob("bin/*") |
|---|
| 29 | 31 | |
|---|
| … | … | |
| 41 | 43 | s.homepage = "http://www.ohloh.net" |
|---|
| 42 | 44 | s.files = PKG_FILES |
|---|
| 43 | | s.require_paths = ["lib", ARCH_DIR] |
|---|
| | 45 | s.require_paths = ["lib"] |
|---|
| 44 | 46 | s.extensions << 'ext/ohcount_native/extconf.rb' |
|---|
| 45 | 47 | s.bindir = 'bin' |
|---|