Sha256: 1937f94244831fcfcae2831955446fb9d9e2e85ef4822c3e20e969dc8c3f02ef

Contents?: true

Size: 794 Bytes

Versions: 83

Compression:

Stored size: 794 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    = 'EnjuNdl'
  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 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
    spec.pattern = FileList['spec/**/*_spec.rb']
end

task :default => :spec

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
enju_ndl-0.3.1 Rakefile
enju_ndl-0.3.0 Rakefile
enju_ndl-0.3.0.rc.1 Rakefile
enju_ndl-0.3.0.beta.1 Rakefile
enju_ndl-0.2.3 Rakefile
enju_ndl-0.2.2 Rakefile
enju_ndl-0.2.1 Rakefile
enju_ndl-0.2.0 Rakefile
enju_ndl-0.2.0.beta.3 Rakefile
enju_ndl-0.2.0.beta.2 Rakefile
enju_ndl-0.2.0.beta.1 Rakefile
enju_ndl-0.1.1 Rakefile
enju_ndl-0.1.0 Rakefile
enju_ndl-0.1.0.pre38 Rakefile
enju_ndl-0.1.0.pre37 Rakefile
enju_ndl-0.1.0.pre36 Rakefile
enju_ndl-0.1.0.pre35 Rakefile
enju_ndl-0.1.0.pre34 Rakefile
enju_ndl-0.1.0.pre33 Rakefile
enju_ndl-0.1.0.pre32 Rakefile