Sha256: c9f1034c54188fbcd9c24107a2410d9165c0def6ed82c067b51b00679c01f717

Contents?: true

Size: 309 Bytes

Versions: 5

Compression:

Stored size: 309 Bytes

Contents

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

RSpec::Core::RakeTask.new

task :test => :spec

begin
  require 'rubocop/rake_task'
  RuboCop::RakeTask.new
rescue LoadError
  task :rubocop do
    $stderr.puts 'RuboCop is disabled'
  end
end

task :default => [:spec, :rubocop]

Version data entries

5 entries across 5 versions & 4 rubygems

Version Path
omniauth-dotloop-1.0.0 Rakefile
omniauth-contactually-1.0.0 Rakefile
omniauth-tecnologiedemocratiche-1.3.1 Rakefile
omniauth-tecnologiedemocratiche-1.3.0 Rakefile
omniauth-oauth2-1.2.0 Rakefile