-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotstrings.gemspec
27 lines (23 loc) · 979 Bytes
/
dotstrings.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
# frozen_string_literal: true
require './lib/dotstrings/version'
Gem::Specification.new do |s|
s.name = 'dotstrings'
s.version = DotStrings::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Ramon Torres']
s.email = ['raymondjavaxx@gmail.com']
s.homepage = 'https://github.com/raymondjavaxx/dotstrings'
s.description = s.summary = 'Parse and create .strings files used in localization of iOS and macOS apps.'
s.files = Dir['README.md', 'CHANGELOG.md', 'LICENSE', 'lib/**/*.rb']
s.require_paths = ['lib']
s.license = 'MIT'
s.add_development_dependency 'bundler'
s.add_development_dependency 'minitest', '~> 5.14'
s.add_development_dependency 'rake'
s.add_development_dependency 'rubocop', '~> 1.50.2'
s.add_development_dependency 'rubocop-minitest', '~> 0.30.0'
s.add_development_dependency 'rubocop-rake'
s.add_development_dependency 'simplecov'
s.required_ruby_version = '>= 2.6.0'
s.metadata['rubygems_mfa_required'] = 'true'
end