Sha256: c015dec617f5ef5a0d110a796807f5d2e0cf23fa5e9ed8c74adc71b648d2ee16

Contents?: true

Size: 889 Bytes

Versions: 33

Compression:

Stored size: 889 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'
# Maintain your gem's version:
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

Bundler::GemHelper.install_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

33 entries across 33 versions & 1 rubygems

Version Path
ui_bibz-2.4.0 Rakefile
ui_bibz-2.3.15 Rakefile
ui_bibz-2.3.14 Rakefile
ui_bibz-2.3.13 Rakefile
ui_bibz-2.3.12 Rakefile
ui_bibz-2.3.11 Rakefile
ui_bibz-2.3.10 Rakefile
ui_bibz-2.3.9 Rakefile
ui_bibz-2.3.8 Rakefile
ui_bibz-2.3.7 Rakefile
ui_bibz-2.3.6 Rakefile
ui_bibz-2.3.5 Rakefile
ui_bibz-2.3.4 Rakefile
ui_bibz-2.3.3 Rakefile
ui_bibz-2.3.2 Rakefile
ui_bibz-2.3.1 Rakefile
ui_bibz-2.3.0 Rakefile
ui_bibz-2.2.2 Rakefile
ui_bibz-2.2.1 Rakefile
ui_bibz-2.2.0 Rakefile