around_action :web_timeout
- # Helper methods for checking consistency
- include ConsistencyValidations
-
##
# list non-empty changesets in reverse chronological order
def index
class OldNode < ApplicationRecord
include GeoRecord
- include ConsistencyValidations
self.table_name = "nodes"
#
class OldRelation < ApplicationRecord
- include ConsistencyValidations
-
self.table_name = "relations"
# NOTE: this needs to be included after the table name changes, or
#
class OldWay < ApplicationRecord
- include ConsistencyValidations
-
self.table_name = "ways"
# NOTE: this needs to be included after the table name changes, or
# Uses the streaming LibXML "Reader" interface to cut down on memory
# usage, so hopefully we can process fairly large diffs.
class DiffReader
- include ConsistencyValidations
-
# maps each element type to the model class which handles it
MODELS = {
"node" => Node,