Sha256: d370719eebc48d16b0d1edff54eb3c15a14f62017d11e168857cddc7ef349edb

Contents?: true

Size: 716 Bytes

Versions: 11

Compression:

Stored size: 716 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    = 'ErpTxnsAndAccts'
  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

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)
task :default => :spec

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
erp_txns_and_accts-4.2.0 Rakefile
erp_txns_and_accts-4.0.0 Rakefile
erp_txns_and_accts-3.1.1 Rakefile
erp_txns_and_accts-3.0.6 Rakefile
erp_txns_and_accts-3.1.0 Rakefile
erp_txns_and_accts-3.0.5 Rakefile
erp_txns_and_accts-3.0.4 Rakefile
erp_txns_and_accts-3.0.3 Rakefile
erp_txns_and_accts-3.0.2 Rakefile
erp_txns_and_accts-3.0.1 Rakefile
erp_txns_and_accts-3.0.0 Rakefile