-
Notifications
You must be signed in to change notification settings - Fork 3
/
lokalise_rails.gemspec
31 lines (26 loc) · 1.18 KB
/
lokalise_rails.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
30
31
# frozen_string_literal: true
require File.expand_path('lib/lokalise_rails/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'lokalise_rails'
spec.version = LokaliseRails::VERSION
spec.authors = ['Ilya Krukowski']
spec.email = ['[email protected]']
spec.summary = 'Lokalise integration for Ruby on Rails'
spec.description = 'This gem allows to exchange translation files between your Rails app and Lokalise TMS.'
spec.homepage = 'https://github.com/bodrovis/lokalise_rails'
spec.license = 'MIT'
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 3.0'
spec.files = Dir['README.md', 'LICENSE.md',
'CHANGELOG.md', 'lib/**/*.rb',
'lib/**/*.rake',
'lokalise_rails.gemspec', '.github/*.md',
'Gemfile', 'Rakefile']
spec.extra_rdoc_files = ['README.md']
spec.require_paths = ['lib']
spec.add_dependency 'lokalise_manager', '~> 6.0'
spec.add_dependency 'zeitwerk', '~> 2.4'
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
end