Open philtr opened 3 years ago
Hi there, you've added the stdlib gem to your Gemfile
stdlib
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.
Hi there, you've added the
stdlib
gem to your GemfileThis 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:
...or what have you.