Run each chain:
$ ruby full_chain.rb
$ ruby half_chain.rb
$ ruby no_chain.rb| import sys | |
| import os | |
| import xml.etree.ElementTree as ET | |
| import logging | |
| import re | |
| from shutil import copyfile | |
| from optparse import OptionParser | |
| ### This file came from the https://github.com/flow123d/flow123d repo they were nice enough to spend time to write this. | |
| ### It is copied here for other people to use on its own. |
| #include <assert.h> | |
| #include <stdarg.h> | |
| #include <stdbool.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| enum type { | |
| NIL, |
| #!/bin/bash | |
| thin start -p 3000 -R test.ru |