adkron / legacy_woes

Tools for legacy databases and ActiveRecord

This URL has Read+Write access

name age message
file .gitignore Fri Dec 19 19:49:20 -0800 2008 gitignore checkin [adkron]
file CHANGELOG.rdoc Wed Jan 28 08:29:18 -0800 2009 Push 0.2.0 with created_on and updated_on support [adkron]
file MIT-LICENSE Fri Dec 19 19:48:57 -0800 2008 adding license file [adkron]
file Manifest Wed Jan 28 08:29:18 -0800 2009 Push 0.2.0 with created_on and updated_on support [adkron]
file README.rdoc Fri Dec 19 20:52:11 -0800 2008 update readme with plugin install [adkron]
file Rakefile Wed Jan 28 08:29:18 -0800 2009 Push 0.2.0 with created_on and updated_on support [adkron]
file init.rb Fri Dec 19 20:50:34 -0800 2008 add init file so the gem can also work as a plugin [adkron]
file legacy_woes.gemspec Wed Jan 28 08:29:18 -0800 2009 Push 0.2.0 with created_on and updated_on support [adkron]
directory lib/ Wed Jan 28 08:48:55 -0800 2009 added tests [adkron]
directory test/ Wed Jan 28 08:48:55 -0800 2009 added tests [adkron]
README.rdoc

Legacy Woes

If your working with

Install as a gem

  gem install adkron-legacy_woes --source http://gems.github.com

  In Rails you can instead add this to your environment.rb file
  config.gem "adkron-legacy_woes", :lib => 'legacy_woes', :source => 'http://gems.github.com'

Install as a plugin

  script/plugin install git://github.com/adkron/legacy_woes.git

Example

    require 'rubygems'
    require 'legacy_woes'

    class LegacyComments < ActiveRecord::Base
      created_at_column :datesubmitted
    end

**Copyright © 2008 Amos L. King, released under the MIT license**