Sha256: 0c3646c0d9d19c75d981296905cba7cce1a6281b4496922cd90c77b3b3aeaa85

Contents?: true

Size: 1.38 KB

Versions: 128

Compression:

Stored size: 1.38 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 = "wepay-rails"
  gem.homepage = "http://github.com/adamthedeveloper/wepay-rails"
  gem.license = "MIT"
  gem.summary = "Rails gem that interfaces with the WePay API"
  gem.description = "Rails gem that interfaces with the WePay API"
  gem.email = "adammede@gmail.com"
  gem.authors = ["Adam Medeiros"]
  # 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 = "wepay-rails #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

128 entries across 128 versions & 1 rubygems

Version Path
wepay-rails-2.2.9 Rakefile
wepay-rails-2.2.5 Rakefile
wepay-rails-2.2.4 Rakefile
wepay-rails-2.2.3 Rakefile
wepay-rails-2.2.2 Rakefile
wepay-rails-2.2.1 Rakefile
wepay-rails-2.2.0 Rakefile
wepay-rails-2.1.0 Rakefile
wepay-rails-2.0.0 Rakefile
wepay-rails-1.1.0 Rakefile
wepay-rails-1.0.0 Rakefile
wepay-rails-0.2.2 Rakefile
wepay-rails-0.2.1 Rakefile
wepay-rails-0.2.0 Rakefile
wepay-rails-0.1.116 Rakefile
wepay-rails-0.1.115 Rakefile
wepay-rails-0.1.114 Rakefile
wepay-rails-0.1.113 Rakefile
wepay-rails-0.1.112 Rakefile
wepay-rails-0.1.111 Rakefile