Sha256: 5092a277bbecdf20bb0d3d7f42274c3f0353c0f486a941ab968ff43861f58b6e

Contents?: true

Size: 921 Bytes

Versions: 2

Compression:

Stored size: 921 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

begin
  require 'rcov/rcovtask'
rescue LoadError
end

$LOAD_PATH.unshift File.join(File.dirname(__FILE__), "lib")
require 'mms2r'

Hoe.new('mms2r', MMS2R::Media::VERSION) do |p|
  p.rubyforge_name = 'mms2r'
  p.author = ['Mike Mondragon']
  p.email = ['mikemondragon@gmail.com']
  p.summary = 'Extract user media from MMS (and not carrier cruft)'
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  p.url = p.paragraphs_of('README.txt', 1).first.strip
  p.changes = p.paragraphs_of('History.txt', 0..2).join("\n\n")
  p.extra_deps << ['nokogiri']
  p.extra_deps << ['tmail']
  p.extra_deps << ['uuidtools']
  p.clean_globs << 'coverage'
end

begin
  Rcov::RcovTask.new do |t|
    t.test_files = FileList['test/test*.rb']
    t.verbose = true
    t.rcov_opts << "--exclude rcov.rb,hpricot.rb,hpricot/.*\.rb"
  end
rescue NameError
end

# vim: syntax=Ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mms2r-2.4.1 Rakefile
mms2r-2.4.0 Rakefile