Sha256: 39c41b1a51f68008eee556055d073039d395b5d8b9dc4dec99c4f720e96e27b2

Contents?: true

Size: 580 Bytes

Versions: 13

Compression:

Stored size: 580 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"

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

require "bundler/gem_tasks"

require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.pattern = "test/**/*_test.rb"
  t.verbose = false
end

task default: :test

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
options_model-0.0.18 Rakefile
options_model-0.0.17 Rakefile
options_model-0.0.16 Rakefile
options_model-0.0.15 Rakefile
options_model-0.0.14 Rakefile
options_model-0.0.13 Rakefile
options_model-0.0.12 Rakefile
options_model-0.0.11 Rakefile
options_model-0.0.10 Rakefile
options_model-0.0.9 Rakefile
options_model-0.0.8 Rakefile
options_model-0.0.7 Rakefile
options_model-0.0.6 Rakefile