I got a RoR project with Gemfile using two different notations in gems declaration in the same file.
gem "browser"
gem 'execjs'
I have also seen tutorials on internet using " " and others using ' ' for declaring gems, but none of them use both in the same file. May it cause any trouble?
If not, there is any difference using " " or ' ' when declaring gems?