require 'rake' require 'spec/rake/spectask' desc 'Default: run specs.' task :default => :spec desc 'Run the specs' Spec::Rake::SpecTask.new(:spec) do |t| t.spec_opts = ['--colour --format progress --loadby mtime --reverse'] t.spec_files = FileList['spec/**/*_spec.rb'] end PKG_FILES = FileList[ '[a-zA-Z]*', 'generators/**/*', 'lib/**/*', 'rails/**/*', 'tasks/**/*', 'spec/**/*' ] spec = Gem::Specification.new do |s| s.name = "url_field" s.version = "0.0.1" s.author = "Paul Campbell" s.email = "paul@rslw.com" s.homepage = "http://www.github.com/paulca/url_field" s.platform = Gem::Platform::RUBY s.summary = "A simple ActiveRecord plugin to correctly format a URL in the database whether the user enters 'http://' or not" s.files = PKG_FILES.to_a s.require_path = "lib" s.has_rdoc = false s.extra_rdoc_files = ["README.textile"] end desc 'Turn this plugin into a gem.' Rake::GemPackageTask.new(spec) do |pkg| pkg.gem_spec = spec end