1
0
Fork 0
mirror of https://github.com/omniauth/omniauth.git synced 2022-11-09 12:31:49 -05:00
omniauth--omniauth/omniauth/Rakefile

14 lines
279 B
Ruby

require 'rubygems'
require 'bundler'
Bundler.setup
require 'rake'
require 'mg'
MG.new('omniauth.gemspec')
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |s|
s.rspec_opts = "--format=#{ENV['RSPEC_FORMAT'] || 'nested'} --colour"
end
task :default => :spec