Sha256: 46c8cd5fe249783c6a24f858608c56b3f0c2cda4cd8957b34414b6103c27b3d4

Contents?: true

Size: 714 Bytes

Versions: 82

Compression:

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

APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
load 'rails/tasks/engine.rake'

load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

require 'rake/testtask'

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

task default: :test

Version data entries

82 entries across 82 versions & 1 rubygems

Version Path
tramway-event-1.9.27.1 Rakefile
tramway-event-1.9.27 Rakefile
tramway-event-1.9.26 Rakefile
tramway-event-1.9.25.1 Rakefile
tramway-event-1.9.25 Rakefile
tramway-event-1.9.24.1 Rakefile
tramway-event-1.9.24 Rakefile
tramway-event-1.9.23.2 Rakefile
tramway-event-1.9.23.1 Rakefile
tramway-event-1.9.23 Rakefile
tramway-event-1.9.22 Rakefile
tramway-event-1.9.21.1 Rakefile
tramway-event-1.9.21 Rakefile
tramway-event-1.9.20.1 Rakefile
tramway-event-1.9.20 Rakefile
tramway-event-1.9.19.8 Rakefile
tramway-event-1.9.19.7 Rakefile
tramway-event-1.9.19.6 Rakefile
tramway-event-1.9.19.5 Rakefile
tramway-event-1.9.19.4 Rakefile