Sha256: 80dc5120dacb8d083d6dff0e7317c40e9b38cd1e44691be190fce3ee57c9619e
Contents?: true
Size: 363 Bytes
Versions: 2
Compression:
Stored size: 363 Bytes
Contents
#!/bin/bash # # Shell script that creates only the main class for a new transformation # plug-in, using a template # # $1: MIMEType # $2: MIMESubtype # $3: Transformation Name if [ $# != 3 ] then echo -e "Usage: ./generator_main_class.sh MIMEType MIMESubtype TransformationName\n" exit 65 fi ./generator_plugin.sh "$1" "$2" "$3" "--generate_only_main_class"
Version data entries
2 entries across 2 versions & 1 rubygems