Sha256: 418e8b7d8b865fa276c15054234b170b12c35e08ef3198bbebee829b80eaccb7

Contents?: true

Size: 819 Bytes

Versions: 3

Compression:

Stored size: 819 Bytes

Contents

require "rubygems"
require "bundler/setup"

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")
    s.homepage = "http://github.com/aiwilliams/mlist"
    s.description = s.summary
    s.authors = ['Adam Williams']
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mlist-0.1.23 Rakefile
mlist-0.1.22 Rakefile
mlist-0.1.21 Rakefile