anus 1.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/anus.rb +15 -0
- metadata +43 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8f1f9dd4308d018b9536764f1a957c4311355a48fd5a1f91c5aed5f5a8f26481
|
4
|
+
data.tar.gz: 911275c5733bad1401c1f852dfdc470cb1e9ec8bfa329154774709c04b4fb99d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e73e8924527453572e303ac51b3ddf19b8f2933f820dbf97b17072fd6aa3ac6c6fcdfef42e744a550d5b4968114cd7b008122438fdfbda8bfdd053bc4c21040d
|
7
|
+
data.tar.gz: 9f436e7f00fb5fba718a0d1ea8c307fd25f53a41ba345f8bfbb12c088b7859122ed009980ea1d2bbcfbcecab92cb7f5dd25b083775426036c58b9471ff17b8d9
|
data/lib/anus.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
module Anus
|
2
|
+
class Anus
|
3
|
+
def initialize
|
4
|
+
@d = 7
|
5
|
+
@a = 9
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
# create an instance of the Anus class
|
10
|
+
my_anus = Anus.new
|
11
|
+
|
12
|
+
# access the instance variables
|
13
|
+
puts my_anus.instance_variable_get(:@d) # => 7
|
14
|
+
puts my_anus.instance_variable_get(:@a) # => 9
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: anus
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.8.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- ANUSIXA66383
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-04-20 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: anus gem.
|
14
|
+
email: whonix777890@proton.me
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- lib/anus.rb
|
20
|
+
homepage: https://rubygems.org/gems/anus
|
21
|
+
licenses:
|
22
|
+
- MIT
|
23
|
+
metadata: {}
|
24
|
+
post_install_message:
|
25
|
+
rdoc_options: []
|
26
|
+
require_paths:
|
27
|
+
- lib
|
28
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
requirements: []
|
39
|
+
rubygems_version: 3.4.20
|
40
|
+
signing_key:
|
41
|
+
specification_version: 4
|
42
|
+
summary: Anus gem
|
43
|
+
test_files: []
|