forked from localeapp/localeapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
localeapp.gemspec
35 lines (30 loc) · 1.31 KB
/
localeapp.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
31
32
33
34
35
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "localeapp/version"
Gem::Specification.new do |s|
s.name = "localeapp"
s.version = Localeapp::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Christopher Dell", "Chris McGrath"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://www.localeapp.com"
s.summary = %q{Easy i18n translation management with localeapp.com}
s.description = %q{Synchronizes i18n translation keys and content with localeapp.com so you don't have to manage translations by hand.}
s.rubyforge_project = "localeapp"
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_dependency('i18n')
s.add_dependency('json')
s.add_dependency('rest-client')
s.add_dependency('rack')
s.add_dependency('ya2yaml')
s.add_dependency('gli')
s.add_development_dependency('rake')
s.add_development_dependency('rspec', '2.11.0')
s.add_development_dependency('yard', '0.6.7')
s.add_development_dependency('RedCloth', '4.2.9')
s.add_development_dependency('aruba', '0.5.1')
s.add_development_dependency('fakeweb', '1.3.0')
end