Skip to content

Instantly share code, notes, and snippets.

@shannondoah
shannondoah / name_and_phone_auto_merge.rb
Last active December 15, 2021 21:50
Script to merge contacts by phone and name
class NameAndPhoneAutoMerge
attr_reader :company
def initialize(company)
@company = company
end
def self.process(company)
new(company).process
end
@shannondoah
shannondoah / Gemfile
Last active August 29, 2015 14:06 — forked from JBorts/Gemfile
# A sample Gemfile
source "https://rubygems.org"
gem 'rspec'
gem 'pry'
gem 'fastercsv'