forked from amardaxini/i18n_redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n_redis.gemspec
21 lines (18 loc) · 891 Bytes
/
i18n_redis.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "i18n_redis/version"
Gem::Specification.new do |s|
s.name = "i18n_redis"
s.version = I18nRedis::VERSION
s.authors = ["Amar Daxini"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{I18n YAML to Redis Management}
s.description = %q{I18n YAML to Redis Management.It convert exising yaml to redis.Provides various helper methods to add,update,remove,create,copy master to another locale,one locale to another locale etc.}
s.rubyforge_project = "i18n_redis"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency(%q<redis>, ["~> 2.2.0"])
end