Sha256: 5e734949112572d15c1c559d7bb16c34d627345f3d9c0474fa36ff37c49edcb9
Contents?: true
Size: 706 Bytes
Versions: 4
Compression:
Stored size: 706 Bytes
Contents
begin require 'rake' rescue LoadError require 'rubygems' gem 'rake', '~> 0.8.3.1' require 'rake' end require 'pathname' BASE_PATH = Pathname.new(__FILE__).dirname LIB_PATH = BASE_PATH + 'lib' PKG_PATH = BASE_PATH + 'pkg' DOC_PATH = BASE_PATH + 'rdoc' $LOAD_PATH.unshift LIB_PATH.to_s require 'mtgox/version' NAME = 'mt_gox' CLASS_NAME = MtGox # Load rakefile tasks Dir['tasks/*.rake'].sort.each { |file| load file } # Project-specific tasks 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
mt_gox-0.7.7 | Rakefile |
mt_gox-0.7.6 | Rakefile |
mt_gox-0.7.5 | Rakefile |
mt_gox-0.7.3 | Rakefile |