Strech / ruby-syntax-replacer

Replaces old Ruby syntax with new

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ruby-syntax-replacer package

When run, will replace all old Ruby hash syntax with new, that is:

{
  :name     => 'Mads Ohm Larsen',
  :age      => '25',
  :position => 'Lead developer'  
}

will become

{
  name:     'Mads Ohm Larsen',
  age:      '25',
  position: 'Lead developer'
}

About

Replaces old Ruby syntax with new

License:MIT License


Languages

Language:CoffeeScript 100.0%