forked from instructure/i18nliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18nliner.gemspec
28 lines (24 loc) · 1.1 KB
/
i18nliner.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'i18nliner'
s.version = '0.2.3'
s.summary = 'I18n made simple'
s.description = 'No .yml files. Inline defaults. Optional keys. Inferred interpolation values. Wrappers and blocks, so your templates look template-y and your translations stay HTML-free.'
s.required_ruby_version = '>= 2.7'
s.required_rubygems_version = '>= 1.3.5'
s.author = 'Jon Jensen'
s.email = 'jenseng@gmail.com'
s.homepage = 'http://github.com/jenseng/i18nliner'
s.files = %w(LICENSE.txt Rakefile README.md) + Dir['{lib,spec}/**/*.{rb,rake}']
s.add_dependency('activesupport', '>= 6.0')
s.add_dependency('i18n', '>= 1.8.6')
s.add_dependency('ruby_parser', '~> 3.10')
s.add_dependency('sexp_processor', '~> 4.10')
s.add_dependency('ruby2ruby', '~> 2.4')
s.add_dependency('globby', '>= 0.1.1')
s.add_dependency('erubi', '~> 1.7')
s.add_dependency('ya2yaml', '0.31')
s.add_dependency('nokogiri', '>= 1.5.0')
s.add_development_dependency('rspec', '~> 3.6')
s.add_development_dependency('rspec-mocks', '~> 3.6')
end