-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinori.gemspec
26 lines (24 loc) · 1.35 KB
/
inori.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
# frozen_string_literal: true
require './lib/inori/version'
Gem::Specification.new do |s|
s.name = 'inori.rb'
s.version = Inori::VERSION
s.required_ruby_version = '>=3.0.0'
s.platform = Gem::Platform::RUBY
s.summary = 'Yet Another High Performance Ruby Web Framework'
s.description = 'Inori is a Ruby Web Framework, providing high performance and proper abstraction.'
s.authors = ['Yet Another AI']
s.email = ['[email protected]']
s.require_paths = ['lib']
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|.resources)/}) } \
- %w[README.md CODE_OF_CONDUCT.md CONTRIBUTING.md Gemfile Rakefile inori.gemspec .gitignore .rspec .rubocop.yml
.travis.yml logo.png Rakefile Gemfile]
s.extensions = ['ext/inori/extconf.rb']
s.homepage = 'https://github.com/inori-rb/inori.rb'
s.metadata = { 'issue_tracker' => 'https://github.com/inori-rb/inori.rb/issues',
'rubygems_mfa_required' => 'true' }
s.license = 'MIT'
s.add_runtime_dependency 'evt', '~> 0.4.0'
s.add_runtime_dependency 'mizu', '~> 0.1.2'
s.add_runtime_dependency 'mustermann', '~> 1.0'
end