opensea 0.0.1
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/Rakefile +8 -0
- data/bin/opensea +4 -0
- data/lib/opensea.rb +8 -0
- data/lib/opensea/translator.rb +16 -0
- data/test/test_opensea.rb +16 -0
- metadata +47 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1061a96b42650a0f6f4b2cf33278ba9b005bfdc62e43d0cb37d1cecece6bd9f8
|
4
|
+
data.tar.gz: 0af525797e27bb313b67c5b6f5a7c192b080d74386890fcd925374d2d0c10a20
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fe9191b4e7e1cd65dd639f5fef060dc763ce504a137b0492a118cff10d6a66efaebf55aee8086b3e7003381a8a99553a5ce2640bbeef6d8c57acb02a8691cb95
|
7
|
+
data.tar.gz: a16cff31d81fa66454dc41d0dd2f32ba32ba97d2ae778ad048b37d9b7e295467908508fae0184566dda691751422f6fa904e3ba868b3e68057f64e7fb161201c
|
data/Rakefile
ADDED
data/bin/opensea
ADDED
data/lib/opensea.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'opensea'
|
3
|
+
|
4
|
+
class OpenSea < Test::Unit::TestCase
|
5
|
+
def test_english_hello
|
6
|
+
assert_equal "hello world", OpenSea.hi("english")
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_any_hello
|
10
|
+
assert_equal "hello world", OpenSea.hi("ruby")
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_spanish_hello
|
14
|
+
assert_equal "opensea mundo", OpenSea.hi("spanish")
|
15
|
+
end
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: opensea
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- pskl
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-03-17 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Opensea Api Client
|
14
|
+
email: hello@pascal.cc
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- Rakefile
|
20
|
+
- bin/opensea
|
21
|
+
- lib/opensea.rb
|
22
|
+
- lib/opensea/translator.rb
|
23
|
+
- test/test_opensea.rb
|
24
|
+
homepage: http://rubygems.org/gems/opensea
|
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.1.2
|
43
|
+
signing_key:
|
44
|
+
specification_version: 3
|
45
|
+
summary: OpenSea!
|
46
|
+
test_files:
|
47
|
+
- test/test_opensea.rb
|