This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Some useful Unicode entities | |
| # Non-Breaking Space | |
| snippet nbs | |
| | |
| # ← | |
| snippet left | |
| ← | |
| # → | |
| snippet right | |
| → |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem_group :development, :test do | |
| gem 'pry-rails' # Causes rails console to open pry | |
| # https://github.com/rweng/pry-rails | |
| gem 'pry-debugger' # Adds step, next, finish, and continue commands and breakpoints | |
| # https://github.com/nixme/pry-debugger | |
| gem 'pry-stack_explorer' # Navigate the call-stack | |
| # https://github.com/pry/pry-stack_explorer | |
| gem 'annotate' # Annotate all your models, tests, fixtures, and factories | |
| # https://github.com/ctran/annotate_models | |
| gem 'quiet_assets' # Turns off the Rails asset pipeline log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def write_in_ruby | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test |
NewerOlder