1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=UTF-8" http-equiv="Content-type" />
<title>parslet - Projects</title>
<meta content="Kaspar Schiess (http://absurd.li)" name="author" />
<link href="images/favicon3.ico" rel="shortcut icon" />
<link href="/parslet/stylesheets/site.css" rel="stylesheet" /><link href="/parslet/stylesheets/sh_whitengrey.css" rel="stylesheet" /><script src="http://code.jquery.com/jquery-2.1.4.min.js"></script><script src="/parslet/javascripts/toc.js"></script><script src="/parslet/javascripts/sh_main.min.js"></script><script src="/parslet/javascripts/sh_ruby.min.js"></script>
</head>
<body class="code" onload="sh_highlightDocument(); $('#toc').toc({selectors: 'h2'});">
<div id="everything">
<div class="main_menu">
<img src="/parslet/images/parsley_logo.png" alt="Parslet Logo" />
<ul>
<li>
<a href="/parslet/">about</a>
</li>
<li>
<a href="/parslet/get-started.html">get started</a>
</li>
<li>
<a href="/parslet/install.html">install</a>
</li>
<li>
<a href="/parslet/documentation.html">docs</a>
</li>
<li>
<a href="/parslet/contribute.html">contribute</a>
</li>
<li>
<a href="/parslet/projects.html">projects</a>
</li>
</ul>
</div>
<div class="content">
<h1>
Projects
</h1>
<p>Have you got a project that uses parslet? Please write
<a href="mailto:kaspar.schiess@absurd.li">us</a> about it.</p>
<p><a href="https://github.com/relevance/edn-ruby"><strong>edn-ruby</strong></a></p>
<p>edn-ruby is a Ruby library to read and write <a href="https://github.com/edn">edn</a>-
format/edn (extensible data notation), a subset of Clojure used for
transferring data between applications, much like <span class="caps">JSON</span>, <span class="caps">YAML</span>, or <span class="caps">XML</span>.</p>
<p><a href="https://github.com/kschiess/parslet/tree/master/example/"><strong>Examples</strong></a></p>
<p>In here, you can find a parser for a lisp like language and much more.</p>
<p><a href="https://github.com/postmodern/net-http-server"><strong>Net::<span class="caps">HTTP</span>::Server</strong></a></p>
<p>A really small and elegant <span class="caps">HTTP</span> server written in Ruby. Think Webrick. Using
parslet. (Postmodern)</p>
<p><a href="https://github.com/Hal9000/regexador"><strong>regexador</strong></a></p>
<p>An external <span class="caps">DSL</span> for Ruby that tries to make regular expressions readable and
maintainable. (Hal Fulton)</p>
<p><a href="https://github.com/self-ml/selfml"><strong>self-ml</strong></a></p>
<p>A <a href="http://self-ml.github.io/">self-ml</a> implementation using parslet.
(Ricardo Mendes)</p>
<p><a href="https://github.com/undees/thnad"><strong>thnad</strong></a></p>
<p>Thnad is a tiny programming language with so few features that it is not
useful for anything at all — except showing how to write a compiler in half
an hour.</p>
<p><a href="https://github.com/joshwlewis/unitwise"><strong>Unitwise</strong></a></p>
<p>A units of measure library for Ruby. Part of it’s magic comes from supporting
the “Unified Code for Units of Measure”, which has a formal grammar, described
<a href="http://unitsofmeasure.org/ucum.html#section-Grammar-of-Units-and-Unit-Terms">here</a>.
The grammar is sufficiently complicated that it can’t be solved with regular
expressions (mostly because the grammar is recursive), and was therefore better
suited for a <span class="caps">PEG</span>. (Josh Lewis)</p>
<p><a href="https://github.com/rk/werd"><strong>Werd.rb</strong></a></p>
<p>A variant of Chris Pound’s word generator written in Ruby, with some
improvements. (Robert Kosek)</p>
<p><a href="https://github.com/meh/versionub"><strong>versionub</strong></a></p>
<p>A semantic version parser. (meh)</p>
<p><a href="https://github.com/kernow/shortcode"><strong>shortcode</strong></a></p>
<p>A ruby gem for parsing Wordpress style shortcodes using parslet. (Jamie Dyer)</p>
<p><a href="https://github.com/parttimenerd/parser-experiments/tree/master/SimpleJavaParser"><strong>Simple Java Parser</strong></a></p>
<p>A simple Java parser that can parse the overall structure of a Java file.</p>
<p><a href="https://github.com/ruby-in-ruby/crystal"><strong>crystal</strong></a></p>
<p>A ruby virtual machine in 100% ruby, that tries to parse most of ruby syntax
using parslet.</p>
</div>
<div class="copyright">
<p><span class="caps">MIT</span> License, 2010-2018, © <a href="http://absurd.li">Kaspar Schiess</a><br/></p>
</div>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-16365074-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</div>
</body>
</html>
|