From 94fa235b9265d6d59d50c3923a5c6251aaf60cb8 Mon Sep 17 00:00:00 2001 From: Zearin Date: Wed, 15 Jun 2016 11:30:43 -0400 Subject: [PATCH 1/2] README tweaks Fixed a couple of typos. Made a few small edits. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3d4e706..914e3d0 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Microcuke -[![Join the chat at https://gitter.im/cucumber/gherkin3](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/cucumber/microcuke?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![Join the chat at https://gitter.im/cucumber/microcuke](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/cucumber/microcuke?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/cucumber/microcuke.svg)](https://travis-ci.org/cucumber/microcuke) -Microcuke is a tiny Cucumber implementation in 500 SLOC, based on -[Gherkin3](https://github.com/cucumber/gherkin3). It's got 100% unit test coverage. +Microcuke is a tiny Cucumber implementation in 500 SLOC, +based on [Gherkin](https://github.com/cucumber/gherkin). It has 100% unit test coverage. -The sole purpose of microcuke is to provide a very simple reference implementation that +The sole purpose of Microcuke is to provide a super simple reference implementation that can be ported to a new programming language in a few days. Think of it as an aid to developers who wish to implement Cucumber for a new programming language. @@ -16,7 +16,7 @@ we aim to write self-explanatory, simple code instead. If you find something hard to understand, that's a bug! Feel free to open a bug report. Most of Microcuke is written in synchronous JavaScript (for readability), but there are -some parts that are asynchronous (using promises and callbacks). These constructs are +some parts that are asynchronous (promises and callbacks). These constructs are fairly JavaScript-specific, so if you are using microcuke as a guid to write a Cucumber implementation for a new language, you should probably translate that code to simple synchronous code. From 5792b364b2008390a6dc93c5bc0762111486afac Mon Sep 17 00:00:00 2001 From: Zearin Date: Tue, 13 Feb 2018 13:18:25 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 914e3d0..e1cac2f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Microcuke -[![Join the chat at https://gitter.im/cucumber/microcuke](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/cucumber/microcuke?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -[![Build Status](https://travis-ci.org/cucumber/microcuke.svg)](https://travis-ci.org/cucumber/microcuke) +[![Join the chat at https://gitter.im/cucumber-attic/microcuke](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/cucumber/microcuke?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![Build Status](https://travis-ci.org/cucumber-attic/microcuke.svg)](https://travis-ci.org/cucumber/microcuke) Microcuke is a tiny Cucumber implementation in 500 SLOC, based on [Gherkin](https://github.com/cucumber/gherkin). It has 100% unit test coverage. @@ -22,7 +22,7 @@ implementation for a new language, you should probably translate that code to si Here is a high level class diagram to give you an idea: -![](https://github.com/cucumber/microcuke/blob/master/docs/classes.png) +![](https://github.com/cucumber-attic/microcuke/blob/master/docs/classes.png) ## Try it out