Sha256: 025829b0205a95c085fd0cbf833c9ef6dd488427b1fea4fa7f3e033402924205
Contents?: true
Size: 480 Bytes
Versions: 4
Compression:
Stored size: 480 Bytes
Contents
require 'bundler' Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) RSpec::Core::RakeTask.new(:rcov) do |spec| spec.rcov = true spec.rcov_opts = ['-Ilib -Ispec --exclude spec,gems'] end task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = "itunes-payment #{File.read('VERSION')}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
itunes-receipt-0.0.4 | Rakefile |
itunes-receipt-0.0.3 | Rakefile |
itunes-receipt-0.0.2 | Rakefile |
itunes-receipt-0.0.1 | Rakefile |