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
- Host: GitHub
- URL: https://github.com/matmoore/vscode-ruby-boilerplate-generator
- Owner: MatMoore
- Created: 2020-08-11T15:46:37.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-11T16:09:08.000Z (almost 6 years ago)
- Last Synced: 2025-06-04T21:55:28.897Z (12 months ago)
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=MatMoore.ruby-boilerplate-generator
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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).