-
Notifications
You must be signed in to change notification settings - Fork 0
/
loco_sync.gemspec
31 lines (27 loc) · 1.01 KB
/
loco_sync.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_relative "lib/loco_sync/version"
Gem::Specification.new do |spec|
spec.name = "loco_sync"
spec.version = LocoSync::VERSION
spec.authors = ["Adam Zar"]
spec.email = ["[email protected]"]
spec.summary = "Sync translations with localise.biz for ruby on rails"
spec.description = "This gem enables an exchange of translation files between your Rails app and localise.biz."
spec.homepage = "https://github.com/OLIOEX/loco-sync"
spec.license = "Apache-2.0"
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.6.0"
spec.require_paths = %w(lib)
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir[
"README.md", "LICENSE",
"CHANGELOG.md", "lib/**/*.rb",
"lib/**/*.rake", "loco_sync.gemspec",
"Gemfile", "Rakefile"
]
spec.extra_rdoc_files = ["README.md"]
spec.add_dependency "faraday", ">= 1.0"
spec.add_dependency "zeitwerk", "~> 2.4"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end