diff options
| author | leo <azuminha1@gmail.co> | 2025-10-16 20:02:39 -0300 |
|---|---|---|
| committer | leo <azuminha1@gmail.co> | 2025-10-16 20:02:39 -0300 |
| commit | 8e7996214af853803c4dd04534b1f5646b0ac1c5 (patch) | |
| tree | 14a30d462b47b54d41613347782da6e48b71d082 /themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md | |
first
Diffstat (limited to 'themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md')
| -rw-r--r-- | themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md b/themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md new file mode 100644 index 0000000..4614e74 --- /dev/null +++ b/themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md @@ -0,0 +1,30 @@ +--- +title: Juicy Code +author: Open Source +date: '2012-01-23' +categories: + - Code +tags: + - Juicy +slug: juicy-code +--- + +Check out this JUICY! code: + +~~~ruby +def with_value_from_database(value) + self.class.from_database(name, value, type) +end + +def with_cast_value(value) + self.class.with_cast_value(name, value, type) +end + +def with_type(type) + if changed_in_place? + with_value_from_user(value).with_type(type) + else + self.class.new(name, value_before_type_cast, type, original_attribute) + end +end +~~~ |
