Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/rake_tasks/rake/task.rb
2884 views
1
module Rake
2
class Task
3
attr_accessor :deps
4
5
def out
6
if @debug
7
puts "We are reading the @out value currently!!! It is currently set to #{@out}"
8
puts self.inspect
9
end
10
@out
11
end
12
13
def out=(value)
14
if @debug
15
puts "We are WRITING the @out value currently!!! WE ARE WRITING IT TO #{value}"
16
puts self.inspect
17
end
18
@out = value
19
end
20
end
21
end
22
23