So, starting with Rails 4.1.x, it seems recommended to use rails under the application folder. Instead of the traditional:
rails server
Rails recommends using
bin/rails server
It looks like bin / rails are referencing rails with additional materials. What would be the added benefits of using bin / rails over rails?
Second question: I used the rails server, the rails console, etc., and not the bin / rails server, the bin / rails console. Without using bin / rails, would I lose anything (for example, load some libraries incorrectly, etc.)?
Thanks.
source share