-require 'osm'
+require "osm"
module Redactable
def self.included(base)
def redact!(redaction)
# check that this version isn't the current version
- fail OSM::APICannotRedactError.new if self.is_latest_version?
+ raise OSM::APICannotRedactError.new if is_latest_version?
# make the change
self.redaction = redaction
- self.save!
+ save!
end
end