Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| eval "$(rbenv init -)" | |
| export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH" | |
| export PS1="\u > \W$ " | |
| bind "set completion-ignore-case on" | |
| bind "set show-all-if-ambiguous on" | |
| alias-help () { | |
| echo "Custom Aliases Usage" |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Command Line
pry -r ./config/app_init_file.rb - load your app into a pry session (look at the file loaded by config.ru)pry -r ./config/environment.rb - load your rails into a pry sessionDebugger
| <html> | |
| <head> | |
| <title>Fluid Layout Example - Header-3-Columns-Sticky-Footer</title> | |
| <style type="text/css" href="https://necolas.github.io/normalize.css/4.1.1/normalize.css"></style> | |
| <style type="text/css"> | |
| html, body { | |
| margin: 0; |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
| # Converts an array of arbitrarily nested arrays of integers into a flat array of integers | |
| # | |
| # == Parameters: | |
| # array | |
| # an array of arbitrarily nested arrays of integers | |
| # accumulator (optional) | |
| # an optional array of integers to be used as an initial value | |
| # | |
| # == Returns: | |
| # A flat array of integers |
This list is based on aliases_spec.rb.
You can see also Module: RSpec::Matchers API.
| matcher | aliased to | description |
|---|---|---|
| a_truthy_value | be_truthy | a truthy value |
| a_falsey_value | be_falsey | a falsey value |
| be_falsy | be_falsey | be falsy |
| a_falsy_value | be_falsey | a falsy value |