Class: Push
Overview
require_relative(‘internet.rb’)
Instance Method Summary collapse
Methods inherited from Array
Instance Method Details
#update ⇒ Object
825 826 827 828 829 830 |
# File 'lib/dev_commands.rb', line 825 def update if(File.exists?('.git') && `git config --list`.include?('user.name=')) add 'git config --global push.default simple' self << 'git push' if Git.branch != 'develop' && Internet.available? end end |