ggen 1.2.0

ggen is a deterministic, language-agnostic code generation framework that treats software artifacts as projections of knowledge graphs.
Documentation
Feature: Quick Start
  Verify the quick start guide from README

  Background:
    Given I have a clean project directory
    And ggen is installed

  Scenario: Generate from local template
    Given I have a template "templates/cli/subcommand/rust.tmpl"
    When I run "ggen project gen cli subcommand --vars cmd=hello summary='Print a greeting'"
    Then a file should be generated
    And the output should be deterministic

  Scenario: Search marketplace
    When I run "ggen market search rust cli"
    Then I should see search results
    And results should contain "cli-subcommand"

  Scenario: Install and use marketplace gpack
    When I run "ggen market add io.ggen.rust.cli-subcommand"
    Then the gpack should be installed
    When I run "ggen project gen io.ggen.rust.cli-subcommand:cli/subcommand/rust.tmpl name=hello description='Print a greeting'"
    Then a file should be generated at "src/cmds/hello.rs"