hola_ctmayn 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +8 -0
- data/bin/hola +4 -0
- data/lib/hola/translator.rb +16 -0
- data/lib/hola.rb +8 -0
- data/test/test_hola.rb +16 -0
- metadata +47 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 76919784d75ee3cd2b36c97596b134fb7129b94a8761e9e1e4f89870d85a7453
|
4
|
+
data.tar.gz: a0cfbfae743f9773f8f0fbe728ae4abe46c508b5bbfe4029583e309ca09186b9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a648c43670fc385b843f4c1887cfad46d8087e3be98c9f78e1a49bc3e6a0fc02b4edc3e0ae5d88049f855ffe412f3cdfe6d74fc40c33da0a8f8a047331bf5fe6
|
7
|
+
data.tar.gz: e344450056bcbd9f8e825be9d50cb670cb84d90d728a9e4aab7af9029d41b12539c335d069473f76fb9eb5db965620c917c7ce0085aa658887ca6f5c6c7e57a8
|
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: hola_ctmayn
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chris Maynard
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-03-23 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A simple hello world gem
|
14
|
+
email: ctmayn@github.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/ctmaynhola
|
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.0.3
|
43
|
+
signing_key:
|
44
|
+
specification_version: 3
|
45
|
+
summary: Hola!
|
46
|
+
test_files:
|
47
|
+
- test/test_hola.rb
|