Sha256: 69c3587194bf4c214ef47529aade0ab2f04755dae733a01d91f9b3262a5a1962

Contents?: true

Size: 247 Bytes

Versions: 11

Compression:

Stored size: 247 Bytes

Contents

#!/usr/bin/env rake
require 'bundler/gem_tasks'

task :compile do
  Dir.chdir('src') do
    sh 'ruby extconf.rb'
    sh 'make'
  end
end

require 'rake/testtask'
Rake::TestTask.new do |t|
  t.pattern = 'test/*_spec.rb'
end

task :test => :compile

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mockspotify-0.1.9 Rakefile
mockspotify-0.1.8 Rakefile
mockspotify-0.1.7 Rakefile
mockspotify-0.1.6 Rakefile
mockspotify-0.1.5 Rakefile
mockspotify-0.1.4 Rakefile
mockspotify-0.1.3 Rakefile
mockspotify-0.1.2 Rakefile
mockspotify-0.1.1 Rakefile
mockspotify-0.1.0 Rakefile
mockspotify-0.0.1 Rakefile