Sha256: fd3800a442c561c2dd48ff6aea99d5726263563827c020d2473902f5d3076813

Contents?: true

Size: 554 Bytes

Versions: 17

Compression:

Stored size: 554 Bytes

Contents

require 'rubygems'
require 'rake'

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rspec_opts = '--backtrace'
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

begin
  require 'yard'
  YARD::Rake::YardocTask.new
rescue LoadError
  task :yardoc do
    abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
ffi-icu-0.5.3 Rakefile
ffi-icu-0.5.2 Rakefile
ffi-icu-0.5.1 Rakefile
ffi-icu-0.5.0 Rakefile
ffi-icu-0.4.3 Rakefile
ffi-icu-0.4.2 Rakefile
ffi-icu-0.4.1 Rakefile
ffi-icu-0.4.0 Rakefile
ffi-icu-0.3.0 Rakefile
ffi-icu-0.2.0 Rakefile
ffi-icu-0.1.10 Rakefile
ffi-icu-0.1.9 Rakefile
ffi-icu-0.1.8 Rakefile
ffi-icu-0.1.7 Rakefile
ffi-icu-0.1.6 Rakefile
ffi-icu-0.1.5 Rakefile
ffi-icu-0.1.4 Rakefile