-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
thermos.gemspec
30 lines (24 loc) · 946 Bytes
/
thermos.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'thermos/version'
Gem::Specification.new do |s|
s.name = 'thermos'
s.version = Thermos::VERSION
s.authors = ['Andrew Thal']
s.email = ['[email protected]']
s.homepage = 'https://github.com/athal7/thermos'
s.summary = 'Always-warm, auto-rebuilding rails caching without timers or touching.'
s.description = <<~HEREDOC
Thermos is a library for caching in rails that re-warms caches
in the background based on model changes.
HEREDOC
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
s.test_files = Dir['test/**/*']
s.required_ruby_version = ['~> 3.0']
s.add_runtime_dependency 'rails'
s.add_development_dependency 'rake'
s.add_development_dependency 'sqlite3', '~> 1.4'
s.add_development_dependency 'prettier'
s.add_development_dependency 'psych', '< 4.0.0'
end