Class: XApp
- Inherits:
-
Object
- Object
- XApp
- Defined in:
- lib/xapp.rb
Constant Summary collapse
- VERSION =
'0.1.1'
Class Method Summary collapse
Class Method Details
.init_template(name) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/xapp.rb', line 5 def self.init_template(name) puts "Init empty workspace..." system("unzip", __dir__ + "/project-template.zip") system("mv", "tmp", name) puts "\t...done!\n\n\tHint: Don't forget to run:\n\t\t`pod install --repo-update`\n" end |