zairyo 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 925d3a08828d5c136b03a1a65f74672f17ebe463adbd18068ff3dbd619e7f9cd
4
+ data.tar.gz: 39270b66dd0cf2f5ad0f42d4bacd97f7aa28304e3a6da193ae1b31da5f7d5725
5
+ SHA512:
6
+ metadata.gz: c2eb4654b815b8bb7255fbd62b9048fe525dadd40c567a7948f22c2a9e9532bdc5f1857e04111efdbfba61d74ad0f3271bced2f66f5b17e735caff84ad1713cd
7
+ data.tar.gz: 68945436437d7851d450e8ffda7ea01e78b4f742245aaf870c1515547401d0cb57006be9490877dbd67f7c98dbb32b077461bff54f1cc376ea5e3b2aef5c4816
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ module Zairyo
2
+ VERSION = "0.0.1"
3
+ end
data/lib/zairyo.rb ADDED
@@ -0,0 +1,16 @@
1
+ module Zairyo
2
+ class << self
3
+ def new(m_id, m_name)
4
+ @material_id = m_id
5
+ @material_name = m_name
6
+
7
+ puts "\nMaterial Identification:\t#{@material_id}"
8
+ puts "\nMaterial Name:\t#{@material_name}"
9
+ end
10
+ end
11
+ end
12
+
13
+
14
+ require_relative "zairyo/material_graph"
15
+ require_relative "zairyo/material_tree"
16
+ require_relative "zairyo/version"
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zairyo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - M1TE5H
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-10-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ Zairyo (材料 | zairyō) provides Natural Language Processing functionality
15
+ for Materials Modelling, Simulation and Informatics.
16
+ email: M1TE5H@hotmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - lib/zairyo.rb
22
+ - lib/zairyo/material_graph.rb
23
+ - lib/zairyo/material_tree.rb
24
+ - lib/zairyo/zairyo_version.rb
25
+ homepage: https://github.com/M1TE5H/zairyo.git
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.0.3
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Zairyo (材料) Ruby Gem for Materials Informatics
48
+ test_files: []