Sha256: 6f8d4f93d3116fc96e88b26c3808e69e5274397d562b4cfa2e128e3ffbee8794

Contents?: true

Size: 308 Bytes

Versions: 5

Compression:

Stored size: 308 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 => %i[spec rubocop]

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
omniauth-oauth2-1.6.0 Rakefile
omniauth-ynab-0.0.3 Rakefile
omniauth-ynab-0.0.1 Rakefile
omniauth-mspcfo-0.0.1 Rakefile
omniauth-oauth2-1.5.0 Rakefile