sportweb 0.1.0 → 0.2.0
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/Gemfile +97 -92
- data/Gemfile.lock +1 -1
- data/HISTORY.md +3 -3
- data/Manifest.txt +9 -0
- data/README.md +77 -57
- data/Rakefile +44 -44
- data/bin/sportweb +6 -6
- data/lib/sportweb.rb +37 -66
- data/lib/sportweb/app.rb +233 -137
- data/lib/sportweb/boot_with_bundler.rb +130 -128
- data/lib/sportweb/boot_with_require.rb +30 -30
- data/lib/sportweb/version.rb +12 -4
- data/public/404.html +67 -0
- data/public/422.html +67 -0
- data/public/500.html +66 -0
- data/public/favicon.ico +0 -0
- data/public/images/placeholder24x24.png +0 -0
- data/public/images/placeholder32x32.png +0 -0
- data/public/images/placeholder48x48.png +0 -0
- data/public/images/placeholder64x64.png +0 -0
- data/public/robots.txt +1 -0
- metadata +15 -5
data/public/500.html
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
.rails-default-error-page {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
.rails-default-error-page h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body class="rails-default-error-page">
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
data/public/favicon.ico
ADDED
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/public/robots.txt
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sportweb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerald Bauer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-06-
|
11
|
+
date: 2018-06-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -864,7 +864,7 @@ dependencies:
|
|
864
864
|
- - "~>"
|
865
865
|
- !ruby/object:Gem::Version
|
866
866
|
version: '3.16'
|
867
|
-
description: sportweb - instant open sports web browser command line tool
|
867
|
+
description: sportweb - instant open sports web admin browser command line tool
|
868
868
|
email: opensport@googlegroups.com
|
869
869
|
executables:
|
870
870
|
- sportweb
|
@@ -873,6 +873,7 @@ extra_rdoc_files:
|
|
873
873
|
- HISTORY.md
|
874
874
|
- Manifest.txt
|
875
875
|
- README.md
|
876
|
+
- public/robots.txt
|
876
877
|
files:
|
877
878
|
- Gemfile
|
878
879
|
- Gemfile.lock
|
@@ -886,6 +887,15 @@ files:
|
|
886
887
|
- lib/sportweb/boot_with_bundler.rb
|
887
888
|
- lib/sportweb/boot_with_require.rb
|
888
889
|
- lib/sportweb/version.rb
|
890
|
+
- public/404.html
|
891
|
+
- public/422.html
|
892
|
+
- public/500.html
|
893
|
+
- public/favicon.ico
|
894
|
+
- public/images/placeholder24x24.png
|
895
|
+
- public/images/placeholder32x32.png
|
896
|
+
- public/images/placeholder48x48.png
|
897
|
+
- public/images/placeholder64x64.png
|
898
|
+
- public/robots.txt
|
889
899
|
homepage: https://github.com/sportdb/sport.db.web
|
890
900
|
licenses:
|
891
901
|
- Public Domain
|
@@ -900,7 +910,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
900
910
|
requirements:
|
901
911
|
- - ">="
|
902
912
|
- !ruby/object:Gem::Version
|
903
|
-
version:
|
913
|
+
version: '2.3'
|
904
914
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
905
915
|
requirements:
|
906
916
|
- - ">="
|
@@ -911,5 +921,5 @@ rubyforge_project:
|
|
911
921
|
rubygems_version: 2.5.2
|
912
922
|
signing_key:
|
913
923
|
specification_version: 4
|
914
|
-
summary: sportweb - instant open sports web browser command line tool
|
924
|
+
summary: sportweb - instant open sports web admin browser command line tool
|
915
925
|
test_files: []
|