Sha256: 3c147afc7a52b8968cd30072f6863e541d8f2842e5bbff62e6990f6e14ffcf64

Contents?: true

Size: 709 Bytes

Versions: 15

Compression:

Stored size: 709 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Wobauth'
  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'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |t| 
  t.pattern = Dir.glob('spec/**/*_spec.rb')
  # t.rspec_opts = '--format documentation'
end

task default: [:spec]

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
wobauth-6.0.1 Rakefile
wobauth-6.0.0 Rakefile
wobauth-5.1.3 Rakefile
wobauth-5.1.2 Rakefile
wobauth-5.1.1 Rakefile
wobauth-5.1.0 Rakefile
wobauth-5.0.2 Rakefile
wobauth-5.0.1 Rakefile
wobauth-5.0.0 Rakefile
wobauth-4.0.0 Rakefile
wobauth-3.4.8 Rakefile
wobauth-3.4.7 Rakefile
wobauth-3.4.6 Rakefile
wobauth-3.4.5 Rakefile
wobauth-3.4.4 Rakefile