Sha256: 2dc27991816e6088ae6d1ae279b8abaf8abafc034fd8364a7e48032aa044f717

Contents?: true

Size: 1.66 KB

Versions: 6

Compression:

Stored size: 1.66 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.uniq - RuneBlog::REPL::Abbr.keys
@tabcom.map! {|x| x.sub(/ [\$\>].*/, "") + " " }
@tabcom.sort!
  
loop { mainloop }

# sleep 0.2
# system("tput clear")
puts

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
runeblog-0.1.62 bin/blog
runeblog-0.1.61 bin/blog
runeblog-0.1.59 bin/blog
runeblog-0.1.58 bin/blog
runeblog-0.1.57 bin/blog
runeblog-0.1.56 bin/blog