Sha256: f6e07b9ad7192b7ea2ca0f521961dbe6a3745f95fa4b3ece208962c4352aca31

Contents?: true

Size: 621 Bytes

Versions: 7

Compression:

Stored size: 621 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task default: :spec

begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'GoogleSafeBrowsing'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end



Bundler::GemHelper.install_tasks

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
google_safe_browsing-0.6.5 Rakefile
google_safe_browsing-0.6.4 Rakefile
google_safe_browsing-0.6.3 Rakefile
google_safe_browsing-0.6.2 Rakefile
google_safe_browsing-0.6.1 Rakefile
google_safe_browsing-0.6.0 Rakefile
google_safe_browsing-0.5.1 Rakefile