-
Notifications
You must be signed in to change notification settings - Fork 10
/
i18n-one_sky.gemspec
30 lines (25 loc) · 1.35 KB
/
i18n-one_sky.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "i18n/one_sky/version"
Gem::Specification.new do |s|
s.name = "i18n-one_sky"
s.version = I18n::Onesky::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Junjun Olympia", "Eddie Lau", "Matthew Rudy Jacobs"]
s.homepage = "http://rubygems.org/gems/i18n-one_sky"
s.summary = %q{I18n extensions using OneSky -- the community-powered translation service.}
s.description = %q{A set of I18n extensions that use OneSky. At its most basic, this allows you to easily submit translation requests to the OneSky service and download available translations as Simple backend YAML files.}
s.rubyforge_project = "i18n-one_sky"
s.add_dependency "i18n", ">= 0.5.0"
s.add_dependency "one_sky", ">= 2.0.0"
s.add_dependency 'i18n-active_record', ">= 0.0.2"
s.add_dependency "activesupport", ">= 2.2.2"
s.add_dependency "memoist"
s.add_development_dependency "rspec", "~> 2.2.0"
s.add_development_dependency "bundler", ">= 1.0.0"
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"]
end