mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
10 lines
129 B
Ruby
10 lines
129 B
Ruby
class Topic < ActiveRecord::Base
|
|
def condition_is_true
|
|
true
|
|
end
|
|
|
|
def condition_is_true_but_its_not
|
|
false
|
|
end
|
|
end
|