Sha256: 7afdceef37f89e17b6f7ada9795022eca278a735a6a60144376284502446fb61

Contents?: true

Size: 818 Bytes

Versions: 5

Compression:

Stored size: 818 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}/**/*"].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

5 entries across 5 versions & 1 rubygems

Version Path
aiwilliams-mlist-0.1.0 Rakefile
aiwilliams-mlist-0.1.1 Rakefile
aiwilliams-mlist-0.1.2 Rakefile
aiwilliams-mlist-0.1.3 Rakefile
aiwilliams-mlist-0.1.4 Rakefile