Sha256: 50b71ee7b0bb3c396586fd4b7af2327f5a7c2b825498154667202c5d6def10c9

Contents?: true

Size: 953 Bytes

Versions: 96

Compression:

Stored size: 953 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    = 'EnjuBiblio'
  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

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

96 entries across 95 versions & 2 rubygems

Version Path
enju_biblio-0.2.5 Rakefile
enju_biblio-0.2.4 Rakefile
enju_biblio-0.2.3 Rakefile
enju_biblio-0.2.2 Rakefile
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_biblio-0.2.1/Rakefile
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_biblio-0.2.0/Rakefile
enju_biblio-0.2.1 Rakefile
enju_biblio-0.2.0 Rakefile
enju_biblio-0.2.0.beta.4 Rakefile
enju_biblio-0.2.0.beta.3 Rakefile
enju_biblio-0.2.0.beta.2 Rakefile
enju_biblio-0.2.0.beta.1 Rakefile
enju_biblio-0.1.3 Rakefile
enju_biblio-0.1.2 Rakefile
enju_biblio-0.1.1 Rakefile
enju_biblio-0.1.0 Rakefile
enju_biblio-0.1.0.pre71 Rakefile
enju_biblio-0.1.0.pre70 Rakefile
enju_biblio-0.1.0.pre69 Rakefile
enju_biblio-0.1.0.pre68 Rakefile