-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactiveadmin_table_footer.gemspec
More file actions
29 lines (22 loc) · 1.12 KB
/
activeadmin_table_footer.gemspec
File metadata and controls
29 lines (22 loc) · 1.12 KB
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
require_relative "lib/activeadmin_table_footer/version"
Gem::Specification.new do |spec|
spec.name = "activeadmin_table_footer"
spec.version = ActiveadminTableFooter::VERSION
spec.authors = ["Igor Fedoronchuk"]
spec.email = ["fedoronchuk@gmail.com"]
spec.summary = "Table footer DSL for ActiveAdmin index tables"
spec.description = "Adds a `footer:` option to columns and a top-level `footer_data:` proc " \
"so index tables can render a <tfoot> with aggregated values in a single SQL query."
spec.homepage = "https://github.com/activeadmin-plugins/activeadmin_table_footer"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
spec.files = Dir["lib/**/*", "README.md", "LICENSE.txt"]
spec.require_paths = ["lib"]
spec.add_dependency "activeadmin", ">= 3.5", "< 5.0"
spec.add_dependency "arbre", ">= 1.4", "< 3.0"
spec.add_dependency "railties", ">= 7.0"
end