-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmidori.gemspec
25 lines (24 loc) · 1.44 KB
/
midori.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
require './lib/midori/version'
Gem::Specification.new do |s|
s.name = 'midori.rb'
s.version = Midori::VERSION
s.required_ruby_version = '>=3.0.0'
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'High performance ruby web framework'
s.description = 'Midori is a Ruby Web Framework, providing high performance and proper abstraction.'
s.authors = ['HeckPsi Lab']
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 midori.gemspec .gitignore .rspec .codeclimate.yml .rubocop.yml .travis.yml logo.png Rakefile Gemfile)
s.extensions = ['ext/midori/extconf.rb']
s.homepage = 'https://github.com/midori-rb/midori.rb'
s.metadata = { 'issue_tracker' => 'https://github.com/midori-rb/midori.rb/issues' }
s.license = 'MIT'
s.post_install_message = File.read('.resources/midori_ascii.txt')
s.add_runtime_dependency 'evt', '~> 0.4.0'
s.add_runtime_dependency 'mustermann', '~> 1.0'
s.add_runtime_dependency 'mizu', '~> 0.1.2'
s.add_development_dependency 'rake-compiler', '~> 1.0'
end