Sha256: fba3b234c96c5c8ec213e78c0166144ee9efd4c453277659a8a467042a670f47
Contents?: true
Size: 870 Bytes
Versions: 5
Compression:
Stored size: 870 Bytes
Contents
require 'rake' require 'rake/testtask' require 'date' test_files_pattern = 'test/rails_root/test/{unit,functional,other}/**/*_test.rb' Rake::TestTask.new do |t| t.libs << 'lib' t.pattern = test_files_pattern t.verbose = false end desc "Run the test suite" task :default => :test spec = Gem::Specification.new do |s| s.name = "sortable_table" s.summary = "Sort HTML tables in a Rails app." s.email = "dcroak@thoughtbot.com" s.homepage = "http://github.com/dancroak/sortable_table" s.description = "Sort HTML tables in a Rails app." s.authors = ["Dan Croak", "Joe Ferris", "Boston.rb"] s.files = FileList["[A-Z]*", "{lib,rails,test}/**/*"] end begin require 'rubygems' require 'jeweler' Jeweler.gemspec = spec rescue LoadError puts "Jeweler not available. sudo gem install technicalpickles-jeweler --source=http://gems.github.com" end
Version data entries
5 entries across 5 versions & 2 rubygems