2016-02-24 07:05:49 -05:00
|
|
|
# Rails dev tools
|
2014-10-13 10:04:19 -04:00
|
|
|
|
|
|
|
This is a collection of utilities used for Rails internal development.
|
|
|
|
They aren't used by Rails apps directly.
|
|
|
|
|
2014-11-03 02:07:39 -05:00
|
|
|
* `console` drops you in irb and loads local Rails repos
|
|
|
|
* `profile` profiles `Kernel#require` to help reduce startup time
|
2016-02-24 07:05:49 -05:00
|
|
|
* `line_statistics` provides CodeTools module and LineStatistics class to count lines
|
2017-06-20 15:50:05 -04:00
|
|
|
* `test` is loaded by every major component of Rails to simplify testing, for example:
|
|
|
|
`cd ./actioncable; bin/test ./path/to/actioncable_test_with_line_number.rb:5`
|