Changeset 697

Show
Ignore:
Timestamp:
09/28/07 13:23:32 (1 year ago)
Author:
iv..@gweezlebur.com
Message:

sequel_migration generator / refs #212 / thanks jtoy

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/merb_sequel/README

    r567 r697  
    22================= 
    33 
    4 A plugin for the Merb framework that provides .... 
     4A plugin for the Merb framework that provides Sequel access 
     5 
     6After you install the plugin, you have access to the sequel_migration generator in your merb projects 
     7example: /merb/root/script/generate sequel_migration new_migration 
  • plugins/merb_sequel/Rakefile

    r688 r697  
    44PLUGIN = "merb_sequel" 
    55NAME = "merb_sequel" 
    6 VERSION = "0.0.4
     6VERSION = "0.0.5
    77AUTHOR = "Duane Johnson" 
    88EMAIL = "canadaduane@gmail.com" 
     
    2424  s.require_path = 'lib' 
    2525  s.autorequire = PLUGIN 
    26   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*") 
     26  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,merb_generators}/**/*") 
    2727end 
    2828 
     
    3030  pkg.gem_spec = spec 
    3131end 
     32 
     33task :install do 
     34  sh %{rake package} 
     35  sh %{sudo gem install pkg/#{NAME}-#{VERSION}} 
     36end