-
Notifications
You must be signed in to change notification settings - Fork 37
/
tr8n.gemspec
26 lines (21 loc) · 895 Bytes
/
tr8n.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "tr8n/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "tr8n"
s.version = Tr8n::VERSION
s.authors = ["Michael Berkovich"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/tr8n/tr8n"
s.summary = "Crowd-sourced translation engine for Rails."
s.description = "Crowd-sourced translation and localization engine for Rails."
s.files = `git ls-files`.split("\n") - Dir.glob("app/javascripts/**/*")
s.test_files = `git ls-files -- {test,local,spec,features}/*`.split("\n")
s.extra_rdoc_files = ['README.md']
s.require_paths = ['lib']
s.licenses = ['MIT']
s.add_dependency "rails", '~> 3.2.3'
s.add_dependency 'will_filter', '~> 3.1.10'
s.add_dependency 'faraday', '>= 0'
end