An open API service indexing awesome lists of open source software.

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

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 expandtab

set number
syntax on

```