dokay_test_gem 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.
- checksums.yaml +7 -0
- data/bin/dokay_test_gem +4 -0
- data/lib/dokay_test_gem.rb +18 -0
- metadata +45 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e9650c1691928407cc2ff3f9b2b6a74bfc4d00d63314b3c924d646e13864caab
|
4
|
+
data.tar.gz: dd8e08259e8939b980e5698279fd470381a15382869d48dc592ac73a04390a3d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: '09cad0dbcf721f0c3617f2e836678e739a8f526321305e7c45798c1a4fbd5f814fb5150a575b72cdffae7ff0fa86e58f182d7085f4334c4fdc727103b3b14e2e'
|
7
|
+
data.tar.gz: dbe6436889819d42da1d45db4f9aa6ed31a599155fd7b60398e8b3e6a5aa71aef8d45de4d13012834e05fa5cbbe22c976411e3cb6ef669b5504aa792e9169315
|
data/bin/dokay_test_gem
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
require "dokay_test_gem/version"
|
2
|
+
require 'dokay_test_gem/translator'
|
3
|
+
|
4
|
+
# module DokayTestGem
|
5
|
+
# class Error < StandardError; end
|
6
|
+
# # Your code goes here...
|
7
|
+
|
8
|
+
# def self.hi
|
9
|
+
# puts "Hello world!"
|
10
|
+
# end
|
11
|
+
# end
|
12
|
+
|
13
|
+
module DokayTestGem
|
14
|
+
def self.hi(language = "english")
|
15
|
+
translator = Translator.new(language)
|
16
|
+
translator.hi
|
17
|
+
end
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: dokay_test_gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- dokay
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2010-04-28 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A simple hello world gem
|
14
|
+
email: dokay.dou@gmail.com
|
15
|
+
executables:
|
16
|
+
- dokay_test_gem
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- bin/dokay_test_gem
|
21
|
+
- lib/dokay_test_gem.rb
|
22
|
+
homepage: http://rubygems.org/gems/dokay_test_gem
|
23
|
+
licenses:
|
24
|
+
- MIT
|
25
|
+
metadata: {}
|
26
|
+
post_install_message:
|
27
|
+
rdoc_options: []
|
28
|
+
require_paths:
|
29
|
+
- lib
|
30
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
requirements: []
|
41
|
+
rubygems_version: 3.0.1
|
42
|
+
signing_key:
|
43
|
+
specification_version: 4
|
44
|
+
summary: Hola!
|
45
|
+
test_files: []
|