Method: Gjp::InitCommand#execute

Defined in:
lib/gjp/commands/init.rb

#executeObject



5
6
7
8
9
10
11
12
# File 'lib/gjp/commands/init.rb', line 5

def execute
  checking_exceptions do
    Gjp::Project.init(".")
    puts "Project inited."
    puts "Add sources to src/<package name>, binary dependencies to kit/."
    puts "When you are ready to test a build, use \"gjp dry-run\"."
  end
end