Sha256: 00ee98fa365e317d63235186be83e00d477c3d91c61bd9b9ec9687d731249829

Contents?: true

Size: 424 Bytes

Versions: 5

Compression:

Stored size: 424 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

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

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

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
html_to_prosemirror-0.2.0 Rakefile
prosemirror_to_html-0.2.0 Rakefile
prosemirror_to_html-0.1.0 Rakefile
html_to_prosemirror-0.1.1 Rakefile
html_to_prosemirror-0.1.0 Rakefile