https://github.com/mooophy/ruby-kata
Exercises for Ruby
https://github.com/mooophy/ruby-kata
Last synced: about 2 months ago
JSON representation
Exercises for Ruby
- Host: GitHub
- URL: https://github.com/mooophy/ruby-kata
- Owner: Mooophy
- License: mit
- Created: 2015-07-10T14:09:07.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-31T15:02:16.000Z (over 9 years ago)
- Last Synced: 2025-01-30T03:27:21.319Z (4 months ago)
- Language: Ruby
- Size: 313 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ruby-Kata
----------
## Handy tools
* [vim-pathogen](https://github.com/tpope/vim-pathogen)
* [Navigating your bundled gems in Vim](http://effectif.com/vim/using-ctags-with-bundler-gems)## Vimrc
```vim
set tags+=gems.tags
map :tab split:exec("tag ".expand(""))
map :vsp :exec("tag ".expand(""))" size of a hard tabstop
set tabstop=2" size of an "indent"
set shiftwidth=2" a combination of spaces and tabs are used to simulate tab stops at a width
" other than the (hard)tabstop
set softtabstop=2" make "tab" insert indents instead of tabs at the beginning of a line
set smarttab" always uses spaces instead of tab characters
set expandtabset number
syntax on```