-
Notifications
You must be signed in to change notification settings - Fork 0
/
hot_reloader.gemspec
23 lines (21 loc) · 1.19 KB
/
hot_reloader.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/hot_reloader/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'hot_reloader'
s.version = HotReloader::VERSION
s.date = Time.now.strftime('%F')
s.required_ruby_version = '>= 2.4.4'
s.authors = ['Billy.Zheng(zw963)']
s.email = ['[email protected]']
s.summary = 'A dead simple ruby code hot reloader wrap around zeitwerk and listen.'
s.description = 'A dead simple ruby code hot reloader wrap around zeitwerk and listen.'
s.homepage = 'http://github.com/zw963/hot_reloader'
s.license = 'MIT'
s.require_paths = ['lib']
s.files = `git ls-files bin lib *.md LICENSE`.split("\n")
s.files -= Dir['images/*.png']
s.executables = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f) }
s.add_runtime_dependency 'zeitwerk', '~>2.6'
s.add_runtime_dependency 'listen', '~>3.7'
s.add_development_dependency 'ritual', '~>0.5'
s.add_development_dependency 'minitest', '5.15.0'
end