-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_cardinals_by.gemspec
28 lines (23 loc) · 1.01 KB
/
update_cardinals_by.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "update_cardinals_by/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "update_cardinals_by"
s.version = UpdateCardinalsBy::VERSION
s.authors = ["Hampei"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/hampei/update_cardinals_by"
s.summary = "postgres database extension to increment/decrement values safely and get back result."
s.license = "MIT"
s.files = Dir["{lib}/**/*.rb", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.required_ruby_version = '>= 2.1'
s.add_dependency "activerecord", "> 6.1", "< 7.1"
s.add_development_dependency "pg"
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'dotenv', '~> 2.0'
s.add_development_dependency 'database_cleaner', '~> 1.0'
s.add_development_dependency 'appraisal'
end