Sha256: 284ae5f3fedf52e03e4c958236768901a1e81f640510b47b16f23da48329017f
Contents?: true
Size: 544 Bytes
Versions: 2
Compression:
Stored size: 544 Bytes
Contents
require 'orly/installation' require 'orly/tester' require 'orly/owl_printer' require 'orly/version' require "choice" require "colored" module Orly def self.run tester = Orly::Tester.new() notify = [] notify << "run 'bundle install'".red if tester.need_bundle_install? notify << "run 'rake db:migrate'".red if tester.need_migrate? notify << "run 'pod install'".blue if tester.need_pod? Orly::OwlPrinter.print(notify) unless notify.empty? rescue Orly::NoRepo puts "O RLY: this is not a git repo".red end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
orly-0.0.8 | lib/orly.rb |
orly-0.0.7 | lib/orly.rb |