-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrakie.gemspec
36 lines (34 loc) · 1.01 KB
/
rakie.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
require File.expand_path("../lib/rakie/version", __FILE__)
Gem::Specification.new do |s|
s.name = "rakie"
s.version = Rakie.version_s
s.authors = ["Jakit Liang"]
s.date = %q{2021-03-29}
s.description = %q{Rakie is lucky and lucky}
s.email = %q{[email protected]}
s.files = [
"lib/rakie.rb",
"lib/rakie/channel.rb",
"lib/rakie/event.rb",
"lib/rakie/http.rb",
"lib/rakie/http_proto.rb",
"lib/rakie/http_server.rb",
"lib/rakie/log.rb",
"lib/rakie/proto.rb",
"lib/rakie/simple_server.rb",
"lib/rakie/tcp_channel.rb",
"lib/rakie/tcp_server_channel.rb",
"lib/rakie/version.rb",
"lib/rakie/websocket.rb",
"lib/rakie/websocket_proto.rb",
"lib/rakie/websocket_server.rb",
"Rakefile"
]
s.test_files = ["test/test_rakie.rb"]
s.homepage = %q{https://github.com/Jakitto/rakie}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.required_ruby_version = '> 2.5'
s.summary = %q{Rakie!}
s.license = 'BSD-2-Clause-Patent'
end