Sha256: 330bc806584f5d62f957e4a42adad2c7e1fb18b4b0fbf3f45eb3a99adc54a683

Contents?: true

Size: 799 Bytes

Versions: 12

Compression:

Stored size: 799 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    = 'EnjuBookmark'
  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

12 entries across 12 versions & 1 rubygems

Version Path
enju_bookmark-0.2.2 Rakefile
enju_bookmark-0.2.1 Rakefile
enju_bookmark-0.2.0 Rakefile
enju_bookmark-0.2.0.beta.5 Rakefile
enju_bookmark-0.2.0.beta.3 Rakefile
enju_bookmark-0.2.0.beta.2 Rakefile
enju_bookmark-0.2.0.beta.1 Rakefile
enju_bookmark-0.1.3 Rakefile
enju_bookmark-0.1.2 Rakefile
enju_bookmark-0.1.2.pre23 Rakefile
enju_bookmark-0.1.2.pre22 Rakefile
enju_bookmark-0.1.2.pre21 Rakefile