-
Notifications
You must be signed in to change notification settings - Fork 4
/
trasto.gemspec
29 lines (24 loc) · 1.14 KB
/
trasto.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
29
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'trasto/version'
Gem::Specification.new do |gem|
gem.name = 'trasto'
gem.version = Trasto::VERSION
gem.authors = ['Morton Jonuschat']
gem.email = ['[email protected]']
gem.description = 'Translatable columns for Rails 4, directly stored in a Postgres hstore in the model table.'
gem.summary = 'Use PostgreSQL hstore to keep column translations in the model table without adding lots of tables/columns.'
gem.homepage = 'https://github.com/mjonuschat/trasto'
gem.licenses = ['MIT']
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.5.0'
gem.add_dependency 'pg'
gem.add_development_dependency 'appraisal'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 3.0'
end