Changeset 1154
- Timestamp:
- 01/03/08 06:11:49 (8 months ago)
- Files:
-
- plugins/merb_sequel/README (modified) (2 diffs)
- plugins/merb_sequel/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/merb_sequel/README
r697 r1154 1 merb_sequel 2 ================= 1 = merb_sequel 3 2 4 3 A plugin for the Merb framework that provides Sequel access … … 6 5 After you install the plugin, you have access to the sequel_migration generator in your merb projects 7 6 example: /merb/root/script/generate sequel_migration new_migration 7 8 = Contributors 9 10 originally written by Duane Johnson (canadaduane@gmail.com). plugins/merb_sequel/Rakefile
r1141 r1154 1 require 'rubygems'2 require 'rake/gempackagetask'1 require "rubygems" 2 require "rake/gempackagetask" 3 3 4 PLUGIN = "merb_sequel"5 NAME = "merb_sequel"6 VERSION = "0.4.2"7 AUTHOR = "Duane Johnson"8 EMAIL = "canadaduane@gmail.com"4 PLUGIN = "merb_sequel" 5 NAME = "merb_sequel" 6 VERSION = "0.4.2" 7 AUTHOR = "Wayne E. Seguin" 8 EMAIL = "wayneeseguin@gmail.com" 9 9 HOMEPAGE = "http://merb-plugins.rubyforge.org/merb_sequel/" 10 SUMMARY = "Merb plugin that provides support for the Sequel database object"10 SUMMARY = "Merb plugin that provides support for Sequel and Sequel::Model" 11 11 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}/**/*") 12 specification = 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}/**/*") 29 30 end 30 31 31 Rake::GemPackageTask.new(spec ) do |pkg|32 p kg.gem_spec = spec32 Rake::GemPackageTask.new(specification) do |package| 33 package.gem_spec = specification 33 34 end 34 35
