-
Notifications
You must be signed in to change notification settings - Fork 7
/
one_sky.gemspec
28 lines (23 loc) · 1.22 KB
/
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "one_sky/version"
Gem::Specification.new do |s|
s.name = "one_sky"
s.version = OneSky::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Junjun Olympia", "Eddie Lau", "Matthew Rudy Jacobs"]
s.homepage = "http://developer.oneskyapp.com/"
s.summary = %q{Ruby interface to the OneSky REST API}
s.description = %q{OneSky is a community-powered translation service for web and mobile apps. This gem is the core interface to the REST API and is used by other specialty gems such the OneSky extension for I18n, i18n-one_sky.}
s.rubyforge_project = "one_sky"
s.add_dependency "json", ">= 1.4.0"
s.add_dependency "rest-client", ">= 1.4.0"
s.add_development_dependency "rspec", "~> 2.2.0"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "time_freeze"
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