ruby-avm-library/lib/avm/image_quality.rb

11 lines
155 B
Ruby
Raw Normal View History

2011-03-16 19:32:50 +00:00
require 'avm/controlled_vocabulary'
2011-03-15 14:55:09 +00:00
module AVM
module ImageQuality
2011-03-16 19:32:50 +00:00
TERMS = %w{Good Moderate Poor}
2011-03-15 14:55:09 +00:00
2011-03-16 19:32:50 +00:00
include AVM::ControlledVocabulary
2011-03-15 14:55:09 +00:00
end
end