-
Notifications
You must be signed in to change notification settings - Fork 0
/
statisfy.gemspec
22 lines (21 loc) · 966 Bytes
/
statisfy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "statisfy"
s.version = "0.0.11"
s.required_ruby_version = ">= 3.2.0"
s.date = "2023-12-13"
s.summary = "A performant and flexible counter solution"
s.description = "A performant and flexible counter solution that allows to make statistics on your models"
s.authors = ["Michaël Villeneuve"]
s.homepage = "https://github.com/Michaelvilleneuve/statisfy"
s.email = "[email protected]"
s.files = Dir["lib/**/*"]
s.license = "MIT"
s.add_development_dependency "activerecord", "~> 7.0.4.3"
s.add_development_dependency "activesupport", "~> 7.0.4.3"
s.add_development_dependency "pry", "~> 0.14.1"
s.add_development_dependency "redis", "~> 4.8.1"
s.add_development_dependency "redis-client", "~> 0.17.0"
s.add_development_dependency "rubocop", "~> 1.49.0"
s.add_development_dependency "sqlite3", "~> 1.6.9"
end