CartoDB/cartodb20

View on GitHub
services/synchronizer/lib/synchronizer/member.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CartoDB
  module Synchronizer
    class Member
      def initialize(attributes={})
        @attributes = attributes
      end

      def run
        puts "running"
        self
      end

      attr_reader :attributes
    end
  end
end