Sha256: fe7b2949c3b929f7c3aa65a5126d32f763e82851ff3480fc617be3bcd340743a
Contents?: true
Size: 584 Bytes
Versions: 4
Compression:
Stored size: 584 Bytes
Contents
require 'rubygems' require 'rake' begin require 'rubygems/tasks' Gem::Tasks.new rescue LoadError => e warn e.message warn "Run `gem install rubygems-tasks` to install 'rubygems/tasks'." end begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new rescue LoadError => e task :spec do abort "Please run `gem install rspec` to install RSpec." end end task :test => :spec task :default => :spec begin require 'yard' YARD::Rake::YardocTask.new rescue LoadError => e task :yard do abort "Please run `gem install yard` to install YARD." end end
Version data entries
4 entries across 4 versions & 3 rubygems
Version | Path |
---|---|
tolq-ffi-hunspell-0.5.0 | Rakefile |
ffi-hunspell-wtchappell-0.4.0 | Rakefile |
ffi-hunspell-0.4.0 | Rakefile |
ffi-hunspell-0.3.1 | Rakefile |