Sha256: ead5563b93e8478abafd413621ca5f45107bae21da1be8b8cc5799d2118c6e42

Contents?: true

Size: 712 Bytes

Versions: 13

Compression:

Stored size: 712 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
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'ActiveAdminEditor'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end




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

13 entries across 13 versions & 1 rubygems

Version Path
active_admin_editor-0.3.6 Rakefile
active_admin_editor-0.3.5 Rakefile
active_admin_editor-0.3.4 Rakefile
active_admin_editor-0.3.3 Rakefile
active_admin_editor-0.3.2 Rakefile
active_admin_editor-0.3.1 Rakefile
active_admin_editor-0.3.0 Rakefile
active_admin_editor-0.2.4 Rakefile
active_admin_editor-0.2.3 Rakefile
active_admin_editor-0.2.2 Rakefile
active_admin_editor-0.2.1 Rakefile
active_admin_editor-0.2.0 Rakefile
active_admin_editor-0.1.0 Rakefile