class Pull

Public Instance Methods

update() click to toggle source
# File lib/pull.rb, line 5
def update
        if(Internet.available?)
                if(File.exists?('.git') && `git config --list`.include?('user.name='))
                        self <<  'git pull' if Git.branch != 'develop'
                end
        end
end