Sha256: 6e3cf84def74dd8f43f5f90ba99bbb268f8ed81cd29d8a5b2ab3bbf7c3578d43

Contents?: true

Size: 505 Bytes

Versions: 5

Compression:

Stored size: 505 Bytes

Contents

require "bundler/gem_tasks"

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |t|
  t.rspec_opts = ["-c", "-f progress", "-Ilib"]
  t.pattern = "spec/**/*_spec.rb"
  t.verbose = true
end
task :spec => :compile

require 'rake/extensiontask'
spec = eval File.read('asciipack.gemspec')
Rake::ExtensionTask.new('asciipack', spec) do |ext|
  ext.cross_compile = true
  ext.lib_dir = File.join(*['lib', 'asciipack', ENV['FAT_DIR']].compact)
end

task :default => [:spec]

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
asciipack-0.2.4 Rakefile
asciipack-0.2.3 Rakefile
asciipack-0.2.2 Rakefile
asciipack-0.2.1 Rakefile
asciipack-0.2.0 Rakefile