jun 0.3.1 → 0.3.2
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/lib/jun/action_dispatch/routing/welcome.html.erb +25 -3
- data/lib/jun/version.rb +1 -1
- metadata +3 -10
- data/.rubocop.yml +0 -13
- data/Gemfile +0 -5
- data/Rakefile +0 -16
- data/bin/console +0 -8
- data/bin/setup +0 -8
- data/jun.gemspec +0 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b6cc6a15d5af338fd4de1afc935b39f43dd28967b636fc5bb652d014232d139
|
|
4
|
+
data.tar.gz: 0755de2dc72eb2c0879fcb42af4230073c5b0e15c31e393bf7f4db3238f1dc1e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79d60c6c07d2f0680c454c620b6c4d32938cc14de180fedef634fb47b3ff56b53a490eeefbabc67371af9e1116ffa19362d554828373da19775ff9b3a8660777
|
|
7
|
+
data.tar.gz: 034d8cebfd5e1e371564c33017dfdcaed4cefdd71a920d8e0a38a06a15d0fbe22ec924a5dfe44ecc3bc0923e169df0f8a488b732cb85ce07f71a20b8a8cd842a
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
7
|
|
|
8
8
|
<style>
|
|
9
|
+
:root {
|
|
10
|
+
--background-color: #fff3f3;
|
|
11
|
+
--primary-color: #fc7e70;
|
|
12
|
+
}
|
|
13
|
+
|
|
9
14
|
body {
|
|
10
15
|
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
|
|
11
|
-
background-color:
|
|
16
|
+
background-color: var(--background-color);
|
|
12
17
|
color: #7d3737;
|
|
13
18
|
}
|
|
14
19
|
|
|
@@ -22,12 +27,17 @@
|
|
|
22
27
|
}
|
|
23
28
|
|
|
24
29
|
.button {
|
|
25
|
-
background-color:
|
|
30
|
+
background-color: var(--primary-color);
|
|
26
31
|
color: #fff;
|
|
27
32
|
margin: 0 0.2rem;
|
|
28
33
|
padding: 0.5rem 0.75rem;
|
|
29
34
|
border-radius: 3px;
|
|
30
35
|
text-decoration: none;
|
|
36
|
+
user-select: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.button:hover {
|
|
40
|
+
background-color: #ef7769;
|
|
31
41
|
}
|
|
32
42
|
|
|
33
43
|
.docs-links {
|
|
@@ -38,8 +48,20 @@
|
|
|
38
48
|
width: 100px;
|
|
39
49
|
height: 100px;
|
|
40
50
|
border-radius: 50%;
|
|
41
|
-
background-color:
|
|
51
|
+
background-color: var(--primary-color);
|
|
42
52
|
margin: 2rem auto;
|
|
53
|
+
position: relative;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.sunspot::before {
|
|
57
|
+
content: "";
|
|
58
|
+
width: 50px;
|
|
59
|
+
height: 50px;
|
|
60
|
+
position: absolute;
|
|
61
|
+
background-color: var(--background-color);
|
|
62
|
+
border-radius: 50%;
|
|
63
|
+
top: 25px;
|
|
64
|
+
left: 25px;
|
|
43
65
|
}
|
|
44
66
|
</style>
|
|
45
67
|
</head>
|
data/lib/jun/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zoran
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rack
|
|
@@ -110,21 +110,14 @@ dependencies:
|
|
|
110
110
|
version: '0.14'
|
|
111
111
|
description: A simple web framework inspired by Rails. Not meant for production use.
|
|
112
112
|
email:
|
|
113
|
-
- zspesic@gmail.com
|
|
114
113
|
executables:
|
|
115
114
|
- jun
|
|
116
115
|
extensions: []
|
|
117
116
|
extra_rdoc_files: []
|
|
118
117
|
files:
|
|
119
|
-
- ".rubocop.yml"
|
|
120
|
-
- Gemfile
|
|
121
118
|
- LICENSE.txt
|
|
122
119
|
- README.md
|
|
123
|
-
- Rakefile
|
|
124
|
-
- bin/console
|
|
125
|
-
- bin/setup
|
|
126
120
|
- exe/jun
|
|
127
|
-
- jun.gemspec
|
|
128
121
|
- lib/jun.rb
|
|
129
122
|
- lib/jun/action_controller/base.rb
|
|
130
123
|
- lib/jun/action_controller/callbacks.rb
|
|
@@ -197,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
197
190
|
- !ruby/object:Gem::Version
|
|
198
191
|
version: '0'
|
|
199
192
|
requirements: []
|
|
200
|
-
rubygems_version: 3.
|
|
193
|
+
rubygems_version: 3.4.3
|
|
201
194
|
signing_key:
|
|
202
195
|
specification_version: 4
|
|
203
196
|
summary: A simple Ruby web framework.
|
data/.rubocop.yml
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require "bundler/gem_tasks"
|
|
4
|
-
require "rake/testtask"
|
|
5
|
-
|
|
6
|
-
Rake::TestTask.new(:test) do |t|
|
|
7
|
-
t.libs << "test"
|
|
8
|
-
t.libs << "lib"
|
|
9
|
-
t.test_files = FileList["test/**/*_test.rb"]
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
require "rubocop/rake_task"
|
|
13
|
-
|
|
14
|
-
RuboCop::RakeTask.new
|
|
15
|
-
|
|
16
|
-
task default: %i[test rubocop]
|
data/bin/console
DELETED
data/bin/setup
DELETED
data/jun.gemspec
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require_relative "lib/jun/version"
|
|
4
|
-
|
|
5
|
-
Gem::Specification.new do |spec|
|
|
6
|
-
spec.name = "jun"
|
|
7
|
-
spec.version = Jun::VERSION
|
|
8
|
-
spec.authors = ["Zoran"]
|
|
9
|
-
spec.email = ["zspesic@gmail.com"]
|
|
10
|
-
|
|
11
|
-
spec.summary = "A simple Ruby web framework."
|
|
12
|
-
spec.description = "A simple web framework inspired by Rails. Not meant for production use."
|
|
13
|
-
spec.homepage = "https://github.com/zokioki/jun"
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = ">= 2.6.0"
|
|
16
|
-
|
|
17
|
-
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
18
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
|
19
|
-
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
|
|
23
|
-
spec.bindir = "exe"
|
|
24
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
25
|
-
spec.require_paths = ["lib"]
|
|
26
|
-
|
|
27
|
-
spec.add_runtime_dependency "rack", "~> 2.2"
|
|
28
|
-
spec.add_runtime_dependency "tilt", "~> 2.0"
|
|
29
|
-
spec.add_runtime_dependency "sqlite3", "~> 1.4"
|
|
30
|
-
|
|
31
|
-
spec.add_development_dependency "rake", "~> 13.0"
|
|
32
|
-
spec.add_development_dependency "minitest", "~> 5.0"
|
|
33
|
-
spec.add_development_dependency "rubocop", "~> 1.21"
|
|
34
|
-
spec.add_development_dependency "pry", "~> 0.14"
|
|
35
|
-
end
|