Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
rvg /
[ HOME SHELL ]
Name
Size
Permission
Action
clippath.rb
1.44
KB
-rw-r--r--
container.rb
3.91
KB
-rw-r--r--
deep_equal.rb
1.63
KB
-rw-r--r--
describable.rb
1.15
KB
-rw-r--r--
embellishable.rb
13.49
KB
-rw-r--r--
misc.rb
20.78
KB
-rw-r--r--
paint.rb
1.78
KB
-rw-r--r--
pathdata.rb
4.45
KB
-rw-r--r--
rvg.rb
10.72
KB
-rw-r--r--
stretchable.rb
5.01
KB
-rw-r--r--
stylable.rb
4.08
KB
-rw-r--r--
text.rb
4.56
KB
-rw-r--r--
to_c.rb
2.51
KB
-rw-r--r--
transformable.rb
4.28
KB
-rw-r--r--
units.rb
1.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : describable.rb
#-- # $Id: describable.rb,v 1.5 2009/02/28 23:52:13 rmagick Exp $ # Copyright (C) 2009 Timothy P. Hunter #++ module Magick class RVG #-- # Corresponds to SVG's Description.class #++ # This module defines a number of metadata attributes. module Describable private def initialize(*args, &block) super @title, @desc, @metadata = nil end public # Sets the object description attr_writer :desc # Sets the object title attr_writer :title # Sets the object metadata attr_writer :metadata # Returns the title of this object. The RVG object title is stored as # the 'title' property on the image def title @title.to_s end # Returns the description of this object. The RVG object description is # stored as the 'desc' property on the image def desc @desc.to_s end # Returns additional metadata of this object. The RVG object metadata # are stored as the 'metadata' property on the image def metadata @metadata.to_s end end # module Describable end # class RVG end # module Magick
Close