-
Notifications
You must be signed in to change notification settings - Fork 33
/
json_translate.gemspec
24 lines (20 loc) · 1021 Bytes
/
json_translate.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
$:.push File.expand_path('../lib', __FILE__)
require 'json_translate/version'
Gem::Specification.new do |s|
s.name = 'json_translate'
s.version = JSONTranslate::VERSION
s.summary = "Rails I18n library for ActiveRecord model/data translation using PostgreSQL's JSONB datatype."
s.description = "#{s.summary} Translations are stored directly in the model table rather than shadow tables."
s.authors = ["Rob Worley", "Cédric Fabianski"]
s.email = 'cfabianski@me.com'
s.homepage = 'https://github.com/cfabianski/json_translate'
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.files = Dir['lib/**/*.rb', 'README.md', 'MIT-LICENSE']
s.test_files = Dir['test/**/*']
s.require_paths = ['lib']
s.add_dependency 'activerecord', '>= 4.2.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest', '>= 4.0'
s.add_development_dependency 'database_cleaner'
end