-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathfacets.gemspec
More file actions
32 lines (27 loc) · 1.13 KB
/
facets.gemspec
File metadata and controls
32 lines (27 loc) · 1.13 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
30
31
32
Gem::Specification.new do |s|
s.name = 'facets'
s.version = '3.2.0'
s.summary = 'The premier collection of extension methods for Ruby.'
s.description = 'Facets is the premier collection of extension methods for the Ruby ' \
'programming language. Facets extensions are unique by virtue of their ' \
'atomicity. They are stored in individual files allowing for highly ' \
'granular control of requirements. In addition, Facets includes a few ' \
'additional classes and mixins suitable to a wide variety of applications.'
s.authors = ['Thomas Sawyer']
s.email = ['transfire@gmail.com']
s.homepage = 'https://rubyworks.github.io/facets'
s.license = 'BSD-2-Clause'
s.required_ruby_version = '>= 3.1'
s.files = Dir[
'lib/**/*.rb',
'LICENSE.txt',
'README.md',
'HISTORY.md',
'CONTRIBUTING.md'
]
s.require_paths = ['lib/core', 'lib/standard']
s.metadata = {
'source_code_uri' => 'https://github.com/rubyworks/facets',
'changelog_uri' => 'https://github.com/rubyworks/facets/blob/main/HISTORY.md'
}
end