Skip to content

Instantly share code, notes, and snippets.

View clockworkpc's full-sized avatar

Alexander Garber clockworkpc

View GitHub Profile
@clockworkpc
clockworkpc / ruby_project_skeleton_generator.rb
Last active December 26, 2016 09:19
Ruby Project Skeleton Generator
## Basic Ruby Project Skeleton Generator
class Project
def initialize()
puts "What do you want to call this project?\n"
print "> "
$user_input = $stdin.gets.chomp
end