-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtranslit_kit.gemspec
More file actions
23 lines (19 loc) · 829 Bytes
/
Copy pathtranslit_kit.gemspec
File metadata and controls
23 lines (19 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "translit_kit/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "translit_kit"
s.version = TranslitKit::VERSION
s.authors = ["Michoel Samuels"]
s.email = ["k2co3@icloud.com"]
s.homepage = "https://github.com/AnalyzePlatypus/TranslitKit"
s.summary = "Hebrew -> English Transliteration engine"
s.description = "A Ruby gem for transliterating Hebrew text (with Niqqud) into English characters"
s.license = "MIT"
s.required_ruby_version = '>= 2.2'
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.files += Dir["lib/modules/**/*"]
s.files += Dir["lib/resources/**/*"]
s.test_files += Dir["test/**/*"]
end