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

https://github.com/matmoore/vscode-ruby-boilerplate-generator

VS Code plugin to generate boilerplate code
https://github.com/matmoore/vscode-ruby-boilerplate-generator

Last synced: 8 months ago
JSON representation

VS Code plugin to generate boilerplate code

Awesome Lists containing this project

README

          

# Ruby boilerplate generator

A VS Code extension to generate some ruby boilerplate.

## Features

Generate an initializer from an arglist:

```ruby
def intitialize(foo, bar, baz)
@foo = foo
@bar = bar
@baz = baz
end
```

## Extension Settings

This extension exposes the following commands:

* `ruby-boilerplate-generator.initialize`: Generate an initializer

## Release Notes

### 0.0.1

Initial release

## License
This code is released under the MIT license.

To publish a fork, you will need to change the metadata in `package.json` and follow the [publishing instructions](https://code.visualstudio.com/api/working-with-extensions/publishing-extension).