X7ROOT File Manager
Current Path:
/opt/alt/ruby18/lib64/ruby/1.8
opt
/
alt
/
ruby18
/
lib64
/
ruby
/
1.8
/
ðŸ“
..
📄
English.rb
(5.6 KB)
📄
Env.rb
(274 B)
📄
abbrev.rb
(2.5 KB)
📄
base64.rb
(3.37 KB)
📄
benchmark.rb
(17.73 KB)
ðŸ“
bigdecimal
ðŸ“
cgi
📄
cgi-lib.rb
(6.89 KB)
📄
cgi.rb
(73.74 KB)
📄
complex.rb
(12.84 KB)
📄
csv.rb
(24.46 KB)
ðŸ“
date
📄
date.rb
(53.02 KB)
📄
date2.rb
(128 B)
📄
debug.rb
(20.61 KB)
📄
delegate.rb
(8.81 KB)
ðŸ“
digest
📄
digest.rb
(1.12 KB)
ðŸ“
dl
ðŸ“
drb
📄
drb.rb
(19 B)
📄
e2mmap.rb
(4.04 KB)
📄
erb.rb
(21.38 KB)
📄
eregex.rb
(487 B)
📄
expect.rb
(633 B)
📄
fileutils.rb
(42.23 KB)
📄
finalize.rb
(5.38 KB)
📄
find.rb
(1.84 KB)
📄
forwardable.rb
(6.16 KB)
📄
ftools.rb
(6.17 KB)
📄
generator.rb
(8.1 KB)
📄
getoptlong.rb
(14.88 KB)
📄
getopts.rb
(2.25 KB)
📄
gserver.rb
(6.43 KB)
📄
importenv.rb
(590 B)
ðŸ“
io
📄
ipaddr.rb
(21.96 KB)
ðŸ“
irb
📄
irb.rb
(7.43 KB)
📄
jcode.rb
(4.3 KB)
📄
kconv.rb
(8.12 KB)
📄
logger.rb
(17.59 KB)
📄
mailread.rb
(1.28 KB)
📄
mathn.rb
(5.42 KB)
📄
matrix.rb
(27.21 KB)
📄
md5.rb
(411 B)
📄
mkmf.rb
(50.65 KB)
📄
monitor.rb
(7.93 KB)
📄
mutex_m.rb
(2.07 KB)
ðŸ“
net
📄
observer.rb
(5.15 KB)
📄
open-uri.rb
(20.49 KB)
📄
open3.rb
(2.1 KB)
ðŸ“
openssl
📄
openssl.rb
(575 B)
ðŸ“
optparse
📄
optparse.rb
(47.12 KB)
📄
ostruct.rb
(3.35 KB)
📄
parsearg.rb
(1.55 KB)
📄
parsedate.rb
(1.33 KB)
📄
pathname.rb
(29.39 KB)
📄
ping.rb
(1.48 KB)
📄
pp.rb
(15.97 KB)
📄
prettyprint.rb
(18.33 KB)
📄
profile.rb
(90 B)
📄
profiler.rb
(1.59 KB)
📄
pstore.rb
(11.15 KB)
ðŸ“
racc
📄
rational.rb
(12.05 KB)
ðŸ“
rdoc
📄
readbytes.rb
(835 B)
📄
resolv-replace.rb
(1.55 KB)
📄
resolv.rb
(56.83 KB)
ðŸ“
rexml
ðŸ“
rinda
ðŸ“
rss
📄
rss.rb
(504 B)
📄
rubyunit.rb
(180 B)
ðŸ“
runit
📄
scanf.rb
(20.63 KB)
📄
securerandom.rb
(4.27 KB)
📄
set.rb
(27.08 KB)
📄
sha1.rb
(418 B)
ðŸ“
shell
📄
shell.rb
(4.66 KB)
📄
shellwords.rb
(3.99 KB)
📄
singleton.rb
(8.08 KB)
ðŸ“
soap
📄
sync.rb
(6.09 KB)
📄
tempfile.rb
(4.86 KB)
ðŸ“
test
📄
thread.rb
(104 B)
📄
thwait.rb
(4.32 KB)
📄
time.rb
(31.58 KB)
📄
timeout.rb
(3 KB)
📄
tmpdir.rb
(3.69 KB)
📄
tracer.rb
(2.73 KB)
📄
tsort.rb
(7.99 KB)
📄
un.rb
(4.54 KB)
ðŸ“
uri
📄
uri.rb
(710 B)
📄
weakref.rb
(2.68 KB)
ðŸ“
webrick
📄
webrick.rb
(811 B)
ðŸ“
wsdl
ðŸ“
x86_64-linux
ðŸ“
xmlrpc
ðŸ“
xsd
ðŸ“
yaml
📄
yaml.rb
(12.36 KB)
Editing: ostruct.rb
# # = ostruct.rb: OpenStruct implementation # # Author:: Yukihiro Matsumoto # Documentation:: Gavin Sinclair # # OpenStruct allows the creation of data objects with arbitrary attributes. # See OpenStruct for an example. # # # OpenStruct allows you to create data objects and set arbitrary attributes. # For example: # # require 'ostruct' # # record = OpenStruct.new # record.name = "John Smith" # record.age = 70 # record.pension = 300 # # puts record.name # -> "John Smith" # puts record.address # -> nil # # It is like a hash with a different way to access the data. In fact, it is # implemented with a hash, and you can initialize it with one. # # hash = { "country" => "Australia", :population => 20_000_000 } # data = OpenStruct.new(hash) # # p data # -> <OpenStruct country="Australia" population=20000000> # class OpenStruct # # Create a new OpenStruct object. The optional +hash+, if given, will # generate attributes and values. For example. # # require 'ostruct' # hash = { "country" => "Australia", :population => 20_000_000 } # data = OpenStruct.new(hash) # # p data # -> <OpenStruct country="Australia" population=20000000> # # By default, the resulting OpenStruct object will have no attributes. # def initialize(hash=nil) @table = {} if hash for k,v in hash @table[k.to_sym] = v new_ostruct_member(k) end end end # Duplicate an OpenStruct object members. def initialize_copy(orig) super @table = @table.dup end def marshal_dump @table end def marshal_load(x) @table = x @table.each_key{|key| new_ostruct_member(key)} end def modifiable if self.frozen? raise TypeError, "can't modify frozen #{self.class}", caller(2) end @table end protected :modifiable def new_ostruct_member(name) name = name.to_sym unless self.respond_to?(name) class << self; self; end.class_eval do define_method(name) { @table[name] } define_method("#{name}=") { |x| modifiable[name] = x } end end name end def method_missing(mid, *args) # :nodoc: mname = mid.id2name len = args.length if mname.chomp!('=') if len != 1 raise ArgumentError, "wrong number of arguments (#{len} for 1)", caller(1) end modifiable[new_ostruct_member(mname)] = args[0] elsif len == 0 @table[mid] else raise NoMethodError, "undefined method `#{mname}' for #{self}", caller(1) end end # # Remove the named field from the object. # def delete_field(name) @table.delete name.to_sym end InspectKey = :__inspect_key__ # :nodoc: # # Returns a string containing a detailed summary of the keys and values. # def inspect str = "#<#{self.class}" ids = (Thread.current[InspectKey] ||= []) if ids.include?(object_id) return str << ' ...>' end ids << object_id begin first = true for k,v in @table str << "," unless first first = false str << " #{k}=#{v.inspect}" end return str << '>' ensure ids.pop end end alias :to_s :inspect attr_reader :table # :nodoc: protected :table # # Compare this object and +other+ for equality. # def ==(other) return false unless(other.kind_of?(OpenStruct)) return @table == other.table end end
Upload File
Create Folder