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.26.1 lib/checkoff/internal/create-class.sh
checkoff-0.26.0 lib/checkoff/internal/create-class.sh
checkoff-0.25.0 lib/checkoff/internal/create-class.sh
checkoff-0.24.1 lib/checkoff/internal/create-class.sh
checkoff-0.24.0 lib/checkoff/internal/create-class.sh
checkoff-0.23.0 lib/checkoff/internal/create-class.sh
checkoff-0.22.0 lib/checkoff/internal/create-class.sh
checkoff-0.21.0 lib/checkoff/internal/create-class.sh
checkoff-0.20.0 lib/checkoff/internal/create-class.sh
checkoff-0.19.2 lib/checkoff/internal/create-class.sh
checkoff-0.19.1 lib/checkoff/internal/create-class.sh
checkoff-0.19.0 lib/checkoff/internal/create-class.sh
checkoff-0.18.1 lib/checkoff/internal/create-class.sh
checkoff-0.18.0 lib/checkoff/internal/create-class.sh