forked from rsl/stringex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
55 lines (48 loc) · 1.87 KB
/
Rakefile
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# encoding: utf-8
require 'rake'
require 'rake/testtask'
require 'rdoc/task'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "stringex"
gem.authors = ["Russell Norris"]
gem.email = "[email protected]"
gem.homepage = "http://github.com/rsl/stringex"
gem.summary = "Some [hopefully] useful extensions to Ruby's String class"
gem.description = "Some [hopefully] useful extensions to Ruby's String class. Stringex is made up of three libraries: ActsAsUrl [permalink solution with better character translation], Unidecoder [Unicode to ASCII transliteration], and StringExtensions [miscellaneous helper methods for the String class]."
gem.files.exclude '.travis.yml'
gem.files.exclude '.ruby-gemset'
gem.files.exclude '.ruby-version'
gem.has_rdoc = true
gem.rdoc_options = %w{--main README.rdoc --charset utf-8 --line-numbers}
gem.extra_rdoc_files = %w{MIT-LICENSE README.rdoc}
gem.licenses = ['MIT']
end
Jeweler::RubygemsDotOrgTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
Rake::TestTask.new do |t|
t.libs << 'lib' << 'test'
t.pattern = 'test/unit/**/*_test.rb'
t.verbose = true
end
namespace :test do
Rake::TestTask.new(:performance) do |t|
t.libs << 'lib' << 'test'
t.pattern = 'test/performance/**/*_test.rb'
t.verbose = true
end
end
task :default => :test
desc 'Generate RDoc for Stringex'
Rake::RDocTask.new(:rdoc) do |rdoc|
version = File.read('VERSION')
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "Stringex: A String Extension Pack [Version #{version}]"
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.options << '--charset' << 'utf-8'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end