-
Notifications
You must be signed in to change notification settings - Fork 117
/
datagrid.gemspec
37 lines (34 loc) · 1.13 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
# 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.markdown",
]
s.files = [
"LICENSE.txt",
"CHANGELOG.md",
"Readme.markdown",
"datagrid.gemspec",
]
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(">= 2.7")
s.metadata = {
"homepage_uri" => s.homepage,
"bug_tracker_uri" => "#{s.homepage}/issues",
"documentation_uri" => "#{s.homepage}/wiki",
"changelog_uri" => "#{s.homepage}/blob/master/CHANGELOG.md",
"source_code_uri" => s.homepage,
"rubygems_mfa_required" => "true",
}
s.add_dependency "railties", ">= 6.1"
end