summaryrefslogtreecommitdiff
path: root/themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2018-05-21 13:21:26 +0200
committerjaseg <git@jaseg.net>2018-05-21 13:21:26 +0200
commita78380049fca7eb6de32d60898463943731cae77 (patch)
tree44ac813c0c79f91f03af577b4bbc91ee73186e32 /themes/hugo-classic/exampleSite/content/post/2012-01-23-juicy-code.md
parentdd025431a0c6f994509d374b7c416df2cedd9497 (diff)
downloadblog-a78380049fca7eb6de32d60898463943731cae77.tar.gz
blog-a78380049fca7eb6de32d60898463943731cae77.tar.bz2
blog-a78380049fca7eb6de32d60898463943731cae77.zip
Vendor heavily modified theme
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.md30
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
+~~~