Sha256: 7b09ab96ee287ffd11cce96f69cdf4d54c2b41c5e1fa96a8f0f00098e7905ac1

Contents?: true

Size: 1.48 KB

Versions: 14

Compression:

Stored size: 1.48 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "active_merchant_payline"
    gem.summary = %Q{A plugin for Payline support in Active Merchant. }
    gem.description = %Q{A plugin for Payline support in Active Merchant.}
    gem.email = "ludovic@scrumers.com"
    gem.homepage = "http://github.com/scrumers/active_merchant_payline"
    gem.authors = ["Ludovic Galabru"]
    gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    gem.add_dependency 'activemerchant', '>= 1.9.0'
    gem.add_dependency 'builder'
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: 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|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
active_merchant_payline-0.2.14 Rakefile
active_merchant_payline-0.2.13 Rakefile
active_merchant_payline-0.2.12 Rakefile
active_merchant_payline-0.2.11 Rakefile
active_merchant_payline-0.2.10 Rakefile
active_merchant_payline-0.2.9 Rakefile
active_merchant_payline-0.2.8 Rakefile
active_merchant_payline-0.2.6 Rakefile
active_merchant_payline-0.2.5 Rakefile
active_merchant_payline-0.2.4 Rakefile
active_merchant_payline-0.2.3 Rakefile
active_merchant_payline-0.2.2 Rakefile
active_merchant_payline-0.2.1 Rakefile
active_merchant_payline-0.2.0 Rakefile