|
Revision 277, 0.8 kB
(checked in by ged, 7 months ago)
|
- Updated the build system substantially, including stuff from both the
ThingFish? and Arrow projects.
- Updated keywords on everything.
- Reorganized the specs to match the convention of spec <-> lib hierarchies
matching.
- Added the loadpath library
- Started refactor of bogswiddle to use Sequel instead of ActiveRecord?
- Merged improvements from Arrow's logging system back into the FaerieMUD logger.
- Updated documentation in FaerieMUD::SimpleVerb?
- Refactored some of the early NLG code out into FaerieMUD::Linguistics
- Fixed a bug in the recursive-containment detection code that missed containment more
than two levels deep.
- Corrected FaerieMUD::Item description
- Added a VERSION constant to the toplevel FaerieMUD module.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Date Rev Author URL Id
|
| Line | |
|---|
| 1 | #!/usr/bin/env ruby |
|---|
| 2 | # |
|---|
| 3 | # FaerieMUD - The Hidden Path - Epic 5: Observation |
|---|
| 4 | # |
|---|
| 5 | # As a player, I want to be able to observe the world around me, so that I can |
|---|
| 6 | # distinguish between myself and other things. |
|---|
| 7 | # |
|---|
| 8 | # == Authors |
|---|
| 9 | # |
|---|
| 10 | # * Michael Granger <ged@FaerieMUD.org> |
|---|
| 11 | # |
|---|
| 12 | # == Legal |
|---|
| 13 | # |
|---|
| 14 | # Copyright (c) 2000-2006 The FaerieMUD Consortium. Some rights reserved. |
|---|
| 15 | # |
|---|
| 16 | # This is free software. You may use, modify, and/or redistribute this software |
|---|
| 17 | # under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike |
|---|
| 18 | # license, version 2.0 or greater. |
|---|
| 19 | # |
|---|
| 20 | # See http://creativecommons.org/licenses/by-nc-sa/2.0/ for more information. |
|---|
| 21 | # |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | # Put some local directories in the load path |
|---|
| 25 | BEGIN { |
|---|
| 26 | $basedir = File.dirname( File.dirname(__FILE__) ) |
|---|
| 27 | |
|---|
| 28 | %w{lib redist}.each do |dir| |
|---|
| 29 | $LOAD_PATH.unshift( File::join($basedir, dir) ) |
|---|
| 30 | end |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | require "#$basedir/utils" |
|---|
| 34 | require "fm" |
|---|
| 35 | |
|---|