mroach / myflightmap

http://myflightmap.com
3 stars 2 forks source link

Remove stdlib from Gemfile #119

Open philtr opened 3 years ago

philtr commented 3 years ago

Hi there, you've added the stdlib gem to your Gemfile

This is actually a gem I created as a joke. You do not need to add this to your Gemfile to use things from the standard library. To use the Ruby Standard Library, all you need to do is require the portions you need when you need them, for example:

require "securerandom"

...or what have you.