Sha256: a1d5cca654f785025c1550a11d12f1424144d56fa2f02a0c350cd8dc479179a3
Contents?: true
Size: 520 Bytes
Versions: 6
Compression:
Stored size: 520 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' 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
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
ffi-icu-0.1.3 | Rakefile |
ffi-icu-0.1.2 | Rakefile |
ffi-icu-0.1.1 | Rakefile |
ffi-icu-0.1.0 | Rakefile |
ffi-icu-0.0.9 | Rakefile |
ffi-icu-0.0.8 | Rakefile |