Sha256: fc1151045534c56b614f5e6fe6502b696214790ed560ea93349d693214b98396

Contents?: true

Size: 737 Bytes

Versions: 3

Compression:

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

APP_RAKEFILE = File.expand_path('spec/support/rails_app/Rakefile', __dir__)
load 'rails/tasks/engine.rake'

load 'rails/tasks/statistics.rake'

Bundler::GemHelper.install_tasks


begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)
  task :test => :spec
rescue LoadError
  # no rspec available
end

task default: :test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
eac_users_support-0.5.0 Rakefile
eac_users_support-0.4.0 Rakefile
eac_users_support-0.3.4 Rakefile