-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrosette.gemspec
27 lines (21 loc) · 899 Bytes
/
rosette.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_relative "lib/rosette/version"
Gem::Specification.new do |spec|
spec.name = "rosette"
spec.version = Rosette::VERSION
spec.authors = ["Alexandre Platteeuw"]
spec.email = ["alexplatteeuw@gmail.com"]
spec.summary = "Translations manager"
spec.description = "Add missing translations from the interface of your application"
spec.license = "MIT"
spec.homepage = "https://github.com/alexplatteeuw/rosette"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,bin,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.require_paths = ["lib"]
spec.executables << "rosette"
spec.add_dependency "i18n-tasks", "~> 1.0.12"
spec.add_dependency "rails", "~> 7.0.0"
spec.add_dependency "tty-prompt", "~> 0.23.1"
spec.add_development_dependency "rspec-rails", "~> 6.0.0"
end