set RSpec to 2.14 (since there are some non-RSpec 3 specs)
use eval instead of const_get for formatters lookup.
After setting the RSpec version, I noticed that some formatter tests were failing because the const_get call was finding the Text module instead of the Tailor::Formatters:Text class. Text appears to be from another gem and is used here.
This PR does two things:
eval
instead ofconst_get
for formatters lookup.After setting the RSpec version, I noticed that some formatter tests were failing because the
const_get
call was finding theText
module instead of theTailor::Formatters:Text
class.Text
appears to be from another gem and is used here.