infused / ansel_iconv

Convert ANSEL encoded text to any other encoding available to Iconv

ansel_iconv / Rakefile
100644 26 lines (22 sloc) 0.682 kb
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
PROJECT_ROOT = File.expand_path(File.dirname(__FILE__))
$: << File.join(PROJECT_ROOT, 'lib')
 
require 'rubygems'
require 'ansel_iconv'
require 'rake/testtask'
require 'jeweler'
 
Jeweler::Tasks.new do |p|
  p.name = 'ansel_iconv'
  p.description = 'Convert ANSEL encoded text to any other encoding available to Iconv'
  p.summary = 'Convert ANSEL encoded text'
  p.platform = Gem::Platform::RUBY
  p.authors = ['Keith Morrison']
  p.email = 'keithm@infused.org'
  p.add_dependency(%q<activesupport>, [">= 2.1.0"])
end
 
desc 'Default: run unit tests.'
task :default => :test
 
Rake::TestTask.new(:test) do |t|
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
  t.libs << 'test'
end