Sha256: f660d4ed1e28da0be7cfcab0c26cc7e44f9ec9600d859cd3a923f67f4926df63

Contents?: true

Size: 425 Bytes

Versions: 114

Compression:

Stored size: 425 Bytes

Contents

#!/bin/bash -eu

set -o pipefail

underscored_plural_name="${1:?underscored plural name of entities minus .rb}"
class_name="${2:?class name without Checkoff:: prefix}"

cat > "${underscored_plural_name}.rb" << EOF
#!/usr/bin/env ruby

# frozen_string_literal: true

module Checkoff
  module Internal
    class ${class_name}
      def initialize(_deps = {}); end
    end
  end
end
EOF

git add "${underscored_plural_name}.rb"

Version data entries

114 entries across 114 versions & 1 rubygems

Version Path
checkoff-0.113.0 lib/checkoff/internal/create-class.sh
checkoff-0.112.0 lib/checkoff/internal/create-class.sh
checkoff-0.111.0 lib/checkoff/internal/create-class.sh
checkoff-0.110.0 lib/checkoff/internal/create-class.sh
checkoff-0.109.0 lib/checkoff/internal/create-class.sh
checkoff-0.108.0 lib/checkoff/internal/create-class.sh
checkoff-0.107.0 lib/checkoff/internal/create-class.sh
checkoff-0.106.0 lib/checkoff/internal/create-class.sh
checkoff-0.105.0 lib/checkoff/internal/create-class.sh
checkoff-0.104.0 lib/checkoff/internal/create-class.sh
checkoff-0.103.0 lib/checkoff/internal/create-class.sh
checkoff-0.102.0 lib/checkoff/internal/create-class.sh
checkoff-0.101.0 lib/checkoff/internal/create-class.sh
checkoff-0.100.0 lib/checkoff/internal/create-class.sh
checkoff-0.99.0 lib/checkoff/internal/create-class.sh
checkoff-0.98.0 lib/checkoff/internal/create-class.sh
checkoff-0.97.0 lib/checkoff/internal/create-class.sh
checkoff-0.96.0 lib/checkoff/internal/create-class.sh
checkoff-0.95.0 lib/checkoff/internal/create-class.sh
checkoff-0.94.0 lib/checkoff/internal/create-class.sh