Sha256: 0de677fc2a73dbdbd99ed98d5611d44314b959f41d20db5b0a1c4aa11fa07438

Contents?: true

Size: 955 Bytes

Versions: 76

Compression:

Stored size: 955 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    = 'EnjuLibrary'
  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

76 entries across 74 versions & 2 rubygems

Version Path
enju_library-0.3.5 Rakefile
enju_library-0.3.4 Rakefile
enju_library-0.3.3 Rakefile
enju_library-0.3.2 Rakefile
enju_library-0.3.1 Rakefile
enju_library-0.3.0 Rakefile
enju_library-0.3.0.rc.1 Rakefile
enju_library-0.3.0.beta.2 Rakefile
enju_library-0.2.5 Rakefile
enju_library-0.2.4 Rakefile
enju_library-0.2.3 Rakefile
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/bundler/gems/enju_library-d36f415e177e/Rakefile
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_library-0.2.1/Rakefile
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_library-0.2.2/Rakefile
enju_library-0.2.2 Rakefile
enju_library-0.2.1 Rakefile
enju_library-0.2.0 Rakefile
enju_library-0.2.0.beta.10 Rakefile
enju_library-0.2.0.beta.9 Rakefile
enju_library-0.2.0.beta.8 Rakefile