Sha256: 78cdb5cfd64c4bc58556d87575c03885b676e93fe7add77d4f61a3877a78ca77

Contents?: true

Size: 456 Bytes

Versions: 16

Compression:

Stored size: 456 Bytes

Contents

require 'rubygems'
require 'rake'

begin
  gem 'rspec'
  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
  gem 'yard', '~> 0.9.18'
  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

16 entries across 16 versions & 1 rubygems

Version Path
ffi-wiring_pi-1.0.3 Rakefile
ffi-wiring_pi-1.0.2 Rakefile
ffi-wiring_pi-1.0.1 Rakefile
ffi-wiring_pi-1.0.0 Rakefile
ffi-wiring_pi-0.6.0 Rakefile
ffi-wiring_pi-0.5.0 Rakefile
ffi-wiring_pi-0.4.0 Rakefile
ffi-wiring_pi-0.3.0 Rakefile
ffi-wiring_pi-0.2.0 Rakefile
ffi-wiring_pi-0.1.6 Rakefile
ffi-wiring_pi-0.1.5 Rakefile
ffi-wiring_pi-0.1.4 Rakefile
ffi-wiring_pi-0.1.3 Rakefile
ffi-wiring_pi-0.1.2 Rakefile
ffi-wiring_pi-0.1.1 Rakefile
ffi-wiring_pi-0.1.0 Rakefile