forked from tolk/tolk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tolk.gemspec
39 lines (27 loc) · 1.22 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
$:.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 = '[email protected]'
s.homepage = 'https://github.com/tolk/tolk'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.2.2'
s.add_runtime_dependency 'rails', '>= 5.0'
s.add_runtime_dependency 'safe_yaml', ">= 0.8.6"
s.add_development_dependency 'capybara', '~> 2.14'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'mocha', '>= 1.0'
s.add_development_dependency 'poltergeist'
s.add_development_dependency 'will_paginate'
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