forked from Leadformance/hstore_translate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hstore_translate.gemspec
24 lines (20 loc) · 1014 Bytes
/
hstore_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 'hstore_translate/version'
Gem::Specification.new do |s|
s.name = 'hstore_translate'
s.version = HstoreTranslate::VERSION
s.summary = "Rails I18n library for ActiveRecord model/data translation using PostgreSQL's hstore datatype."
s.description = "#{s.summary} Translations are stored directly in the model table rather than shadow tables."
s.authors = ['Rob Worley']
s.email = '[email protected]'
s.homepage = 'https://github.com/robworley/hstore_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', '>= 3.1.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest', '>= 4.0'
s.add_development_dependency 'database_cleaner'
end