Sha256: 8493cc074ee7b88ec6fe31b42b36255460d816cf56ce51858e78e274adf47a0a
Contents?: true
Size: 1.71 KB
Versions: 4
Compression:
Stored size: 1.71 KB
Contents
require 'fileutils' require 'thor' require 'ruby_learner/version.rb' require 'open3' require 'ruby_learner/common.rb' require 'ruby_learner/sequential_main' module RubyLearner # ruby_learner CLI main class class CLI < Thor def initialize(*args) super @workshop_dir = "#{ENV['HOME']}/.ruby_learner/workshop" @gem_dir = File.expand_path("../../../", __FILE__) Common.allocate.init_mk_files(gem_dir: @gem_dir, workshop_dir: @workshop_dir) end desc '-v', 'show program version' map "-v" => "version" def version puts RubyLearner::VERSION end desc 'emacs_key', 'check emacs key-bindings' def emacs_key system("cat #{@gem_dir}/lib/datas/emacs_help.org") end desc 'sequential_check [section:1~11] [part:1~]','learning drill' option :next, aliases: :n, type: :boolean option :drill, aliases: :d, type: :boolean def sequential_check(*args) sequential_main = SequentialMain.new(@gem_dir, @workshop_dir) if options[:drill] sequential_main.drill_contents elsif options[:next] final_sec, final_par = sequential_main.get_final_history(@gem_dir) next_sec, next_par = sequential_main.get_next_question(final_sec, final_par) sequential_main.action(next_sec, next_par) else sequential_main.action(args[0], args[1]) if args.empty? == false end end desc 'restore','check your restore' def restore(*args) if args.empty? == true then system("ls #{@workshop_dir}/restore") print("\n If you want to open a restore_file, you execute 'ruby_learner restore [file_name]'") else system("emacs #{@workshop_dir}/restore/#{args[0]}") end end end end
Version data entries
4 entries across 4 versions & 1 rubygems