Sha256: 36672ebcfe36e050dfc73ed372a1b010d0a1e7a411da72ec9e2ff80ffffc9ff6

Contents?: true

Size: 800 Bytes

Versions: 10

Compression:

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

10 entries across 10 versions & 1 rubygems

Version Path
enju_bookmark-0.0.12 Rakefile
enju_bookmark-0.0.11 Rakefile
enju_bookmark-0.0.10 Rakefile
enju_bookmark-0.0.9 Rakefile
enju_bookmark-0.0.8 Rakefile
enju_bookmark-0.0.7 Rakefile
enju_bookmark-0.0.6 Rakefile
enju_bookmark-0.0.5 Rakefile
enju_bookmark-0.0.4 Rakefile
enju_bookmark-0.0.3 Rakefile