Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Increase test coverage #995
Conversation
6fcdfa2
to
b918891
This also fixes a bug I found while increasing the test coverage, where passing
false
as the second param ofOmniAuth::Utils.camelize
would throw an error due to there not being a method#first
defined forString
. The old method would also fail since it would turncamelize('apple_jacks', false)
to"aPpleJacks"
, now it will correctly do"appleJacks"