hola-pouet 0.0.4 → 0.0.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 +4 -4
- data/lib/hola_pouet.rb +14 -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: effc14568fc9a81b7eb16ae5ad086fe8f4cf2bd2855590d8d91f6f278c124d42
|
4
|
+
data.tar.gz: 9328377a14b0198a91d49912efd9cbc74543113f9b01dc0f34555e4b71567948
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46121aaec3224d60c082a99ad7b2f375d13db276fc47d2d411efc0bf6b2696cbc3face6cbc278e655eaa9364934baff46187a4310eac836303ca3279d286dc95
|
7
|
+
data.tar.gz: 56f1318ef5b99921f89d6a5c4d4daf969974d96cb00760496542dd50a07ff4f3a0494bd3211de70c6a89584a840ae6a4228ad87933a02ceeb319d46f0cf208cc
|
data/lib/hola_pouet.rb
CHANGED
@@ -1,5 +1,19 @@
|
|
1
|
+
# Class description goes here
|
2
|
+
#
|
3
|
+
# A second line of description
|
1
4
|
class HolaPouet
|
5
|
+
|
6
|
+
# The basic method. Testing +this tagging+.
|
2
7
|
def self.hi
|
3
8
|
puts 'Hello world from Hola (version 4+)'
|
4
9
|
end
|
10
|
+
|
11
|
+
# @param [String] some_parameter blablabla
|
12
|
+
# @param [String] some_parameter: blablabla
|
13
|
+
# @param opts [Integer] example: a number
|
14
|
+
# @param opts [Date] some_date: a date
|
15
|
+
def self.hi_advanced(some_parameter, **opts)
|
16
|
+
puts 'Hello world from Hola (version 4+). Paramters is ' + some_parameter +
|
17
|
+
' with options ' + opts.to_s
|
18
|
+
end
|
5
19
|
end
|