Skip to content

Commit

Permalink
Updated README + Manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
js committed Mar 29, 2009
1 parent 1104cba commit fe2960c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
9 changes: 7 additions & 2 deletions Manifest.txt
@@ -1,7 +1,12 @@
.gitignore
History.txt
Manifest.txt
README.txt
Rakefile
bin/simple_mmap
ext/extconf.rb
ext/mapped_file.c
lib/simple_mmap.rb
test/test_simple_mmap.rb
lib/simple_mmap/file_window.rb
lib/simple_mmap/version.rb
test/test_file_window.rb
test/test_mapped_file.rb
8 changes: 5 additions & 3 deletions README.txt
@@ -1,14 +1,15 @@
= simple_mmap

* FIX (url)
http://simple-mmap.rubyforge.org/

== DESCRIPTION:

A simplistic interface for reading memory mapped files

== FEATURES/PROBLEMS:

* FIX (list of features or problems)
* mmap a file. Read data from it. Close it when you're done. More fun than the "ball in a cup" game.
* it ONLY supports reading mmap'ed files, not writing to the mmap'ed region

== SYNOPSIS:

Expand All @@ -17,13 +18,14 @@
# works with the same semantics as Array#[] (eg. fw[10..14] and fw[10...14])
>> fw.close # you MUST close the FileWindow after you're done (HAHA no blocks for you yet!)


== REQUIREMENTS:

* A mmap() capable platform.

== INSTALL:

* FIX (sudo gem install, anything else)
gem install simple-mmap

== LICENSE:

Expand Down

0 comments on commit fe2960c

Please sign in to comment.