Sha256: a2a5043c0a0e698015b8f96f06db5dfb13c4791d27accf66cefdcff1bb1a61de

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 & 3 rubygems

Version Path
omniauth-shootproof-1.0.0 Rakefile
omniauth-openshift-1.0.0 Rakefile
omniauth-oauth2-1.4.0 Rakefile
omniauth-oauth2-1.3.1 Rakefile
omniauth-oauth2-1.3.0 Rakefile