puppet-module-win-system-r 0.0.0
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.
Potentially problematic release.
This version of puppet-module-win-system-r might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/Rakefile +8 -0
- data/bin/hola +4 -0
- data/lib/hola/translator.rb +16 -0
- data/lib/hola.rb +5 -0
- data/test/test_hola.rb +16 -0
- metadata +47 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cc4be49f92fa2250203ff4721c9afb43cc2d33b56c24ce86b705f032677e6ff4
|
4
|
+
data.tar.gz: f99d516e5c63c306497f745d0a8fc7f3d9b79cca2ec1e3c53044a66784844ad5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cc2e784c62ed3d6858632795ffa389275ea1e42f4370d7146616d9e2a65b731581b4b484f5aeb9aea1d968023f06e4eca8d9564a643873cbf38914cbe71dd50a
|
7
|
+
data.tar.gz: a3308ccb4fc0f595e565ae3005657dc6b7596ae5210136401887cc61711229db8998768f3783f38d9e02b7ea2c58102c4b3c063091ca7677ce099c089dfbd9d8
|
data/Rakefile
ADDED
data/bin/hola
ADDED
data/lib/hola.rb
ADDED
data/test/test_hola.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'hola'
|
3
|
+
|
4
|
+
class HolaTest < Test::Unit::TestCase
|
5
|
+
def test_english_hello
|
6
|
+
assert_equal "hello world", Hola.hi("english")
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_any_hello
|
10
|
+
assert_equal "hello world", Hola.hi("ruby")
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_spanish_hello
|
14
|
+
assert_equal "hola mundo", Hola.hi("spanish")
|
15
|
+
end
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: puppet-module-win-system-r
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "@gopal_ethical"
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-07-11 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: poc by @gopal_ethical
|
14
|
+
email: poc@email.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- Rakefile
|
20
|
+
- bin/hola
|
21
|
+
- lib/hola.rb
|
22
|
+
- lib/hola/translator.rb
|
23
|
+
- test/test_hola.rb
|
24
|
+
homepage: http://rubygems.org/gems/puppet-module-win-system-r
|
25
|
+
licenses: []
|
26
|
+
metadata: {}
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options: []
|
29
|
+
require_paths:
|
30
|
+
- lib
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
requirements: []
|
42
|
+
rubygems_version: 3.3.15
|
43
|
+
signing_key:
|
44
|
+
specification_version: 3
|
45
|
+
summary: Hola!
|
46
|
+
test_files:
|
47
|
+
- test/test_hola.rb
|