-
Notifications
You must be signed in to change notification settings - Fork 0
/
tony.gemspec
23 lines (23 loc) · 870 Bytes
/
tony.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |spec|
spec.name = 'tony'
spec.version = '0.63'
spec.summary = %q(A focused and straightforward Ruby web framework.)
spec.authors = ['Justin Bishop']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/jubishop/tony'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb']
spec.require_paths = ['lib']
spec.bindir = 'bin'
spec.executables = []
spec.metadata = {
'source_code_uri' => 'https://github.com/jubishop/tony',
'rubygems_mfa_required' => 'true'
}
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.2')
spec.add_runtime_dependency('base64')
spec.add_runtime_dependency('rack')
spec.add_runtime_dependency('rack-contrib')
spec.add_runtime_dependency('slim')
spec.add_runtime_dependency('tzinfo')
end