forked from tolk/tolk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tolk.gemspec
25 lines (19 loc) · 894 Bytes
/
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
# encoding: utf-8
require File.expand_path('../lib/tolk/version', __FILE__)
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.authors = ['David Heinemeier Hansson', 'Piotr Sarnacki', 'Emilio Tagua', 'Thomas Darde']
s.email = '[email protected]'
s.homepage = 'http://github.com/tolk/tolk'
s.platform = Gem::Platform::RUBY
s.add_dependency('will_paginate')
s.add_dependency('ya2yaml', '~> 0.26')
if File.exists?('UPGRADING')
s.post_install_message = File.read("UPGRADING")
end
s.files = Dir['README', 'MIT-LICENSE', 'config/routes.rb', 'init.rb', 'lib/**/*', 'app/**/*', 'public/tolk/**/*']
s.require_path = 'lib'
end