Rakefile in merb_sequel-0.4.3 vs Rakefile in merb_sequel-0.5

- old
+ new

@@ -1,13 +1,13 @@ require "rubygems" require "rake/gempackagetask" PLUGIN = "merb_sequel" NAME = "merb_sequel" -VERSION = "0.4.3" -AUTHOR = "Wayne E. Seguin" -EMAIL = "wayneeseguin@gmail.com" +VERSION = "0.5" +AUTHOR = "Wayne E. Seguin, Lance Carlson" +EMAIL = "wayneeseguin@gmail.com, lancecarlson@gmail.com" HOMEPAGE = "http://merb-plugins.rubyforge.org/merb_sequel/" SUMMARY = "Merb plugin that provides support for Sequel and Sequel::Model" specification = Gem::Specification.new do |spec| spec.name = NAME @@ -21,10 +21,10 @@ spec.description = SUMMARY spec.autorequire = PLUGIN spec.require_path = "lib" spec.extra_rdoc_files = ["README", "LICENSE", 'TODO'] # Dependencies - spec.add_dependency("merb", ">= 0.4.2") + spec.add_dependency("merb", ">= 0.5") spec.add_dependency("sequel", ">= 1.0.0") spec.add_dependency("sequel_model", ">= 0.2") spec.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,sequel_generators}/**/*") end