module Diggit::DevelopersActivity::ActivityExtractor::Authors
Deals with authors identity merging
Public Instance Methods
read_options(source_options)
click to toggle source
# File lib/diggit/developers_activity/activity_extractor/authors.rb, line 10 def read_options(source_options) @authors_merge = {} source_options['authors'].each_pair do |k, v| @authors_merge[k.downcase] = v.downcase end end