forked from BadrIT/translation_center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
translation_center.gemspec
30 lines (25 loc) · 1.17 KB
/
translation_center.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "translation_center/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "translation_center"
s.version = TranslationCenter::VERSION
s.authors = ["BadrIT", "Mahmoud Khaled", "Khaled Abdelhady"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/BadrIT/translation_center"
s.summary = "Multi lingual web Translation Center community for Rails 3 apps"
s.description = "Translation Center is a multi lingual web engine for Rails 3 apps. It builds a translation center community with translators and admins from your system users."
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 "jquery-rails"
s.add_dependency 'haml'
s.add_dependency 'haml-rails'
s.add_dependency 'acts_as_votable'
s.add_dependency 'ya2yaml'
s.add_dependency 'meta_search'
s.add_dependency 'font-awesome-rails'
s.add_dependency 'audited-activerecord'
s.add_dependency 'jquery-ui-rails'
end