hola_soxface 0.0.1 → 0.0.2

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/test/test_hola_soxface.rb +19 -0
  3. metadata +8 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f9e4ff8508f06dcea4c70f6e0ec4b1bda03c61c29fe017166a510fc7e199072
4
- data.tar.gz: 6e7b01cbcc09c9f956ea72bcb5c2dba96e0a738aefd80051354db3c20a8004d6
3
+ metadata.gz: e3dc6a38f32b1861e3c95aa7c56eeac37d9d48e17c8729a0f11521203e95e1b7
4
+ data.tar.gz: b798b96d01b8b52d990b603fcf94992c205ca087b47a49d3add88d5f3908762a
5
5
  SHA512:
6
- metadata.gz: b822483d330a5920382d2425f7fece5a5e749cdb3d208e918ed2166248d96db0ce11622472af684a6ac4e429120a311f58f7e9f68ac8efc9bce82c9c4286ce6f
7
- data.tar.gz: 64b95b11bd7a53c22edbfde5b824ba61c04026a46dedc0d7c957395a0b56aa7821259957ffe8bbcc0baefdbb71ba2b18a3888abfdf0c8f0714a19f6782c7ca21
6
+ metadata.gz: 53ddb81bf9c6c3ce86293979d09ffc674fdb0554000698119148006bc1ac03430b22a519636fd6afafb2388d0e069928b41a30cba0adcb5cba42deeb4aac2a1d
7
+ data.tar.gz: 0b7af1876595ade52c304f03d2b9326fcbfeeaa96ab36c8d238518ef83361f39600ad3e27ede848f4084337b8690c55053cdd3ca789875d76f61ab748f2f4a86
@@ -0,0 +1,19 @@
1
+ require "minitest/autorun"
2
+ require "hola_soxface"
3
+
4
+ class HolaTest < Minitest::Test
5
+ def test_engllish_hello
6
+ assert_equal "Hello world!",
7
+ Hola.hi("english")
8
+ end
9
+
10
+ def test_any_hello
11
+ assert_equal "Hello world!",
12
+ Hola.hi("ruby")
13
+ end
14
+
15
+ def test_spanish_hello
16
+ assert_equal "Hola mundo!",
17
+ Hola.hi("spanish")
18
+ end
19
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hola_soxface
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Quaranto, Sonya Corcoran
@@ -20,12 +20,18 @@ files:
20
20
  - bin/hola_soxface
21
21
  - lib/hola_soxface.rb
22
22
  - lib/hola_soxface/translator.rb
23
+ - test/test_hola_soxface.rb
23
24
  homepage: https://rubygems.org/gems/hola_soxface
24
25
  licenses:
25
26
  - MIT
26
27
  metadata: {}
27
28
  post_install_message:
28
- rdoc_options: []
29
+ rdoc_options:
30
+ - "--title"
31
+ - Hola -- A Clone
32
+ - "--main"
33
+ - README
34
+ - "--line-numbers"
29
35
  require_paths:
30
36
  - lib
31
37
  required_ruby_version: !ruby/object:Gem::Requirement