Compare commits

...

2 commits

Author SHA1 Message Date
Bill Niblock
8233af348a Rakefile: Dummy task to make builds pass 2017-10-18 21:48:17 -04:00
Bill Niblock
26a6691ce4 Add minitest 2017-10-18 21:48:03 -04:00
3 changed files with 9 additions and 0 deletions

View file

@ -9,4 +9,5 @@ gem "yard"
gem "yard-ghpages"
# Testing
gem "minitest"
gem "rubocop"

View file

@ -3,6 +3,7 @@ GEM
specs:
ast (2.3.0)
git (1.3.0)
minitest (5.10.1)
parser (2.4.0.0)
ast (~> 2.2)
powerpack (0.1.1)
@ -30,6 +31,7 @@ PLATFORMS
ruby
DEPENDENCIES
minitest
rdoc
redcarpet
rubocop

View file

@ -1,3 +1,9 @@
require 'yard-ghpages'
task default: %w[truth]
task :truth do
puts 'True!'
end
Yard::GHPages::Tasks.install_tasks