7d4da81272
* install rubocop * 1961 automatic rubocop fixes * update rubocop.yml to ignore half of the remaining cops * rubocop lint warnings * random other warnings fixed
36 lines
594 B
Ruby
36 lines
594 B
Ruby
class Perm
|
|
# e.g. Perm::ISSIONS
|
|
ISSIONS = [:commons, :public, :private].freeze
|
|
|
|
class << self
|
|
def short(permission)
|
|
case permission
|
|
when :commons
|
|
'co'
|
|
when :public
|
|
'pu'
|
|
when :private
|
|
'pr'
|
|
else
|
|
raise 'Invalid permission'
|
|
end
|
|
end
|
|
|
|
def long(perm)
|
|
case perm
|
|
when 'co'
|
|
:commons
|
|
when 'pu'
|
|
:public
|
|
when 'pr'
|
|
:private
|
|
else
|
|
raise 'Invalid short permission'
|
|
end
|
|
end
|
|
|
|
def valid?(permission)
|
|
ISSIONS.include? permission
|
|
end
|
|
end
|
|
end
|