Project

geny

0.0
No commit activity in last 3 years
No release in over 3 years
The only tool you need to build a code generator.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
~> 0.1.0
~> 13.0
~> 3.0
~> 0.18

Runtime

~> 0.2
~> 0.7
~> 0.9
~> 0.21
 Project Readme

Geny

Build Version

A tool for building code generators.

Installation

Add this line to your application's Gemfile:

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:

import React from "react";

export const <%= name %> = props => {
  return <h1><%= name ></h1>
}

Next, we'll define our generator at .geny/react/component/generator.rb:

parse do
  description "generate a React component"
  usage "geny react:component [NAME]"
  argument :name, required: true, desc: "component name"
end

invoke do
  templates.copy "component.erb", "src/components/#{name}.js"
end

Awesome. Run it:

$ geny react:component Logo
        create  src/components/Logo.js

Obviously, 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 code of conduct.

License

The gem is available as open source under the terms of the MIT License.

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.