-
Notifications
You must be signed in to change notification settings - Fork 7
/
flame.gemspec
43 lines (33 loc) · 1.36 KB
/
flame.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
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
require_relative 'lib/flame/version'
Gem::Specification.new do |spec|
spec.name = 'flame'
spec.version = Flame::VERSION
spec.summary = 'Web-framework, based on MVC-pattern'
spec.description = <<~DESC
Use controller's classes with instance methods as routing actions,
mounting its in application class.
DESC
spec.authors = ['Alexander Popov']
spec.email = ['alex.wayfer@gmail.com']
spec.license = 'MIT'
github_uri = "https://github.com/AlexWayfer/#{spec.name}"
spec.homepage = github_uri
spec.metadata = {
'rubygems_mfa_required' => 'true',
'bug_tracker_uri' => "#{github_uri}/issues",
'changelog_uri' => "#{github_uri}/blob/v#{spec.version}/CHANGELOG.md",
'documentation_uri' => "http://www.rubydoc.info/gems/#{spec.name}/#{spec.version}",
'homepage_uri' => spec.homepage,
'source_code_uri' => github_uri,
'wiki_uri' => "#{github_uri}/wiki"
}
spec.files = Dir['lib/**/*.rb', 'public/**/*.ico', 'README.md', 'LICENSE.txt', 'CHANGELOG.md']
spec.required_ruby_version = '>= 3.0', '< 4'
spec.add_runtime_dependency 'addressable', '~> 2.5'
spec.add_runtime_dependency 'alt_memery', '~> 2.0'
spec.add_runtime_dependency 'gorilla_patch', '>= 3.0', '< 6'
spec.add_runtime_dependency 'psych', '~> 5.0'
spec.add_runtime_dependency 'rack', '~> 3.0'
spec.add_runtime_dependency 'tilt', '~> 2.1'
end