mihari 4.1.0 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +5 -0
- data/config.ru +0 -1
- data/lib/mihari/database.rb +1 -1
- data/lib/mihari/version.rb +1 -1
- data/lib/mihari/web/app.rb +1 -1
- data/lib/mihari/web/public/index.html +1 -1
- data/lib/mihari/web/public/static/js/app.b88ce341.js +35 -0
- data/lib/mihari/web/public/static/js/app.b88ce341.js.map +1 -0
- data/mihari.gemspec +6 -6
- metadata +16 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02dcb4c10888bb90fd38fc6ae879eb54d1eea6e06fbe3c7c4f662a76271e85bc
|
4
|
+
data.tar.gz: dd146a224d1b280f58ea71a566472a0dd80ad7e676703d6b6240c744ccad7244
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b23693c762329a79dddfa92699cd55c3d6a566e7753fea87d41a854871eab6ca408491000c7dd944396ac32bab2468e9c00bfed81335f5f5253c701033a53a5e
|
7
|
+
data.tar.gz: 3bc90185ef6a9684b05e9d7177a90aec54a73e5d0978e7d0f50c8f56a69e6040db1df567a98d7425ce2656e18e704d5f672fae1b44323c163f2ce913644493f2
|
data/Rakefile
CHANGED
data/config.ru
CHANGED
data/lib/mihari/database.rb
CHANGED
data/lib/mihari/version.rb
CHANGED
data/lib/mihari/web/app.rb
CHANGED
@@ -42,7 +42,7 @@ module Mihari
|
|
42
42
|
end.to_app
|
43
43
|
end
|
44
44
|
|
45
|
-
def run!(port: 9292, host: "localhost", threads: "0:
|
45
|
+
def run!(port: 9292, host: "localhost", threads: "0:5", verbose: false)
|
46
46
|
url = "http://#{host}:#{port}"
|
47
47
|
|
48
48
|
Rack::Handler::Puma.run(instance, Port: port, Host: host, Threads: threads, Verbose: verbose) do |_launcher|
|
@@ -1 +1 @@
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/static/favicon.ico"><title>Mihari</title><link href="/static/js/app.
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/static/favicon.ico"><title>Mihari</title><link href="/static/js/app.b88ce341.js" rel="preload" as="script"></head><body><noscript><strong>We're sorry but Mihari doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/static/js/app.b88ce341.js"></script></body></html>
|