Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rzane/geny
A framework for building code generators
https://github.com/rzane/geny
code generator ruby templates
Last synced: 3 months ago
JSON representation
A framework for building code generators
- Host: GitHub
- URL: https://github.com/rzane/geny
- Owner: rzane
- License: mit
- Created: 2019-12-05T07:39:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-18T02:55:22.000Z (about 4 years ago)
- Last Synced: 2024-07-20T01:31:51.199Z (4 months ago)
- Topics: code, generator, ruby, templates
- Language: Ruby
- Homepage: https://rubydoc.info/github/rzane/geny
- Size: 158 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Geny
![Build](https://github.com/rzane/geny/workflows/Build/badge.svg)
![Version](https://img.shields.io/gem/v/geny)A tool for building code generators.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'geny'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install geny
## Usage
You are tired of writing the boilerplate for new React components. Let's solve that.
First, let's create a template at `.geny/react/component/templates/component.erb`:
```javascript
import React from "react";export const <%= name %> = props => {
return<%= name >
}
```Next, we'll define our generator at `.geny/react/component/generator.rb`:
```ruby
parse do
description "generate a React component"
usage "geny react:component [NAME]"
argument :name, required: true, desc: "component name"
endinvoke do
templates.copy "component.erb", "src/components/#{name}.js"
end
```Awesome. Run it:
$ geny react:component Logo
create src/components/Logo.jsObviously, this is a simple example. But Geny comes with a lot of tools to help you build really great code generators with minimal effort.
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/rzane/geny. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the Geny project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rzane/geny/blob/master/CODE_OF_CONDUCT.md).