Sha256: 36d454e72773a6c48667d5d2fceb849cb304a8241926a698507041513b36cf0b

Contents?: true

Size: 706 Bytes

Versions: 22

Compression:

Stored size: 706 Bytes

Contents

# frozen_string_literal: true

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    = 'FlowcommerceSpree'
  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', __dir__)
load 'rails/tasks/engine.rake'

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

22 entries across 22 versions & 1 rubygems

Version Path
flowcommerce_spree-0.0.22 Rakefile
flowcommerce_spree-0.0.21 Rakefile
flowcommerce_spree-0.0.20 Rakefile
flowcommerce_spree-0.0.19 Rakefile
flowcommerce_spree-0.0.18 Rakefile
flowcommerce_spree-0.0.17 Rakefile
flowcommerce_spree-0.0.16 Rakefile
flowcommerce_spree-0.0.15 Rakefile
flowcommerce_spree-0.0.14 Rakefile
flowcommerce_spree-0.0.13 Rakefile
flowcommerce_spree-0.0.12 Rakefile
flowcommerce_spree-0.0.11 Rakefile
flowcommerce_spree-0.0.10 Rakefile
flowcommerce_spree-0.0.9 Rakefile
flowcommerce_spree-0.0.8 Rakefile
flowcommerce_spree-0.0.7 Rakefile
flowcommerce_spree-0.0.6 Rakefile
flowcommerce_spree-0.0.5 Rakefile
flowcommerce_spree-0.0.4 Rakefile
flowcommerce_spree-0.0.3 Rakefile