Sha256: acaa5c9cc740aa61bf54a3878ffdeeba09dfe983c72c6dc789e384e8f714deb9
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
module VimGolfFinder class Challenge attr_accessor :id, :title, :entries attr_accessor :description attr_accessor :start_file, :end_file, :view_diff def print(index = 1) if self.solved? VimGolfFinder.ui.log "#{index}. \e[37m#{self.title}\e[0m - #{self.entries} entries (\e[33m#{self.id}\e[0m) \e[32m[\u2713]\e[0m" else VimGolfFinder.ui.log "#{index}. \e[37m#{self.title}\e[0m - #{self.entries} entries (\e[33m#{self.id}\e[0m)" end end def print_detail VimGolfFinder.ui.say "#{self.title}", :white self.description.scan(/.{1,70}/).each do |string| VimGolfFinder.ui.log "#{string}\n" end VimGolfFinder.ui.log '-' * 50 VimGolfFinder.ui.info 'Start File' VimGolfFinder.ui.log "#{self.start_file}" VimGolfFinder.ui.log '-' * 50 VimGolfFinder.ui.info 'End File' VimGolfFinder.ui.log "#{self.end_file}" VimGolfFinder.ui.log '-' * 50 end def solved? path = "#{Dir.home}/.vimgolf_solves" unless File.exist?(path) file = File.new(path, File::CREAT|File::TRUNC|File::RDWR, 0644) else file = File.new(path) end file.readlines.each do |line| if line.strip.eql?(self.id) return true end end return false end def self.solve(id) path = "#{Dir.home}/.vimgolf_solves" unless File.exist?(path) File.new(path, File::CREAT|File::TRUNC|File::RDWR, 0644) end File.open(path, 'a') { |file| file.write("#{id}\n") } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vimgolf-finder-0.1.7 | lib/vimgolf_finder/challenge.rb |