Sha256: 3b80682c03881a1c1e1152d2498b28b24420fd1a2872be81b41ec347466d6a3b

Contents?: true

Size: 1.35 KB

Versions: 18

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "esendex4soap"
  gem.homepage = "http://github.com/voipscout/esendex4soap"
  gem.license = "MIT"
  gem.summary = %Q{esendex SOAP-XML-API for ruby}
  gem.description = %Q{thanks to savon library}
  gem.email = "voipscout@gmail.com"
  gem.authors = ["Voip Scout"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

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

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
  test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test

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

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

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
esendex4soap-0.8.0 Rakefile
esendex4soap-0.7.1 Rakefile
esendex4soap-0.7.0 Rakefile
esendex4soap-0.6.1 Rakefile
esendex4soap-0.6.0 Rakefile
esendex4soap-0.5.4 Rakefile
esendex4soap-0.5.2 Rakefile
esendex4soap-0.5.1 Rakefile
esendex4soap-0.4.30 Rakefile
esendex4soap-0.4.28 Rakefile
esendex4soap-0.4.26 Rakefile
esendex4soap-0.4.9 Rakefile
esendex4soap-0.4.8 Rakefile
esendex4soap-0.4.5 Rakefile
esendex4soap-0.4.4 Rakefile
esendex4soap-0.4.3 Rakefile
esendex4soap-0.4.2 Rakefile
esendex4soap-0.4.0 Rakefile