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

16 lines
313 B
Text
Raw Normal View History

require 'rubygems'
require 'bundler'
Bundler.setup
require 'rake'
require 'mg'
2010-08-10 16:04:19 -04:00
MG.new('oa-enterprise.gemspec')
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
spec.libs << '../oa-core/lib' << 'lib' << 'spec'
spec.spec_files = FileList['spec/**/*_spec.rb']
end
task :default => :spec