Sha256: ca1a8380119b547024e51c6aafb609da6db9526228481712d3bfb729c7b37c84

Contents?: true

Size: 418 Bytes

Versions: 4

Compression:

Stored size: 418 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
Bundler::GemHelper.install_tasks

def cmd(command)
  puts command
  raise unless system command
end

# Import all our rake tasks
FileList['tasks/**/*.rake'].each { |task| import task }

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end
# Run the specs
task :default => :spec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
active_export-0.4.0 Rakefile
active_export-0.3.0 Rakefile
active_export-0.2.0 Rakefile
active_export-0.1.0 Rakefile