Sha256: 5011e8a255b07964899b8a5c35251982bf659639966b6f2bf2d213983014176d

Contents?: true

Size: 543 Bytes

Versions: 12

Compression:

Stored size: 543 Bytes

Contents

#!/usr/bin/env rake
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

desc 'Run specs'
RSpec::Core::RakeTask.new

begin
  require 'rubocop/rake_task'
  RuboCop::RakeTask.new
rescue LoadError
  task :rubocop do
    warn 'Rubocop is disabled'
  end
end

namespace :sinatra do
  task :start do
    system 'bundle exec shotgun' \
           ' --server=thin --port=3000' \
           ' examples/sinatra/config.ru'
  end
end

desc 'Run specs'
task default: %i[spec rubocop]
task test: :spec
task :guard do
  system 'bundle exec guard'
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
omniauth-auth0-3.1.1 Rakefile
omniauth-auth0-3.1.0 Rakefile
omniauth-auth0-3.0.0 Rakefile
omniauth-auth0-2.6.0 Rakefile
omniauth-auth0-2.5.0 Rakefile
omniauth-auth0-2.4.2 Rakefile
omniauth-auth0-2.4.1 Rakefile
omniauth-auth0-2.4.0 Rakefile
omniauth-auth0-2.3.1 Rakefile
omniauth-auth0-2.3.0 Rakefile
omniauth-auth0-2.2.0 Rakefile
omniauth-auth0-2.1.0 Rakefile