diff options
author | Xu Cheng <xucheng@me.com> | 2014-07-08 20:53:31 +0800 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-08 15:43:04 +0200 |
commit | 8046e59f0594cfdd717d2714514fcf3f796fddd4 (patch) | |
tree | 93f6cdb9aad4a3353b104908f76112160590155a | |
parent | 447f1c7b545f83aae494a1919fd0e12fff5cb9dd (diff) | |
download | rneovim-8046e59f0594cfdd717d2714514fcf3f796fddd4.tar.gz rneovim-8046e59f0594cfdd717d2714514fcf3f796fddd4.tar.bz2 rneovim-8046e59f0594cfdd717d2714514fcf3f796fddd4.zip |
neovim.rb: modernize the style
https://github.com/styleguide/ruby
-rw-r--r-- | neovim.rb | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,13 +1,13 @@ -require 'formula' +require "formula" class Neovim < Formula - homepage 'http://neovim.org' - head 'https://github.com/neovim/neovim.git' + homepage "http://neovim.org" + head "https://github.com/neovim/neovim.git" - depends_on 'md5sha1sum' - depends_on 'cmake' - depends_on 'libtool' - depends_on 'automake' + depends_on "md5sha1sum" + depends_on "cmake" + depends_on "libtool" + depends_on "automake" def install ENV.deparallelize |