Sha256: 8799e09451e947ef613c24db93978549a62229018587b31727921bb43ad692c3

Contents?: true

Size: 449 Bytes

Versions: 12

Compression:

Stored size: 449 Bytes

Contents

#!/usr/bin/env rake

require 'bundler'
Bundler::GemHelper.install_tasks

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

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

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

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
multi_xml-0.4.4 Rakefile
multi_xml-0.4.3 Rakefile
multi_xml-0.4.2 Rakefile
nutshell-crm-0.0.6.alpha vendor/bundle/gems/multi_xml-0.4.1/Rakefile
nutshell-crm-0.0.5 vendor/bundle/gems/multi_xml-0.4.1/Rakefile
nutshell-crm-0.0.4 vendor/bundle/gems/multi_xml-0.4.1/Rakefile
nutshell-crm-0.0.3 vendor/bundle/gems/multi_xml-0.4.1/Rakefile
nutshell-crm-0.0.2 vendor/bundle/gems/multi_xml-0.4.1/Rakefile
nutshell-crm-0.0.1 vendor/bundle/gems/multi_xml-0.4.1/Rakefile
multi_xml-0.4.1 Rakefile
multi_xml-0.4.0 Rakefile
multi_xml-0.3.0 Rakefile