Changeset 1154

Show
Ignore:
Timestamp:
01/03/08 06:11:49 (8 months ago)
Author:
wayneesegu..@gmail.com
Message:

Released 0.4.2

Files:

Legend:

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

    r697 r1154  
    1 merb_sequel 
    2 ================= 
     1= merb_sequel 
    32 
    43A plugin for the Merb framework that provides Sequel access 
     
    65After you install the plugin, you have access to the sequel_migration generator in your merb projects 
    76example: /merb/root/script/generate sequel_migration new_migration 
     7 
     8= Contributors 
     9 
     10originally written by Duane Johnson (canadaduane@gmail.com). 
  • plugins/merb_sequel/Rakefile

    r1141 r1154  
    1 require 'rubygems' 
    2 require 'rake/gempackagetask' 
     1require "rubygems" 
     2require "rake/gempackagetask" 
    33 
    4 PLUGIN = "merb_sequel" 
    5 NAME = "merb_sequel" 
    6 VERSION = "0.4.2" 
    7 AUTHOR = "Duane Johnson" 
    8 EMAIL = "canadaduane@gmail.com" 
     4PLUGIN   = "merb_sequel" 
     5NAME     = "merb_sequel" 
     6VERSION = "0.4.2" 
     7AUTHOR   = "Wayne E. Seguin" 
     8EMAIL    = "wayneeseguin@gmail.com" 
    99HOMEPAGE = "http://merb-plugins.rubyforge.org/merb_sequel/" 
    10 SUMMARY = "Merb plugin that provides support for the Sequel database object
     10SUMMARY = "Merb plugin that provides support for Sequel and Sequel::Model
    1111 
    12 spec = Gem::Specification.new do |s| 
    13   s.name = NAME 
    14   s.version = VERSION 
    15   s.platform = Gem::Platform::RUBY 
    16   s.has_rdoc = true 
    17   s.extra_rdoc_files = ["README", "LICENSE", 'TODO'] 
    18   s.summary = SUMMARY 
    19   s.description = s.summary 
    20   s.author = AUTHOR 
    21   s.email = EMAIL 
    22   s.homepage = HOMEPAGE 
    23   s.add_dependency('merb',         '>= 0.4.0') 
    24   s.add_dependency('sequel',       '>= 0.5.0') 
    25   s.add_dependency('sequel_model', '>= 0.1') 
    26   s.require_path = 'lib' 
    27   s.autorequire = PLUGIN 
    28   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,sequel_generators}/**/*") 
     12specification = Gem::Specification.new do |spec| 
     13  spec.name         = NAME 
     14  spec.email        = EMAIL 
     15  spec.author       = AUTHOR 
     16  spec.version      = VERSION 
     17  spec.summary      = SUMMARY 
     18  spec.platform     = Gem::Platform::RUBY 
     19  spec.has_rdoc     = true 
     20  spec.homepage     = HOMEPAGE 
     21  spec.description  = SUMMARY 
     22  spec.autorequire  = PLUGIN 
     23  spec.require_path = "lib" 
     24  spec.extra_rdoc_files = ["README", "LICENSE", 'TODO'] 
     25  # Dependencies 
     26  spec.add_dependency("merb",         ">= 0.4.0") 
     27  spec.add_dependency("sequel",       ">= 1.0.0") 
     28  spec.add_dependency("sequel_model", ">= 0.2") 
     29  spec.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,sequel_generators}/**/*") 
    2930end 
    3031 
    31 Rake::GemPackageTask.new(spec) do |pkg
    32   pkg.gem_spec = spec 
     32Rake::GemPackageTask.new(specification) do |package
     33  package.gem_spec = specification 
    3334end 
    3435