Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
8233af348a | ||
|
26a6691ce4 |
3 changed files with 9 additions and 0 deletions
1
Gemfile
1
Gemfile
|
@ -9,4 +9,5 @@ gem "yard"
|
|||
gem "yard-ghpages"
|
||||
|
||||
# Testing
|
||||
gem "minitest"
|
||||
gem "rubocop"
|
||||
|
|
|
@ -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
|
||||
|
|
6
Rakefile
6
Rakefile
|
@ -1,3 +1,9 @@
|
|||
require 'yard-ghpages'
|
||||
|
||||
task default: %w[truth]
|
||||
|
||||
task :truth do
|
||||
puts 'True!'
|
||||
end
|
||||
|
||||
Yard::GHPages::Tasks.install_tasks
|
||||
|
|
Loading…
Reference in a new issue