-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlightly.gemspec
More file actions
23 lines (20 loc) · 781 Bytes
/
lightly.gemspec
File metadata and controls
23 lines (20 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lightly/version'
Gem::Specification.new do |s|
s.name = 'lightly'
s.version = Lightly::VERSION
s.summary = 'File cache for performing heavy tasks, lightly.'
s.description = 'Easy to use file cache'
s.authors = ['Danny Ben Shitrit']
s.email = 'db@dannyben.com'
s.files = Dir['README.md', 'lib/**/*.*']
s.homepage = 'https://github.com/DannyBen/lightly'
s.license = 'MIT'
s.required_ruby_version = '>= 3.1'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/DannyBen/lightly/issues',
'source_code_uri' => 'https://github.com/DannyBen/lightly',
'rubygems_mfa_required' => 'true',
}
end