Sha256: 083b610df58ba4943350724f00e6a59f674e53088b05d205268e8537b30b3996

Contents?: true

Size: 774 Bytes

Versions: 7

Compression:

Stored size: 774 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

Bundler::GemHelper.install_tasks

APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
load 'rails/tasks/engine.rake'

Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
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
task 'konacha:serve' => 'app:konacha:serve'
task 'konacha:run' => 'app:konacha:run'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
active_admin_editor-1.1.0 Rakefile
active_admin_editor-1.0.6 Rakefile
active_admin_editor-1.0.5 Rakefile
active_admin_editor-1.0.4 Rakefile
active_admin_editor-1.0.3 Rakefile
active_admin_editor-1.0.1 Rakefile
active_admin_editor-1.0.0 Rakefile