Sha256: d7cedafb2b0635b7482d8a7d4b4f4800a38a1316bb818472d6f8df145baea1e6

Contents?: true

Size: 882 Bytes

Versions: 51

Compression:

Stored size: 882 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'
require 'ui_bibz/infos'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.main      = 'README.md'
  rdoc.rdoc_dir  = "rdoc-v#{UiBibz::VERSION}"
  rdoc.title     = "Ui Bibz Documentation v#{UiBibz::VERSION}"
  rdoc.generator = 'fivefish'
  # rdoc.options << '--line-numbers'
  rdoc.options << '--all'

  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/ui_bibz/ui/**/*.rb')
  rdoc.rdoc_files.include('lib/ui_bibz/helpers/*.rb')
end

require 'bundler/gem_tasks'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
  t.ruby_opts += ['-W1'] # to remove to many warnings
end

task default: :test

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
ui_bibz-4.0.0.beta14 Rakefile
ui_bibz-4.0.0.beta13 Rakefile
ui_bibz-4.0.0.beta10 Rakefile
ui_bibz-4.0.0.beta9 Rakefile
ui_bibz-4.0.0.beta8 Rakefile
ui_bibz-4.0.0.beta7 Rakefile
ui_bibz-4.0.0.beta6 Rakefile
ui_bibz-4.0.0.beta4 Rakefile
ui_bibz-4.0.0.beta3 Rakefile
ui_bibz-3.0.13 Rakefile
ui_bibz-3.0.12 Rakefile
ui_bibz-3.0.11 Rakefile
ui_bibz-3.0.10 Rakefile
ui_bibz-3.0.9 Rakefile
ui_bibz-3.0.8 Rakefile
ui_bibz-3.0.7 Rakefile
ui_bibz-3.0.6 Rakefile
ui_bibz-3.0.5 Rakefile
ui_bibz-3.0.4 Rakefile
ui_bibz-3.0.3 Rakefile