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

Version Path
ad2games-ui_components-2.3.0 Rakefile
ad2games-ui_components-2.1.0 Rakefile
ad2games-ui_components-2.0.14 Rakefile
ad2games-ui_components-2.0.12 Rakefile
ad2games-ui_components-2.0.11 Rakefile
ad2games-ui_components-2.0.10 Rakefile
ad2games-ui_components-2.0.9 Rakefile
ad2games-ui_components-2.0.8 Rakefile
ad2games-ui_components-2.0.7 Rakefile
ad2games-ui_components-2.0.5 Rakefile
ad2games-ui_components-2.0.4 Rakefile
ad2games-ui_components-2.0.3 Rakefile
ad2games-ui_components-2.0.2 Rakefile
ad2games-ui_components-2.0.1 Rakefile
ad2games-ui_components-2.0.0 Rakefile