Sha256: 9b7d978cf03ad6ff15edce76e4cfcb50b25e65f3cab037613dbaf6f88358ea8b
Contents?: true
Size: 822 Bytes
Versions: 1
Compression:
Stored size: 822 Bytes
Contents
require 'colorize' require 'tmpdir' require 'fileutils' require 'dryrun/github' require 'dryrun/android_project' module DryRun class MainApp def self.is_ANDROID_HOME_defined return true end def self.initialize(url) if !is_ANDROID_HOME_defined # TODO missing warning end github = Github.new(url) if !github.is_valid puts "#{url.red} is not a valid github url" exit 1 end # clone the repository clonable = github.clonable_url repository = github.clone Dir.chdir repository project = AndroidProject.new(repository) # is a valid android project? if !project.is_valid puts "#{url.red} is not a valid android project" exit 1 end project.clean_install end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dryrun-0.2.2 | lib/dryrun.rb |