-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathromaji.gemspec
23 lines (20 loc) · 878 Bytes
/
romaji.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'romaji/version'
Gem::Specification.new do |gem|
gem.authors = ['Shimpei Makimoto']
gem.email = ['[email protected]']
gem.description = 'Yet another Romaji-Kana transliterator'
gem.summary = 'Yet another Romaji-Kana transliterator'
gem.homepage = "https://github.com/makimoto/romaji"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'romaji'
gem.require_paths = ['lib']
gem.version = Romaji::VERSION
gem.add_dependency('rake', '>= 0.8.0')
gem.add_dependency('nkf', '>= 0.2.0')
gem.add_development_dependency('rspec', '>= 2.8.0')
gem.add_development_dependency('coveralls')
end