summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* gitignore: ignore '.ackrc'Kyrylo Silin2018-10-201-0/+1
| | | | | | | | | | | | I need to add `.ackrc` to help me filter garbage when I search for a string and get results from built YARD documentation. I don't want to commit the file itself because not everybody uses ack. In case you are curious, this is my `.ackrc`: ``` --ignore-dir=doc ```
* Drop support for RubiniusKyrylo Silin2018-10-071-1/+0
| | | | | | | Fixes #1775 (Drop support for Rubinius) I am amazed how many hacks we've had just to support Rubinius. It feels good to be able to remove them and reduce the complexity of the codebase.
* Add rubymine directory to ignore listChristian Haase2015-01-141-0/+1
|
* Add vendor to .gitignoreyui-knk2013-12-141-0/+1
|
* Add *.bundle to .gitignoreyui-knk2013-12-071-0/+1
|
* Ignore editor temp files AKA this-is_my-file.rb~Jordon Bedwell2012-04-011-0/+1
|
* [#408] migrate play, cat, edit & cd commands to command_classBram Swenson2012-01-151-0/+1
|
* update .gitignoreRyan Fitzgerald2011-11-041-3/+1
|
* gitignore *.gemConrad Irwin2011-10-091-0/+1
|
* Pry now indents code similar to IRB.Yorick Peterse2011-10-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code is indented using the class Pry::Indent. This class uses an internal stack that contains the indentation levels for each line of code. Certain keywords such as "class" or "def" will add data to this stack so that the next line is indented, other keywords such as "end" or "}" will remove data from the stack, causing the next line to be un-indented. Pry::Indent is hooked into Pry#retrieve_line as well as Pry#readline. This means that both input strings as well as the ones displayed by "show-method" are indented. Sadly due to the way Readline works input strings are indented similar to IRB. This means that instead of the following: > class User > def initialize > end > end You'll get the following: > class User > def initialize > end > end While annoying there doesn't seem to be a way to work around this issue. Luckily the "show-method" command indents your code properly. By default indentation is turned on. This can be turned off (or back on) using the configuration item Pry.config.indent. However, if you turn this option off after a method is defined "show-method" will still show it with indentation as indentation happens on input rather than only when code is displayed. For more information see Pry::Indent#indent in lib/pry/indent.rb. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
* implement command_prefix featureRyan Fitzgerald2011-07-261-0/+1
|
* Ignored Rubinius' outputMon ouïe2011-05-071-0/+1
|
* added new 'alias_command' and 'desc' commands to CommandBase; also made it ↵John Mair2011-01-261-0/+1
| | | | so show_method comamnd without parameters does a show_method on __method__
* changed get_prompt to select_promptJohn Mair2011-01-101-0/+7