Sha256: 64729730f75347cdbe099ce74c9959a1a8c2735cca1d1c8be6f7ed43da2a0a7a
Contents?: true
Size: 1.88 KB
Versions: 7
Compression:
Stored size: 1.88 KB
Contents
# The MIT License (MIT) # # Copyright (c) 2016 ITO SOFT DESIGN Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. require 'thor' require 'fileutils' include FileUtils module LadderDrive class CLI < Thor desc "create", "Create a new project" def create(name) if File.exist? name puts "ERROR: #{name} already exists." exit -1 end # copy from template file root_dir = File.expand_path(File.join(File.dirname(__FILE__), "..", "..")) template_path = File.join(root_dir, "template", "ladder_drive") cp_r template_path, name # copy plc directory temlate_plc_path = File.join(root_dir, "lib", "plc") cp_r temlate_plc_path, name # remove unnecessary file from plc directory %w(plc.rb emulator).each do |fn| rm_r File.join(name, "plc", fn) end puts "#{name} was successfully created." end end end
Version data entries
7 entries across 7 versions & 1 rubygems