https://github.com/hmarr/vim-gemfile
A faster way of adding gems to your Gemfiles
https://github.com/hmarr/vim-gemfile
Last synced: 3 months ago
JSON representation
A faster way of adding gems to your Gemfiles
- Host: GitHub
- URL: https://github.com/hmarr/vim-gemfile
- Owner: hmarr
- Created: 2015-12-08T16:31:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T23:31:11.000Z (about 9 years ago)
- Last Synced: 2025-03-31T08:16:36.351Z (about 1 year ago)
- Language: Vim script
- Size: 56.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-gemfile
A faster way of adding `gem "some_gem", "~> 1.2.3"` to your Gemfiles.
On invoking `:GemfileAdd`, this plugin will query rubygems.org to find the
latest version, and add the relevant line to your Gemfile wherever the cursor
is.
The name of the gem may be provided as an argument, or you will be prompted for
it if no argument is given.

## Installation
Assuming you're using Vundle or similar, add the following to your vimrc:
```vim
Plugin 'hmarr/vim-gemfile'
```