Skip to content
Snippets Groups Projects
Select Git revision
  • 3649c0ccaff0be765a233beed0b46224d6ac021d
  • master default protected
  • fix-typo-readme
  • implement_lightweight_mode_msoffice
  • video_support
  • 0.4.0
  • 0.3.1
  • 0.3.0
  • 0.2.0
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
13 results

harmless.py

Blame
  • Forked from jvoisin / mat2
    Source project has a limited visibility.
    Rakefile 678 B
    begin
      require 'bundler/setup'
    rescue LoadError
      puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
    end
    
    require 'rdoc/task'
    
    RDoc::Task.new(:rdoc) do |rdoc|
      rdoc.rdoc_dir = 'rdoc'
      rdoc.title    = 'NestModels'
      rdoc.options << '--line-numbers'
      rdoc.rdoc_files.include('README.md')
      rdoc.rdoc_files.include('lib/**/*.rb')
    end
    
    APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
    load 'rails/tasks/engine.rake'
    
    load 'rails/tasks/statistics.rake'
    
    require 'bundler/gem_tasks'
    
    require 'rake/testtask'
    
    Rake::TestTask.new(:test) do |t|
      t.libs << 'test'
      t.pattern = 'test/**/*_test.rb'
      t.verbose = true
    end
    
    task default: :test