Sha256: e78e33aa3ea0d8d78d3f03a6ccc6ac95249fae89c34609751af67b304e178a88

Contents?: true

Size: 514 Bytes

Versions: 7

Compression:

Stored size: 514 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'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'StrongForm'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Bundler::GemHelper.install_tasks

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)
rescue LoadError
end

task default: :spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
strong_form-0.0.9 Rakefile
strong_form-0.0.8 Rakefile
strong_form-0.0.6 Rakefile
strong_form-0.0.5 Rakefile
strong_form-0.0.4 Rakefile
strong_form-0.0.3 Rakefile
strong_form-0.0.2 Rakefile