module Dicker
Constants
- VERSION
Public Class Methods
build(project, source)
click to toggle source
# File lib/dicker.rb, line 3 def self.build(project, source) puts "--> Building framework environment" build = Build.new(project, source) build.build puts "--> Build complete." end
server()
click to toggle source
# File lib/dicker.rb, line 10 def self.server commands = Commands.new commands.server end