mahseh
mahseh

Reputation: 11

Gems load order in Gemfile

Is there a way to specify the gems load order in Gemfile?

Upvotes: 1

Views: 1014

Answers (1)

Greg Fairbrother
Greg Fairbrother

Reputation: 1041

Have not looked at the code, but from my experience they load in the order specified in the Gemfile

e.g. if this is your Gemfile

gem 'c'
gem 'a'
gem 'b'

c will load before a

Upvotes: 1

Related Questions