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

15 lines
284 B
Text
Raw Normal View History

require 'rubygems'
require 'bundler'
Bundler.setup
require 'rake'
require 'mg'
2010-08-10 15:04:19 -05:00
MG.new('oa-enterprise.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