Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • invisible-captcha
  • upgrade/dependencies
  • 196-feature-request-ability-to-export-and-move-a-group-to-a-second-crabgrass-instance
  • test-more
  • test-buster
  • fix-staging
  • staging
  • feature/block-spam
  • release/0.6.4
  • 295-bug-in-namespace-function
  • refactor/advanced-fixtures
  • 255-nokogiri-security-update
  • 215-access-rights-to-pages-after-group-destruction
  • 0.6.3
  • 0.6.2
  • 0.6.1
  • 0.6.0
  • 0.6.0-beta
19 results

Vagrantfile

Blame
  • Forked from Liberate / crabgrass
    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