Sha256: 9caebd7dcbca26acd8f3f33296f7199ae3d11cc712ccaa052bbb80fb4485c34d
Contents?: true
Size: 686 Bytes
Versions: 15
Compression:
Stored size: 686 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 'rubocop-ci' require 'rdoc/task' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'UiComponents' 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' load 'rails/tasks/statistics.rake' Bundler::GemHelper.install_tasks Dir['lib/tasks/*.rake'].each { |r| load r } load 'tasks/bower.rake' task build: :'bower:update:prune'
Version data entries
15 entries across 15 versions & 1 rubygems