Sha256: e698ffd771551292ba5cd25154d6e27135d2323824b36d29cc60e772fe18715c

Contents?: true

Size: 575 Bytes

Versions: 7

Compression:

Stored size: 575 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    = 'Hyphenify'
  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

7 entries across 7 versions & 1 rubygems

Version Path
hyphenify-0.1.2 Rakefile
hyphenify-0.1.1 Rakefile
hyphenify-0.1.0 Rakefile
hyphenify-0.0.9 Rakefile
hyphenify-0.0.7 Rakefile
hyphenify-0.0.6 Rakefile
hyphenify-0.0.5 Rakefile