Sha256: 7a7154d7263ed51d843e96c3d2547d42f22d6dd08ee2bb748589292f70afd063

Contents?: true

Size: 583 Bytes

Versions: 5

Compression:

Stored size: 583 Bytes

Contents

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

require 'rdoc/task'

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






Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
google-directory-0.0.6 Rakefile
google-directory-0.0.5 Rakefile
google-directory-0.0.4 Rakefile
google-directory-0.0.3 Rakefile
google-directory-0.0.2 Rakefile