Last Updated: February 25, 2016
·
570
· netmask

Update a gems in a specific group

just open an a rails console

$ rails c

and follow this lines

> gems = Bundler.require(:development, :assets, :test).map(&:name).join("  ") 
> %x{ bundle update #{gems} }

note: if you want to update the gems without group those belongs to :default group