Sha256: 8408a4da4aa02f3b39a01dff8a0d69b116b24e5095904f36174ccb90111341a4

Contents?: true

Size: 426 Bytes

Versions: 17

Compression:

Stored size: 426 Bytes

Contents

#!/usr/bin/env rake

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task :default => :spec
task :test => :spec

require 'yard'
namespace :doc do
  YARD::Rake::YardocTask.new do |task|
    task.files   = ['LICENSE.md', 'lib/**/*.rb']
    task.options = [
      '--tag', 'authenticated:Requires Authentication',
      '--markup', 'markdown',
    ]
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
mtgox-0.8.0 Rakefile
mtgox-0.7.5 Rakefile
guten-mtgox-0.8.0 Rakefile
mtgox-0.7.4 Rakefile
mtgox-0.7.3 Rakefile
mtgox-0.7.2 Rakefile
mtgox-0.7.1 Rakefile
mtgox-0.7.0 Rakefile
mtgox-0.6.0 Rakefile
mtgox-0.5.1 Rakefile
mtgox-0.5.0 Rakefile
mtgox-0.4.1 Rakefile
mtgox-0.4.0 Rakefile
mtgox-0.3.1 Rakefile
mtgox-0.3.0 Rakefile
mtgox-0.2.0 Rakefile
mtgox-0.1.0 Rakefile