Sha256: 63aa3ea9eac02785f542f2e3761a1027c128fa826990a85a239a4a64cc7c6a4c
Contents?: true
Size: 1.29 KB
Versions: 8
Compression:
Stored size: 1.29 KB
Contents
#!/usr/bin/env ruby require "bundler/setup" require "crystalruby" require 'fileutils' # Define the actions for the commands def init # Define some dummy content for the YAML file yaml_content = <<~YAML # crystalruby configuration file crystal_src_dir: "./crystalruby/src" crystal_lib_dir: "./crystalruby/lib" crystal_main_file: "main.cr" crystal_lib_name: "crlib" crystal_codegen_dir: "generated" YAML # Create the file at the root of the current directory File.write('crystalruby.yaml', yaml_content) puts 'Initialized crystalruby.yaml file with dummy content.' end def install Dir.chdir("#{CrystalRuby.config.crystal_src_dir}") do if system('shards update') puts 'Shards installed successfully.' else puts 'Error installing shards.' end end clean end def clean # This is a stub for the clear command FileUtils.rm_rf("#{CrystalRuby.config.crystal_src_dir}/generated") end def build # This is a stub for the build command puts 'Build command is not implemented yet.' end # Main program if ARGV.empty? puts "Usage: crystalruby [command]" puts "Commands: init, clear, build" exit 1 end case ARGV[0] when "init" init when "clean" clean when "install" install when "build" build else puts "Invalid command: #{ARGV[0]}" end
Version data entries
8 entries across 8 versions & 1 rubygems