Skip to content

Commit

Permalink
Change undescriptive 't' to 'task'.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinlaking committed Sep 24, 2015
1 parent 2a0070f commit 0d119e3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ require 'rake/testtask'
require 'yard'
require 'rubocop/rake_task'

Rake::TestTask.new(:test) do |t|
t.libs.push 'lib'
t.libs.push 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
t.warning = false # set to true for Ruby warnings (ruby -w)
Rake::TestTask.new(:test) do |task|
task.libs.push 'lib'
task.libs.push 'test'
task.pattern = 'test/**/*_test.rb'
task.verbose = false
task.warning = true # set to true for Ruby warnings (ruby -w)
end

YARD::Rake::YardocTask.new(:yard) do |t|
t.files = [
YARD::Rake::YardocTask.new(:yard) do |task|
task.files = [
'lib/**/*.rb',
'-',
'docs/api.md',
Expand Down

0 comments on commit 0d119e3

Please sign in to comment.