rails_lite 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dbcf381a06732d23f274997af2d2e67977087cb6b59d773189e2ee766684f9dc
4
- data.tar.gz: bc3332186e697520dc19a42dc922549222cbe6f7ec0926cd176299eb4ff00d10
3
+ metadata.gz: c78785034316657fff323a90a3b31570ce63ceb4a9243c4f1a8e42b2497ef783
4
+ data.tar.gz: 0cedcd19e63dec4f3f4334634f06949bdaa0b52b31a99d1958cf7bfa402919af
5
5
  SHA512:
6
- metadata.gz: 403808d65334e44514bd141b1a0982379425be91252cb36aa3e861ee3afdedb7b36ba611c793198701c573cc91311cca92d5e2186782c011b22935828223d5fb
7
- data.tar.gz: ee7286b773cc84d8d532c1fcf809258f8f2c429b2a71226c9c5fb874c197d615bcc5039201dd3c7b52898db1cdea9c99a90f723a3883769364b0291ffb88241c
6
+ metadata.gz: fc3fe99c9a2e5601abcfa262db9ca416657464f13e0a8d8ee2013fb5673d47337680498f2ecdf73f28f93b981dd75879ff7b827a9f8c17301e7ead93929f3c1d
7
+ data.tar.gz: ace8cbfb906d0eade3e4900c8e042fe61735c3c95c2032ab962d03839076d39d49403c8fc1d3152b993d8831cea6b4b3cbc260ffc8cd032a9fa41e2558aeb9ee
data/.DS_Store CHANGED
Binary file
data/README.md CHANGED
@@ -1,16 +1,16 @@
1
1
  # RailsLite
2
2
 
3
- RailsLite is an MVC framework for building web applications. Some features include:
3
+ [RailsLite](https://rubygems.org/gems/rails_lite) is a MVC framework for building web applications. Some features include:
4
4
 
5
5
  * SQLite or PostgreSQL ORM with associations and search
6
6
  * Controllers with Session and Flash Management
7
7
  * CSRF Protetion
8
8
  * Static Asset Rendering
9
- * Restful and Custom Routing
9
+ * RESTful and Custom Routing
10
10
  * URL Helper Methods
11
11
  * Server
12
12
  * Model Validations
13
- * Model and Controller Callbacks
13
+ * Model and Controller Lifecycle Methods
14
14
  * JBuilder and HTML Views
15
15
 
16
16
  For an example, visit: [https://github.com/jeffdeliso/rails_lite_sample_app](https://github.com/jeffdeliso/rails_lite_sample_app)
Binary file
@@ -1,3 +1,3 @@
1
1
  module RailsLite
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
Binary file
@@ -2,6 +2,8 @@
2
2
 
3
3
  require_relative '../lib/router/router'
4
4
  require_relative '../config/routes'
5
+ require_relative '../app/controllers/application_controller'
6
+ require_relative '../app/models/application_model'
5
7
  Dir[File.join(__dir__, '..', 'app', 'controllers', '*.rb')].each { |file| require file }
6
8
  Dir[File.join(__dir__, '..', 'app', 'models', '*.rb')].each { |file| require file }
7
9
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff DeLiso
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-02-13 00:00:00.000000000 Z
11
+ date: 2019-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler