Sha256: 19ace99799cb76b4c99c40b81a63fe2810ee4d97bc2edb11308d3451cf4424af
Contents?: true
Size: 683 Bytes
Versions: 5
Compression:
Stored size: 683 Bytes
Contents
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 = 'ActiveAdminJcrop' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) load 'rails/tasks/engine.rake' Bundler::GemHelper.install_tasks require 'rake/testtask' Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.libs << 'test' t.pattern = 'test/**/*_test.rb' t.verbose = false end task default: :test
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
active_admin_jcrop-0.0.10 | Rakefile |
active_admin_jcrop-0.0.9 | Rakefile |
active_admin_jcrop-0.0.7 | Rakefile |
active_admin_jcrop-0.0.6 | Rakefile |
active_admin_jcrop-0.0.5 | Rakefile |