radical 1.0.1 → 1.0.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/CHANGELOG.md +11 -1
- data/lib/radical/database.rb +1 -1
- data/lib/radical/view.rb +1 -1
- data/radical.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28490e420f7e00fe1ccfc2497977b944e1249a89198bde5241eba97e470265bd
|
4
|
+
data.tar.gz: b14efd9cfd3e37b24e42c2deaa2c6152051bab21d1d222da9c79dcfefd26bd81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45bba97d128d5055b4a086ae6257fd62bddeac75f62826a08018e72080b56bc7883bbaaaa5386445d66695d8c07cb5375ebe3c737c86be9def6c9b786d5873de
|
7
|
+
data.tar.gz: f521e7304e9635bb46c195dbea3548f3b4d69a354322c08d1b906c510af5933b80f6d8e9367fc3f8228af6bf315ccefd6037f50e75b5a4cfdc9efd9af1f9e0e0
|
data/CHANGELOG.md
CHANGED
@@ -3,7 +3,17 @@ All notable changes to this project will be documented in this file
|
|
3
3
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
5
5
|
|
6
|
-
|
6
|
+
# [Unreleased]
|
7
|
+
|
8
|
+
# 1.0.2
|
9
|
+
|
10
|
+
- Set default views / migrations paths
|
11
|
+
|
12
|
+
# 1.0.1
|
13
|
+
|
14
|
+
- Fix changelog link in gemspec
|
15
|
+
|
16
|
+
## 1.0.0
|
7
17
|
|
8
18
|
- Very basic understanding of how much memory it takes for a basic ruby app
|
9
19
|
- Start to integrate controllers and routing
|
data/lib/radical/database.rb
CHANGED
data/lib/radical/view.rb
CHANGED
@@ -21,7 +21,7 @@ module Radical
|
|
21
21
|
attr_accessor :_views_path, :_layout
|
22
22
|
|
23
23
|
def view_path(dir, name)
|
24
|
-
filename = File.join(@_views_path, 'views', dir, "#{name}.erb")
|
24
|
+
filename = File.join(@_views_path || '.', 'views', dir, "#{name}.erb")
|
25
25
|
|
26
26
|
raise "Could not find view file: #{filename}. You need to create it." unless File.exist?(filename)
|
27
27
|
|
data/radical.gemspec
CHANGED