18 lines
244 B
Ruby
18 lines
244 B
Ruby
module CartoDB
|
|
module Synchronizer
|
|
class Member
|
|
def initialize(attributes={})
|
|
@attributes = attributes
|
|
end
|
|
|
|
def run
|
|
puts "running"
|
|
self
|
|
end
|
|
|
|
attr_reader :attributes
|
|
end
|
|
end
|
|
end
|
|
|