Sha256: e478e452c5b8c47c8e1a625fc5f9607d4dbbea8f497da53e617e633309f0cf24

Contents?: true

Size: 707 Bytes

Versions: 26

Compression:

Stored size: 707 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'BootstrapForm'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.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
end


task :default => :test

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
comfy_bootstrap_form-4.0.0.beta1 Rakefile
bootstrap_form-2.7.0 Rakefile
bootstrap_form-2.6.0 Rakefile
bootstrap_form-2.5.3 Rakefile
bootstrap_form-2.5.2 Rakefile
bootstrap_form-2.5.1 Rakefile
bootstrap_form-2.5.0 Rakefile
bootstrap_form-2.4.0 Rakefile
bootstrap_form-2.3.0 Rakefile
bootstrap_form-2.2.0 Rakefile
bootstrap_form-2.1.1 Rakefile
bootstrap_form-2.1.0 Rakefile
bootstrap_form-2.0.1 Rakefile
bootstrap_form-2.0.0 Rakefile
bootstrap_form-1.0.0 Rakefile
bootstrap_form-0.3.2 Rakefile
bootstrap_form-0.3.1 Rakefile
bootstrap_form-0.3.0 Rakefile
bootstrap_form-0.2.4 Rakefile
bootstrap_form-0.2.3 Rakefile