forked from jpmobile/jpmobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jpmobile.gemspec
27 lines (22 loc) · 986 Bytes
/
jpmobile.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jpmobile/version'
Gem::Specification.new do |gem|
gem.name = 'jpmobile'
gem.version = Jpmobile::VERSION
gem.authors = ['Shin-ichiro OGAWA', 'Yoji Shidara']
gem.email = ['[email protected]']
gem.description = 'A Rails plugin for mobile devices in Japan'
gem.summary = 'Rails plugin for mobile devices in Japan'
gem.homepage = 'https://jpmobile-rails.org'
gem.license = 'MIT'
gem.metadata['source_code_uri'] = 'https://github.com/jpmobile/jpmobile'
gem.metadata['documentation_uri'] = gem.metadata['source_code_uri']
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.7.0'
gem.add_dependency 'mail', '~> 2.7.0'
gem.add_dependency 'rexml'
gem.add_dependency 'scanf'
gem.metadata['rubygems_mfa_required'] = 'true'
end