-
Notifications
You must be signed in to change notification settings - Fork 116
/
datagrid.gemspec
38 lines (35 loc) · 1.15 KB
/
datagrid.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
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true
require_relative "lib/datagrid/version"
Gem::Specification.new do |s|
s.name = "datagrid"
s.version = Datagrid::VERSION
s.require_paths = ["lib"]
s.authors = ["Bogdan Gusiev"]
s.summary = "Library that provides DSL to present table like data"
s.description = "The library allows you to easily build datagrid aka data tables with sortable columns and filters"
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md",
]
s.files = [
"LICENSE.txt",
"CHANGELOG.md",
"README.md",
"datagrid.gemspec",
".yardopts",
]
s.files += `git ls-files | grep -E '^(app|lib|templates)'`.split("\n")
s.homepage = "https://github.com/bogdan/datagrid"
s.licenses = ["MIT"]
s.required_ruby_version = Gem::Requirement.new(">= 3.0")
s.metadata = {
"homepage_uri" => s.homepage,
"bug_tracker_uri" => "#{s.homepage}/issues",
"documentation_uri" => "https://rubydoc.info/gems/datagrid",
"changelog_uri" => "#{s.homepage}/blob/main/CHANGELOG.md",
"source_code_uri" => s.homepage,
"rubygems_mfa_required" => "true",
}
s.add_dependency "railties", ">= 7.0"
end