Sha256: ab43b4e88a8629a1a61783231b38026a5e0ed8e188943e70c4650e6292473cd5

Contents?: true

Size: 1.5 KB

Versions: 7

Compression:

Stored size: 1.5 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "simpleMailer"
    gem.summary = %Q{A simple mailer gem}
    gem.description = %Q{SimpleMailer is a simple wrapper for net::smtp that let you attach files}
    gem.email = "kurotoshiro@gmail.com"
    gem.homepage = "http://github.com/Kurotoshiro/simpleMailer"
    gem.authors = ["Yoann LE TOUCHE"]
    gem.add_dependency "shared-mime-info" 
    gem.add_development_dependency "thoughtbot-shoulda"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/*_test.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION')
    version = File.read('VERSION')
  else
    version = ""
  end

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "simpleMailer #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
kurotoshiro-simpleMailer-0.1.5 Rakefile
kurotoshiro-simpleMailer-0.1.6 Rakefile
simpleMailer-0.1.9 Rakefile
simpleMailer-0.1.8 Rakefile
simpleMailer-0.1.7 Rakefile
simpleMailer-0.1.6 Rakefile
simpleMailer-0.1.5 Rakefile