-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkanjika.gemspec
29 lines (23 loc) · 983 Bytes
/
kanjika.gemspec
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
# frozen_string_literal: true
require_relative "lib/kanjika/version"
Gem::Specification.new do |spec|
spec.name = "kanjika"
spec.version = Kanjika::VERSION
spec.authors = ["Fagner Pereira Rosa"]
spec.email = ["[email protected]"]
spec.summary = "Usefull tools to work with japanese language"
spec.description = "japanese language tools"
spec.homepage = "https://github.com/fagnerpereira/kanjika_gem"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.require_paths = ["lib"]
# spec.add_dependency "railties"
# https://github.com/kimtaro/ve
spec.add_dependency "ve", "~> 0.0.4"
spec.add_dependency "mojinizer", "~> 0.2.2"
spec.add_dependency "activesupport"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end