Sha256: 324b907b47c37b67db9e7e0999de3c343195b2c9ccf4e820341686be2a089275

Contents?: true

Size: 1.19 KB

Versions: 7

Compression:

Stored size: 1.19 KB

Contents

require 'rubygems'
require 'bundler'
Bundler.setup :default, :test, :development

Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec
task :default => :spec

begin
  require 'yard'
  YARD_OPTS = ['-m', 'markdown', '-M', 'maruku']
  DOC_FILES = ['lib/**/*.rb', 'README.markdown']
  
  YARD::Rake::YardocTask.new(:doc) do |t|
    t.files   = DOC_FILES
    t.options = YARD_OPTS
  end
  
  namespace :doc do
    YARD::Rake::YardocTask.new(:pages) do |t|
      t.files   = DOC_FILES
      t.options = YARD_OPTS + ['-o', '../grape.doc']
    end
    
    namespace :pages do
      desc 'Generate and publish YARD docs to GitHub pages.'
      task :publish => ['doc:pages'] do
        Dir.chdir(File.dirname(__FILE__) + '/../grape.doc') do
          system("git add .")
          system("git add -u")
          system("git commit -m 'Generating docs for version #{version}.'")
          system("git push origin gh-pages")
        end
      end
    end
  end
rescue LoadError
  puts "You need to install YARD."
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
grape-0.2.1.1 Rakefile
grape-0.2.3 Rakefile
fragrant-0.0.5 vendor/bundle/ruby/1.9.1/gems/grape-0.2.2/Rakefile
grape-0.2.2 Rakefile
grape-0.2.1 Rakefile
grape-0.2.0 Rakefile
grape-0.1.5 Rakefile