# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'lingo24/version' Gem::Specification.new do |spec| spec.name = "lingo24" spec.version = Lingo24::VERSION spec.authors = ["David Meikle"] spec.email = ["api@lingo24.com"] spec.summary = %q{A client library for interfacing with the Lingo24's Translation APIs.} spec.description = %q{Lingo24 offer various APIs that allow you to access our translation services, including our business translation and premium machine translation services. The Lingo24 gem lets you interface with the APIs (found at https://developer.lingo24.com/) to allow you to easily integrate them within your application.} spec.homepage = "https://developer.lingo24.com" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(spec|test|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.1" spec.add_dependency "faraday", "~> 0.9" spec.add_dependency "json", "~> 1.8" end