hola_koala 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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/hola_koala.rb +8 -0
  3. metadata +44 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7a254c15899d4f0c4659849c5efa1ce28bb1820c
4
+ data.tar.gz: 838fd24386428e77b89766a3811b06855b41c4bf
5
+ SHA512:
6
+ metadata.gz: a53f6d2524c5f648d4fa3575f582ee165e1f0c980cfa763f40aa862c7e2c0bb401d7b43a105126f4868c334a32292535a4486f3562af5e6a9f871119031676e0
7
+ data.tar.gz: d5e004d03a994610db2c43d6b1099a4331ebc7abf52b3f27522d002f65b03af19c198a01e140f4c6d2e771cf0891d755804a2006f94dce4b187d4494c452120a
data/lib/hola_koala.rb ADDED
@@ -0,0 +1,8 @@
1
+ class Hola
2
+ def self.hi(language)
3
+ translator = Translator.new(language)
4
+ translator.hi
5
+ end
6
+ end
7
+
8
+ require 'hola/translator'
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hola_koala
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Koala Cheung
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-07-02 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple hello world gem
14
+ email: nobody@nomail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/hola_koala.rb
20
+ homepage: http://rubygems.org/gems/hola_koala
21
+ licenses:
22
+ - MIT
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubyforge_project:
40
+ rubygems_version: 2.4.5.1
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: Hola!
44
+ test_files: []