Sha256: 7dbfd8347a3278fa2fb92c7aa7f8e9ff97850ddbc26e3ffc34a52e390bd35d34

Contents?: true

Size: 826 Bytes

Versions: 4

Compression:

Stored size: 826 Bytes

Contents

require 'rubygems'
require "bundler"
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

4 entries across 4 versions & 1 rubygems

Version Path
mlist-0.1.20 Rakefile
mlist-0.1.19 Rakefile
mlist-0.1.18 Rakefile
mlist-0.1.17 Rakefile