-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathlit.gemspec
27 lines (22 loc) · 1.01 KB
/
lit.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'lit/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'lit'
s.version = Lit::VERSION
s.authors = ['Maciej Litwiniuk']
s.email = ['[email protected]']
s.license = 'MIT'
s.homepage = 'https://github.com/prograils/lit'
s.summary = 'Database powered i18n backend with web gui'
s.description = "Translate your apps with pleasure (sort of...) and for free. It's simple i18n web interface, build on top of twitter bootstrap, that one may find helpful in translating app by non-technicals. "
s.files = Dir['{app,config,db,lib}/**/*'] + ['MIT-LICENSE', 'Rakefile', 'README.md']
# s.test_files = Dir["test/**/*"]
s.add_dependency 'rails', '> 3.1.0'
s.add_dependency 'i18n', '~> 0.7.0'
s.add_dependency 'jquery-rails'
s.add_dependency 'concurrent-ruby'
s.add_development_dependency 'pg'
s.add_development_dependency 'devise'
end