Class: Pull
Instance Method Summary collapse
Methods inherited from Array
Instance Method Details
#update ⇒ Object
4 5 6 7 8 |
# File 'lib/pull.rb', line 4 def update if(File.exists?('.git') && `git config --list`.include?('user.name=')) self << 'git pull' if Git.branch != 'develop' end end |