hola-pouet 0.0.5 → 0.0.6
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 +4 -4
- data/lib/hola_pouet.rb +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e05430ca95e0f4bab7d769fb041082a3fd4cb241139e96a4f26c6877a532b9be
|
4
|
+
data.tar.gz: 1c54449bce1d06476ec0e3c692de5e4f437b1fd9c3beea92d9a2ba0f952f9662
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 292f9e74ede7ef0af72c16e8cadf9184f1ae19bafda9b738c03601f5b6d6e7e0e2b943a495439b5bf6f530354648cbe5442980519ecaceda0f9444c4511b103b
|
7
|
+
data.tar.gz: 92aefe1f3faae6d5a854a7ff16322729d16342a6cc9733140113f9c9188514ddc505cb38295827c2497f3437c5a5ee0525e4b54a6f4e1ceaa79bfb0c5909c6ce
|
data/lib/hola_pouet.rb
CHANGED
@@ -3,6 +3,16 @@
|
|
3
3
|
# A second line of description
|
4
4
|
class HolaPouet
|
5
5
|
|
6
|
+
# some comment on attr_accessor
|
7
|
+
attr_accessor :hey
|
8
|
+
# another comment on another attr_accessor
|
9
|
+
attr_accessor :hoh
|
10
|
+
|
11
|
+
# some `text and stuff` in this comment
|
12
|
+
def initialize
|
13
|
+
@hey = 'hey'
|
14
|
+
end
|
15
|
+
|
6
16
|
# The basic method. Testing +this tagging+.
|
7
17
|
def self.hi
|
8
18
|
puts 'Hello world from Hola (version 4+)'
|