Sha256: b555f700780a3944ee420c6fe09f37ebd5d9228d56499ab9e3012d78c6423a6d
Contents?: true
Size: 195 Bytes
Versions: 6
Compression:
Stored size: 195 Bytes
Contents
module Daigaku class Task attr_reader :markdown, :path def initialize(path) @path = Dir[File.join(path, '*.md')].first @markdown = File.read(@path).strip end end end
Version data entries
6 entries across 6 versions & 1 rubygems