Sha256: 32e3d45d855a4b909fd1927b9532d092165ad46018b5637b89e239aa3b3e0336

Contents?: true

Size: 653 Bytes

Versions: 20

Compression:

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

require 'vite_ruby'
ViteRuby.install_tasks
ViteRuby.config.root # Ensure the engine is set as the root.

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

require 'bundler/gem_tasks'

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
maglevcms-1.7.3 Rakefile
maglevcms-1.7.2 Rakefile
maglevcms-1.7.1 Rakefile
maglevcms-1.7.0 Rakefile
maglevcms-1.6.1 Rakefile
maglevcms-1.6.0 Rakefile
maglevcms-1.5.1 Rakefile
maglevcms-1.4.0 Rakefile
maglevcms-1.3.0 Rakefile
maglevcms-1.2.2 Rakefile
maglevcms-1.2.1 Rakefile
maglevcms-1.2.0 Rakefile
maglevcms-1.1.7 Rakefile
maglevcms-1.1.6 Rakefile
maglevcms-1.1.5 Rakefile
maglevcms-1.1.4 Rakefile
maglevcms-1.1.3 Rakefile
maglevcms-1.1.2 Rakefile
maglevcms-1.1.1 Rakefile
maglevcms-1.1.0 Rakefile