Sha256: e38820d2adebfd49459ee5d18ec412667cd4f85df7e96930e84bd7df65d6a2bb
Contents?: true
Size: 824 Bytes
Versions: 1
Compression:
Stored size: 824 Bytes
Contents
$:.unshift(File.join(File.dirname(__FILE__), 'lib')) require 'rubygems' require 'spec/rake/spectask' task :default => :spec desc "Run all specs" Spec::Rake::SpecTask.new do |t| t.spec_files = FileList['spec/**/*_spec.rb'] t.spec_opts = ['--options', 'spec/spec.opts'] end begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = 'mlist' s.summary = 'A Ruby mailing list library designed to be integrated into other applications.' s.email = 'adam@thewilliams.ws' s.files = FileList["[A-Z]*", "{lib,rails}/**/*"].exclude("tmp,**/tmp") s.homepage = "http://github.com/aiwilliams/mlist" s.description = s.summary s.authors = ['Adam Williams'] end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aiwilliams-mlist-0.0.0 | Rakefile |