class Raketeer::NokogiriOtherTask

@author Jonathan Bradley Whited @since 0.1.0

Public Class Methods

new(name=:nokogiri_other,&block) click to toggle source
Calls superclass method Raketeer::NokogiriInstallTask::new
# File lib/raketeer/nokogiri_install_tasks.rb, line 94
def initialize(name=:nokogiri_other,&block)
  super(name)

  @description = 'Install Nokogiri libs for other OSes'

  define(&block)
end

Public Instance Methods

run(task,args) click to toggle source
# File lib/raketeer/nokogiri_install_tasks.rb, line 102
def run(task,args)
  puts 'Please go to this link for installing Nokogiri on your system:'
  puts '  https://nokogiri.org/tutorials/installing_nokogiri.html'
end