Sha256: 3e907b7299f085eab074d7fd16f6199fab16d6e4cdfd43fa6c105f70a1afc1fa
Contents?: true
Size: 564 Bytes
Versions: 123
Compression:
Stored size: 564 Bytes
Contents
#!/usr/bin/env rake begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end # Our tasks load 'lib/tasks/effective_datatables_tasks.rake' # Testing tasks APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) load 'rails/tasks/engine.rake' Bundler::GemHelper.install_tasks require 'rspec/core' require 'rspec/core/rake_task' desc "Run all specs in spec directory (excluding plugin specs)" RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare') task :default => :spec
Version data entries
123 entries across 123 versions & 1 rubygems
Version | Path |
---|---|
effective_datatables-1.0.2 | Rakefile |
effective_datatables-1.0.1 | Rakefile |
effective_datatables-1.0.0 | Rakefile |