NOTICE: This package has been removed from pkgsrc

./lang/ruby-gherkin, Parser and compiler for the Gherkin language

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 9.0.0, Package name: ruby26-gherkin-9.0.0, Maintainer: minskim

Gherkin is a parser and compiler for the Gherkin language.


Required to run:
[devel/ruby-cucumber-messages] [lang/ruby26-base]

Required to build:
[pkgtools/cwrappers]

Master sites:

SHA1: 1406ba5502a136f4f666a0060e93ed6ab8190abf
RMD160: f924fa9fa86dcdaed82cd2ebff3b693d3009859d
Filesize: 31 KB

Version history: (Expand)


CVS history: (Expand)


   2020-04-27 06:24:11 by Takahiro Kambe | Files touched by this commit (5) | Package removed
Log message:
lang/ruby-gherkin: remove package

Remove ruby-gherkin package which was replaced by ruby-cucumber-gherkin.
   2020-01-18 17:30:45 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
lang/ruby-gherkin: update to 9.0.0

Update ruby-gherkin to 9.0.0.

9.0.0 - 2019-12-10

Changed

* Renamed --json command line option to --format protobuf|ndjson
* Upgrade to cucumber-messages 8.0.0

8.2.1 - 2019-11-22

Fixed

* PickleStep have unique IDs when generated from a Background section (#800
  vincent-psarga)

8.2.0 - 2019-11-14

Fixed

* [Ruby] Make CI build work on Ruby 2.3, 2.4, 2.5 and 2.6 (#777
  vincent-psarga aslakhellesoy)

8.1.1 - 2019-10-17

Fixed

* [Ruby] Replace internal ProtobufMessageStream with ProtobufIoEnumerator

8.1.0 - 2019-10-16

Added

* Better Indonesian translation (#733 milhcbt)
* New Nepali translation (#729 ankitpokhrel)
* New Marathi keywords (#731 #758 upgundecha)

Changed

* [Java] restore native Java parser (#750 aslakhellesoy)

Removed

* [JavaScript] - GherkinExe (after it was fixed)

Fixed

* [JavaScript] - GherkinExe exposes stderr (#723 charlierudolph)

8.0.0 - 2019-10-03

Added

* New keywords for German (#352 #707 #708 coderbyheart Haukinger)

Changed

* Upgrade cucumber-messages to 6.0.1
* [JavaScript] restore native JavaScript parser (#709 #689 badeball
  aslakhellesoy)
* [Ruby] restore native ruby parser (#702 brasmusson)

Fixed

* [Go, Ruby] Fix trimming of whitespace in example cells (#703 aslakhellesoy)

7.0.4 - 2019-08-29

Changed

* Upgrade to cucumber-messages 5.0.1

7.0.3 - 2019-08-15

Fixed

* [Ruby] Fix inclusion of gherkin executables

7.0.2 - 2019-08-14

Changed

* Upgrade to c21e 2.0.0

7.0.1 - 2019-08-14

Fixed

* The 7.0.0 release failed

7.0.0 - 2019-08-14

Added

* [TypeScript] dialect support (#597 charlierudolph aslakhellesoy)
* Populate the Pickle#id field with a SHA1 hash of the source + line + column.

Fixed

* [TypeScript] ExeFile not a constructor (#641 #634 joscha)
* [Java,TypeScript] Fix parsing of long documents. (#566 aslakhellesoy)

6.0.17 - 2019-03-31

Changed

* Upgrade to cucumber-messages 2.1.2
   2019-01-20 14:40:44 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
lang/ruby-gherkin: update to 6.0.15

6.0.15 - 2018-10-31

Added

* (Go) Executables are uploaded to GitHub releases.

Fixed

* Fix bug where leading tabs prevented parser from identifying keywords (#512
  [VjacheslavVytjagov])
* [JavaScript] Fix JavaScript build (#499 noisygerman)

6.0.13 - 2018-09-25

This major release aligns Gherkin with Example Mapping, a collaborative
technique for designing scenarios and discovering details about rules and
behaviour.

A new Rule keyword has been introduced, and acts as a grouping of one or more
Examples - a new synonym for Scenario.  The Scenario Outline keyword can now
be interchanged with the Scenario keyword, which makes Gherkin a little less
confusing, especially to beginners.  These are the first major change to the
Gherkin grammar in 8 years or so, and we're pretty excited about them.  We
hope they will guide people towards thinking of scenarios as examples of
business rules rather than a series of form submissions and link clicking.
This rule-focused style engages product owners, and can act as amazing living
documentation of your product.  It opens up for the true benefits of BDD - a
business-friendly format for describing and agreeing on software behaviour,
and a guide to development.  Developers will code against this spec, and
produce better (simpler) software faster.  The software will do what it says
on the tin.

The new Gherkin grammar is backwards compatible, meaning that existing Gherkin
documents are still valid.

The library API however is not backwards compatible.  It is now a stream-like
API which produces a stream of messages (source, AST and pickle messages).

Internally, each library shells out to a go executable (embedded in the
library for all major OSes and processor architectures), and communicates via
STDIN/STDOUT using protocol buffers.  The rationale behind this architectural
change is to reduce the maintenance burden (a single parser rather than a
dozen), but also to make it quicker and easier to implement a Gherkin library
in a new language.  Just generate some protobuf classes/structs and write a
small program that shells out and communicates using those messages.

Our preliminary benchmarks suggest that performance is comparable to the
native implementations, or better.  There is a small hit in startup cost, but
this is offset against a higher throughput of the parser.

At the time of this writing Gherkin 6 is nearly integrated in Cucumber-JVM and
Cucumber-Ruby.  Integration with Cucumber.js has not started and we would
really welcome some help with that.

The message protocol will continue to evolve to represent runtime information
such as results, parameter types, cucumber expressions and other metadata.
This will make it easier for the community to build plugins for Cucumber.  One
HTML Gherkin formatter to rule them all. Statistic plugins and more.

Added

* (TypeScript) - Added TypeScript definitions (.d.ts) for Gherkin.
* Added Rule keyword (#250 aslakhellesoy)
* Added Example as synonym for Scenario in English and many other
  languages. This is to align Gherkin with BDD and Example Mapping
  terminology. (aslakhellesoy)
* Added Ukoliko as an additional synonym for Given, in Croatian. (#480 banovotz)

Changed

* (JavaScript,Java,Ruby) The native parsers are removed. Parsing is done by
  gherkin-go executables which are bundled with the published
  libraries. (aslakhellesoy, [jaysonesmith])
* (JavaScript,Java,Ruby,Go) Scenario keyword (or Example keyword) can be used
  to create Scenario Outline. (#353 aslakhellesoy)

Removed

* (Java) OSGi support has been removed. (#412 aslakhellesoy)

Fixed

* (JavaScript) Fix ability to pass language to parser. (#401 charlierudolph)
   2018-10-18 16:36:48 by Jonathan Perkin | Files touched by this commit (1)
Log message:
ruby-gherkin: ALTERNATIVES file needs newline at the end.

Without it the EOF handling in the INSTALL script broke.
   2018-09-23 17:31:22 by Takahiro Kambe | Files touched by this commit (4) | Package updated
Log message:
lang/ruby-gherkin: update to 5.1.0

5.1.0 - 2018-05-30

Added

* (.NET) - Better .NET Core support
* Support for Aragonese (#298 danilat)
* (C) build a shared libgherkin.so library which allows Gherkin to be used as
  a library. (Cucumber.ml currently uses this.) (cucumber/gherkin-c#6 cyocum)

Changed

* Pass the content type of a docstring down into its pickle string form (#292
  rjwittams)
* Fixed Russian equivalents of Given and Then. (#369 cerebellum13)

Fixed

* (C) Segfault when file does not exist (#394 #395 cyocum)
* (JavaScript) (#374 #377 charlierudolph)
* (Ruby, JavaScript) Remove berp.exe from packages (#289 aslakhellesoy)
* (Go) fixes validation for go vet tool on latest versions (#330 l3pp4rd)
* (Ruby) removed unneeded files from the gem
   2017-06-30 18:07:51 by Jonathan Perkin | Files touched by this commit (2)
Log message:
Add newline at EOF to ensure the +INSTALL scripts are generated correctly.
   2017-06-21 16:05:34 by Takahiro Kambe | Files touched by this commit (4)
Log message:
Update ruby-gherkin to 4.1.3.

* pkgsrc change: add pkg_alternatives support.

Please refer
<https://github.com/cucumber/gherkin-ruby/compare/v4.0.0...v4.1.3> for
changes.
   2017-02-10 06:40:31 by Min Sik Kim | Files touched by this commit (4)
Log message:
Import ruby-gherkin-4.0.0 as lang/ruby-gherkin

Gherkin is a parser and compiler for the Gherkin language.