rails_lite 0.1.1 → 0.1.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/README.md +14 -3
- data/lib/rails_lite/version.rb +1 -1
- data/rails_lite.gemspec +2 -2
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7759a770dc9602ef49cb194ca84f76800a38187f0fc77ebd8ab249695064a51e
|
|
4
|
+
data.tar.gz: c3670509e07359ba58f390ff14ac32481fd6385d3601d958f0431d8973391b18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2add2ce2b42b6d29051dea795cbc08b660e7339fb12e97a0acc48d7587a58a39d0c709d193b8c338424f6f685d44d197a74578a690f951ebf0638736e477a1d1
|
|
7
|
+
data.tar.gz: 0b5d8c6e7e47507619d1137dd1d0ea98b24c521076f1dd6f46507dd784e8a5998a89b730b183998d84948edf92b77eccac6d70493ccded75916184df490e5a91
|
data/README.md
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
# RailsLite
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
Lyle is an MVC framework for building web applications. Some features include:
|
|
4
|
+
|
|
5
|
+
* SQLite or PostgreSQL ORM with associations and search
|
|
6
|
+
* Controllers with Session and Flash Management
|
|
7
|
+
* CSRF Protetion
|
|
8
|
+
* Static Asset Rendering
|
|
9
|
+
* Restful and Custom Routing
|
|
10
|
+
* URL Helper Methods
|
|
11
|
+
* Server
|
|
12
|
+
* Model Validations
|
|
13
|
+
* Model and Controller Callbacks
|
|
14
|
+
* JBuilder and HTML Views
|
|
15
|
+
|
|
16
|
+
For an example, visit: [https://github.com/jeffdeliso/rails_lite_sample_app](https://github.com/jeffdeliso/rails_lite_sample_app)
|
|
6
17
|
|
|
7
18
|
## Installation
|
|
8
19
|
|
data/lib/rails_lite/version.rb
CHANGED
data/rails_lite.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Jeff DeLiso"]
|
|
10
10
|
spec.email = ["jeff.deliso@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{
|
|
13
|
-
spec.description = %q{
|
|
12
|
+
spec.summary = %q{RailsLite is an MVC framework for building web applications. This was built for educational purposes.}
|
|
13
|
+
spec.description = %q{RailsLite is an MVC framework for building web applications. This was built for educational purposes.}
|
|
14
14
|
spec.homepage = "https://github.com/jeffdeliso/Rails_Lite_Gem"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_lite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeff DeLiso
|
|
@@ -52,7 +52,8 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: 0.20.3
|
|
55
|
-
description:
|
|
55
|
+
description: RailsLite is an MVC framework for building web applications. This was
|
|
56
|
+
built for educational purposes.
|
|
56
57
|
email:
|
|
57
58
|
- jeff.deliso@gmail.com
|
|
58
59
|
executables:
|
|
@@ -165,5 +166,6 @@ rubyforge_project:
|
|
|
165
166
|
rubygems_version: 2.7.6
|
|
166
167
|
signing_key:
|
|
167
168
|
specification_version: 4
|
|
168
|
-
summary:
|
|
169
|
+
summary: RailsLite is an MVC framework for building web applications. This was built
|
|
170
|
+
for educational purposes.
|
|
169
171
|
test_files: []
|