This website works better with JavaScript.
Home
Help
Sign In
ben
/
kgrader
mirror of
https://github.com/earwig/kgrader
Watch
1
Star
1
Fork
0
Code
Releases
0
Activity
Browse Source
Structure
master
Ben Kurtovic
8 years ago
parent
71f013079c
commit
80449a0c49
6 changed files
with
24 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
.gitignore
+1
-0
desk/README
+0
-0
+10
-0
kgrader.rb
+1
-0
lib/kgrader.rb
+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
Write
Preview
Loading…
Cancel
Save