1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-29 10:36:48 +02:00
muflax65ngodyewp.onion/lib/episteme.rb

32 lines
470 B
Ruby
Raw Normal View History

2011-09-04 20:28:53 +02:00
# Helper functions for epistemic states.
def techne status
case status
when :rough
"needs revisiting"
2012-01-21 01:34:47 +01:00
when :wip
2011-09-04 20:28:53 +02:00
"work in progress"
when :done
"finished"
else
status.to_s
end
end
2011-09-04 23:05:58 +02:00
def episteme status
case status
when :broken
"semi-believed"
when :discredited
"not believed"
2012-01-21 01:34:47 +01:00
when :mindkiller
"mind-killing"
2011-09-04 23:05:58 +02:00
else
status.to_s
end
end
2011-09-04 20:28:53 +02:00
def episteme_cat status
2011-09-04 23:05:58 +02:00
"[#{episteme status}][Epistemic State]{:.episteme}"
2011-09-04 20:28:53 +02:00
end