Sha256: 91aa846d4198d74569e91103f3dc3672dae044ca48f18ed517e82415b3c905f7
Contents?: true
Size: 1.5 KB
Versions: 2
Compression:
Stored size: 1.5 KB
Contents
module Stanwood class ProjectCreator def execute(project_name, platform) case when platform == "--ios" # system("echo Cloning Xcode Template") # system("git clone git@github.com:stanwood/Xcode_Templates_iOS.git /echo tmp/xcode_template") # # system("Running...") # system("chmod +x /tmp/xcode_template/Template/configure ", project_name) # # system("echo Finishing installation") # system("rm -rf /tmp/xcode_template") puts "\nššš We are working on this awesome feature for iOS. Stay tuned!!! ššš\n\n" exit when platform == "--backend" puts "\nššš We are working on this awesome feature for Backend. Stay tuned!!! ššš\n\n" exit when platform == "--android" puts "\nššš We are working on this awesome feature for Android. Stay tuned!!! ššš\n\n" exit end end def executeTemplates(platform) case when platform == "--ios" system("curl \"https://raw.githubusercontent.com/stanwood/Xcode_Templates_iOS/master/Script/install.sh\" | sudo bash") exit when platform == "--backend" puts "\nššš We are working on this awesome feature for Backend. Stay tuned!!! ššš\n\n" exit when platform == "--android" puts "\nššš We are working on this awesome feature for Android. Stay tuned!!! ššš\n\n" exit end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stanwood-0.2.0 | lib/stanwood/project_creator.rb |
stanwood-0.1.3 | lib/stanwood/project_creator.rb |