Sha256: 4cc8022bfad46d43b952c3698a9414290b66bd79bb45f1cca523f637d3e580d7
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
#!/usr/bin/env ruby # $LOAD_PATH << "./lib" require 'runeblog' require 'rubytext' require 'repl' include RuneBlog::REPL def get_started puts puts fx(<<-TEXT, :bold) Blog successfully created. You can create views with the command: new view Create a post within the current view: new post You can't publish until you set up the publish file via the config command. TEXT end def mainloop print fx("blog> ", Red, :bold) cmd = STDSCR.gets(history: @cmdhist, tab: @tabcom) cmd_quit(nil) if cmd.nil? # ^D cmd.chomp! return if cmd.empty? # CR does nothing meth, params = RuneBlog::REPL.choose_method(cmd) ret, str = send(meth, params) rescue => err puts err end ### major, minor = RUBY_VERSION.split(".").values_at(0,1) ver = major.to_i*10 + minor.to_i abort "Need Ruby 2.4 or greater" unless ver >= 24 include RuneBlog::Helpers # for try_read_config # read a .rubytext file here?? Call it something else? home = ENV['HOME'] @fg, @bg = try_read_config("#{home}/.rubytext", fg: Blue, bg: White) @fg = @fg.downcase.to_sym @bg = @bg.downcase.to_sym RubyText.start(:_echo, :keypad, scroll: true, log: "binblog.txt", fg: @fg, bg: @bg) if ! RuneBlog.exist? print fx("\n No blog found. Create new one? (y/n) ", :bold) resp = gets.chomp if resp.downcase == "y" RuneBlog.create_new_blog get_started else exit end end @blog = RuneBlog.new puts fx("\n RuneBlog", :bold), fx(" v #{RuneBlog::VERSION}\n", Red) @cmdhist = [] @tabcom = RuneBlog::REPL::Patterns.keys @tabcom.map! {|x| x.sub(/ \$.*/, " ") } loop { mainloop } # sleep 0.2 # system("tput clear") puts
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
runeblog-0.1.52 | bin/blog |