forked from ruby-i18n/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (24 loc) · 686 Bytes
/
Rakefile
File metadata and controls
27 lines (24 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'rake/testtask'
task :default => [:test]
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = "#{File.dirname(__FILE__)}/test/all.rb"
t.verbose = true
t.warning = true
end
Rake::Task['test'].comment = "Run all i18n tests"
# require "rake/gempackagetask"
# require "rake/clean"
# CLEAN << "pkg" << "doc" << "coverage" << ".yardoc"
#
# Rake::GemPackageTask.new(eval(File.read("i18n.gemspec"))) { |pkg| }
#
# begin
# require "yard"
# YARD::Rake::YardocTask.new do |t|
# t.options = ["--output-dir=doc"]
# t.options << "--files" << ["CHANGELOG.textile", "contributors.txt", "MIT-LICENSE"].join(",")
# end
# rescue LoadError
# end