public
Fork of postmodern/dm-mirror
Description: A DataMapper plugin for mirroring data between systems in real-time.
Homepage:
Clone URL: git://github.com/abhiyerra/dm-mirror.git
postmodern (author)
Thu Mar 26 01:50:44 -0700 2009
abhiyerra (committer)
Thu Mar 26 01:40:27 -0700 2009
name age message
file .gitignore Thu Mar 26 01:28:28 -0700 2009 Initial commit. [postmodern]
file History.txt Thu Mar 26 01:33:05 -0700 2009 Cleaned up the History file. [postmodern]
file LICENSE.txt Thu Mar 26 01:28:28 -0700 2009 Initial commit. [postmodern]
file Manifest.txt Thu Mar 26 01:28:28 -0700 2009 Initial commit. [postmodern]
file README.txt Thu Mar 26 01:28:28 -0700 2009 Initial commit. [postmodern]
file Rakefile Thu Mar 26 01:50:44 -0700 2009 Require dm-observer. * Well probably need dm-o... [postmodern]
file TODO.txt Thu Mar 26 01:33:47 -0700 2009 Added a TODO file. [postmodern]
directory lib/ Thu Mar 26 01:28:28 -0700 2009 Initial commit. [postmodern]
directory spec/ Thu Mar 26 01:34:38 -0700 2009 Load lib/dm-mirror [postmodern]
directory tasks/ Thu Mar 26 01:28:28 -0700 2009 Initial commit. [postmodern]
README.txt
= dm-mirror

* http://dm-mirror.rubyforge.org/
* http://github.com/postmodern/dm-mirror
* Postmodern (postmodern.mod3 at gmail.com)

== DESCRIPTION:

A DataMapper plugin for mirroring data between systems in real-time.

== EXAMPLES:

  require 'dm-core'
  require 'dm-mirror'
  
  class Sensitive
  
    include DataMapper::Resource
    include DataMapper::Mirror
    
    # Name of the data
    property :name, String
    
    # Secret data
    property :secret, Text
    
  end
  
== INSTALL:

  $ sudo gem install dm-mirror

== LICENSE:

Copyright (c) 2009 Hal Brodigan

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.