Sha256: b722574ff0216d21bdb79dce36ee5e39438100be4eaf0e4a647f7e18f785cb52

Contents?: true

Size: 891 Bytes

Versions: 40

Compression:

Stored size: 891 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/version"
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

40 entries across 40 versions & 1 rubygems

Version Path
ui_bibz-2.0.3 Rakefile
ui_bibz-2.0.2 Rakefile
ui_bibz-2.0.1 Rakefile
ui_bibz-2.0.0 Rakefile
ui_bibz-2.0.0.beta2.6 Rakefile
ui_bibz-2.0.0.beta2.5 Rakefile
ui_bibz-2.0.0.beta2.4 Rakefile
ui_bibz-2.0.0.beta2.3 Rakefile
ui_bibz-2.0.0.beta2.2 Rakefile
ui_bibz-2.0.0.beta2.1 Rakefile
ui_bibz-2.0.0.beta2 Rakefile
ui_bibz-2.0.0.alpha32 Rakefile
ui_bibz-2.0.0.alpha31 Rakefile
ui_bibz-2.0.0.alpha30 Rakefile
ui_bibz-2.0.0.alpha29 Rakefile
ui_bibz-2.0.0.alpha28 Rakefile
ui_bibz-2.0.0.alpha27 Rakefile
ui_bibz-2.0.0.alpha26 Rakefile
ui_bibz-2.0.0.alpha24 Rakefile
ui_bibz-2.0.0.alpha23 Rakefile