puppet-module-win-system-r 0.0.0 → 1.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 +4 -4
- data/bin/puppet-module-win-system-r +4 -0
- data/lib/{hola.rb → puppet-module-win-system-r.rb} +2 -2
- metadata +11 -14
- data/Rakefile +0 -8
- data/bin/hola +0 -4
- data/lib/hola/translator.rb +0 -16
- data/test/test_hola.rb +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c3a9cca92fdb14c8e186c14f3b6832d926da17fcefda3d5c16a2ecc34ccbfca
|
4
|
+
data.tar.gz: fc4a6cfd2723c9263917e36af88aa9ffb95bec2659265265f7d3ba5e8b188775
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a046c567c829ec0d483a78965b2b42e16b21a50764aa6bce37c173add705de23c5245372b095a26a82f39d12ac123e6677f8a15c3ab7ada664a8a7675ddc7d3
|
7
|
+
data.tar.gz: 77ec9cbf587c8b2d1dfa7f9c887ae8c5149d1dacd337a98508bfd6444c69580cabb27c82135b9c3e8bb1806b6e54991c14aab3741533132c5bf07ee74b9a0872
|
metadata
CHANGED
@@ -1,27 +1,25 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-module-win-system-r
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: '1.0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "@gopal_ethical"
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: poc by @gopal_ethical
|
14
|
-
email:
|
15
|
-
executables:
|
14
|
+
email: ftest.first@gmail.com
|
15
|
+
executables:
|
16
|
+
- puppet-module-win-system-r
|
16
17
|
extensions: []
|
17
18
|
extra_rdoc_files: []
|
18
19
|
files:
|
19
|
-
-
|
20
|
-
-
|
21
|
-
|
22
|
-
- lib/hola/translator.rb
|
23
|
-
- test/test_hola.rb
|
24
|
-
homepage: http://rubygems.org/gems/puppet-module-win-system-r
|
20
|
+
- bin/puppet-module-win-system-r
|
21
|
+
- lib/puppet-module-win-system-r.rb
|
22
|
+
homepage:
|
25
23
|
licenses: []
|
26
24
|
metadata: {}
|
27
25
|
post_install_message:
|
@@ -41,7 +39,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
41
39
|
requirements: []
|
42
40
|
rubygems_version: 3.3.15
|
43
41
|
signing_key:
|
44
|
-
specification_version:
|
45
|
-
summary:
|
46
|
-
test_files:
|
47
|
-
- test/test_hola.rb
|
42
|
+
specification_version: 4
|
43
|
+
summary: poc by @gopal_ethical
|
44
|
+
test_files: []
|
data/Rakefile
DELETED
data/bin/hola
DELETED
data/lib/hola/translator.rb
DELETED
data/test/test_hola.rb
DELETED
@@ -1,16 +0,0 @@
|
|
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
|