-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtolk.gemspec
44 lines (31 loc) · 1.42 KB
/
tolk.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
32
33
34
35
36
37
38
39
40
41
42
43
44
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "tolk/version"
Gem::Specification.new do |s|
s.name = 'tolk'
s.version = Tolk::VERSION
s.summary = 'Rails engine providing web interface for managing i18n yaml files'
s.description = 'Tolk is a web interface for doing i18n translations packaged as an engine for Rails applications.'
s.license = 'MIT'
s.authors = ['David Heinemeier Hansson', 'Piotr Sarnacki', 'Emilio Tagua', 'Thomas Darde', 'Ferran Basora']
s.email = 'david@loudthinking.com'
s.homepage = '/~https://github.com/tolk/tolk'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = ">= 2.5.0"
s.add_runtime_dependency "rails", ">= 6.0"
s.add_runtime_dependency "sprockets-rails", "~> 3.4"
s.add_runtime_dependency 'safe_yaml', ">= 0.8.6"
s.add_development_dependency 'sqlite3', '~> 1.3', '< 1.5'
s.add_development_dependency 'mocha', '>= 1.0'
s.add_development_dependency 'will_paginate'
s.add_development_dependency "capybara", "~> 3.14"
s.add_development_dependency "cuprite"
s.add_development_dependency "sassc"
s.add_development_dependency "puma", "~> 5.5"
s.add_development_dependency "appraisal"
if File.exist?('UPGRADING')
s.post_install_message = File.read("UPGRADING")
end
s.files = Dir['README', 'MIT-LICENSE', 'config/**/*', 'init.rb', 'lib/**/*', 'app/**/*', 'public/tolk/**/*']
s.require_path = 'lib'
end