-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturkish_numeric.gemspec
More file actions
23 lines (18 loc) · 907 Bytes
/
turkish_numeric.gemspec
File metadata and controls
23 lines (18 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
require_relative 'lib/turkish_numeric/version'
Gem::Specification.new do |spec|
spec.name = 'turkish_numeric'
spec.version = TurkishNumeric::VERSION
spec.authors = ['Sıtkı Bağdat']
spec.summary = 'Translate any numeric value into Turkish text.'
spec.description = 'Translate any numeric value into Turkish text, ' \
'currency notation, or text representation of money.'
spec.homepage = 'https://github.com/sbagdat/turkish_numeric'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
end