Browse Source

Structure

master
Ben Kurtovic 8 years ago
parent
commit
80449a0c49
6 changed files with 24 additions and 0 deletions
  1. +4
    -0
      .gitignore
  2. +1
    -0
      desk/README
  3. +0
    -0
     
  4. +10
    -0
      kgrader.rb
  5. +1
    -0
      lib/kgrader.rb
  6. +8
    -0
      lib/kgrader/cli.rb

+ 4
- 0
.gitignore View File

@@ -0,0 +1,4 @@
desk/*
!desk/README
jail/*
!jail/.gitkeep

+ 1
- 0
desk/README View File

@@ -0,0 +1 @@
This directory contains student repositories downloaded by kgrader.

+ 0
- 0
View File


+ 10
- 0
kgrader.rb View File

@@ -0,0 +1,10 @@
#! /usr/bin/env ruby

require_relative 'lib/kgrader'

def main
cli = KGrader::CLI.new
cli.test
end

main

+ 1
- 0
lib/kgrader.rb View File

@@ -0,0 +1 @@
require_relative 'kgrader/cli'

+ 8
- 0
lib/kgrader/cli.rb View File

@@ -0,0 +1,8 @@
module KGrader
class CLI

def test
puts 'Hello, world!'
end
end
end

Loading…
Cancel
Save