Sha256: 430454f38884611a4e9f55c1112bce0edf83a31bea4417caf98f35c098403167
Contents?: true
Size: 766 Bytes
Versions: 1
Compression:
Stored size: 766 Bytes
Contents
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"]) p.homepage = 'http://github.com/infused/ansel_iconv' end Jeweler::GemcutterTasks.new 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ansel_iconv-1.0.3 | Rakefile |