yaframework 0.4.0 → 0.4.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/.gitignore +1 -0
- data/.rubocop.yml +6 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/examples/README.md +9 -2
- data/examples/hello-world/app.rb +0 -4
- data/lib/yaframework/base.rb +1 -1
- data/lib/yaframework/version.rb +1 -1
- metadata +1 -2
- data/examples/hello-world/Gemfile.lock +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23a8af14273443627664b65feb652bc03336d5fbe829f672cae4ef9c8ca4604e
|
|
4
|
+
data.tar.gz: 848d0e46585695fe4756bf91b6c286b9cacb4ec684a535491e7a348f4a2c081a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35fa5d015af06f258f7b7fff290a14a3f60329aeb2e713b4cad172f86b55bde28a01d371a114ed89b77a48862146d78c53721fa21bcd86beaa155c0cec7a13f8
|
|
7
|
+
data.tar.gz: 47a8a7be5c253fb3a1bf788c6256613f85c9132725a328e456b8e7e27f82da322f5f2ff5691e8267dd3fce9139d0db13fcab6ca71e424436bdf1a1b165a88b3b
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [0.4.1] - 2021-07-24
|
|
2
|
+
|
|
3
|
+
- A little fix. Fixed an error with the wrong order of declaring variables (lol)
|
|
4
|
+
|
|
5
|
+
## [0.4.0] - 2021-07-24
|
|
6
|
+
|
|
7
|
+
- Global routing update and large-scale code base changes
|
|
8
|
+
|
|
9
|
+
## [0.3.0] - 2021-07-24
|
|
10
|
+
|
|
11
|
+
- Added tools for interacting with the database
|
|
12
|
+
|
|
1
13
|
## [0.2.2] - 2021-07-23
|
|
2
14
|
|
|
3
15
|
- Params fixed
|
data/Gemfile.lock
CHANGED
data/examples/README.md
CHANGED
|
@@ -2,9 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Here are some examples of applications created with Yaframework:
|
|
4
4
|
|
|
5
|
-
1. [
|
|
5
|
+
1. ###[Hello World](https://github.com/maxbarsukov/yaframework/tree/master/examples/hello-world)
|
|
6
6
|
|
|
7
7
|
A simple application that displays "Hello world" to you.
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
2.
|
|
10
|
+
2. ###[Params](https://github.com/maxbarsukov/yaframework/tree/master/examples/params)
|
|
11
|
+
|
|
12
|
+
Shows how the application parameters can be used
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
3. ###[Halts and Redirects](https://github.com/maxbarsukov/yaframework/tree/master/examples/halts-and-redirects)
|
|
16
|
+
|
|
17
|
+
Shows how to use halts and redirects
|
data/examples/hello-world/app.rb
CHANGED
data/lib/yaframework/base.rb
CHANGED
data/lib/yaframework/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yaframework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- maxbarsukov
|
|
@@ -87,7 +87,6 @@ files:
|
|
|
87
87
|
- bin/setup
|
|
88
88
|
- examples/README.md
|
|
89
89
|
- examples/hello-world/Gemfile
|
|
90
|
-
- examples/hello-world/Gemfile.lock
|
|
91
90
|
- examples/hello-world/README.md
|
|
92
91
|
- examples/hello-world/app.rb
|
|
93
92
|
- examples/hello-world/config.ru
|