Sha256: 0474e7357c802599a1a81baf22e8b693cfab48ea5f82e57a7762fa0e7b441594

Contents?: true

Size: 637 Bytes

Versions: 7

Compression:

Stored size: 637 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
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    = 'QuickbooksWebConnector'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
quickbooks_web_connector-0.1.0 Rakefile
quickbooks_web_connector-0.0.6 Rakefile
quickbooks_web_connector-0.0.5 Rakefile
quickbooks_web_connector-0.0.4 Rakefile
quickbooks_web_connector-0.0.3 Rakefile
quickbooks_web_connector-0.0.2 Rakefile
quickbooks_web_connector-0.0.1 Rakefile