Sha256: d155b67649a9559c7815dda4b02c18c7bdd8cdfffcac5cbcda50fb3ac9719f12

Contents?: true

Size: 406 Bytes

Versions: 7

Compression:

Stored size: 406 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

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

task :test => :spec

namespace :doc do
  require 'yard'
  YARD::Rake::YardocTask.new do |task|
    task.files   = ['README.md', 'LICENSE.md', 'lib/**/*.rb']
    task.options = [
      '--output-dir', 'doc/yard',
      '--markup', 'markdown',
      '--charset', 'UTF-8',
        ]
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
douban_api-0.1.6 Rakefile
douban_api-0.1.5 Rakefile
douban_api-0.1.4 Rakefile
douban_api-0.1.3 Rakefile
douban_api-0.1.2 Rakefile
douban_api-0.1.1 Rakefile
douban_api-0.1.0 Rakefile