xvert 0.0.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 722489af08003a7a2fbda597bdf2f1ef6101d0f1bc3d280411c2a0b37aafe350
4
- data.tar.gz: 57cd9dfd75749e0bedbde909126cf7ec494082642b96416a2faad8b2c62be4de
3
+ metadata.gz: 22c66a17041bf86582f88ba2a6fdb228b3dad93b24ee23fa5e39db536eb188cd
4
+ data.tar.gz: 774fa9e7f03d287dbc62044ad7b467b799073662a2224b50b91211e59aecc353
5
5
  SHA512:
6
- metadata.gz: 18e42002be84cefe787e7dd79425b1564d6f0cf9e4ff2c1c326a6e5a146c937d856805bc5b9778873b7f6a3234ff75efcf68389f0fd78a8cbe40c754d602bea8
7
- data.tar.gz: cb57bb10fedc28ae58eef90c2cb48112647c8f1911ea472b5596e20c0b3e48b22f72530546c301446cac3e1fb708c84c1dbcb587d193d173562b3160789cdc5c
6
+ metadata.gz: ee38ee94c529812b8c4c60ef1dbcffb3ae9a16bf53802382801a67a05f91787832a74817fbdc556861e4b7007048109c2651ab5fb5e15a919c0ea4a123b6a23f
7
+ data.tar.gz: 1a7686a68c6cd30e457d4d26306711bd208eb81e55b9bde2928c160c5f5a7f2f773c995dfee621b5ef57522254c296b0abda22ab69633b26a5208ab49f42e1f6
data/.rubocop.yml CHANGED
@@ -9,5 +9,8 @@ Style/StringLiteralsInInterpolation:
9
9
  Enabled: true
10
10
  EnforcedStyle: double_quotes
11
11
 
12
+ Style/Documentation:
13
+ Enabled: false
14
+
12
15
  Layout/LineLength:
13
16
  Max: 120
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xvert (0.0.1)
4
+ xvert (0.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -33,6 +33,7 @@ GEM
33
33
 
34
34
  PLATFORMS
35
35
  arm64-darwin-21
36
+ x86_64-linux
36
37
 
37
38
  DEPENDENCIES
38
39
  minitest (~> 5.0)
data/exe/xvert ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # frozen_string_literal: true
4
+
5
+ require "xvert"
6
+
7
+ Xvert.hello
data/lib/xvert/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Xvert
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
data/lib/xvert.rb CHANGED
@@ -3,6 +3,9 @@
3
3
  require_relative "xvert/version"
4
4
 
5
5
  module Xvert
6
- class Error < StandardError; end
7
- # Your code goes here...
6
+ class << self
7
+ def hello
8
+ puts "Hello World"
9
+ end
10
+ end
8
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - koki-develop
@@ -13,7 +13,8 @@ dependencies: []
13
13
  description: Convert between CSV, JSON, YAML, and various other formats.
14
14
  email:
15
15
  - kou.pg.0131@gmail.com
16
- executables: []
16
+ executables:
17
+ - xvert
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
@@ -24,6 +25,7 @@ files:
24
25
  - LICENSE.txt
25
26
  - README.md
26
27
  - Rakefile
28
+ - exe/xvert
27
29
  - lib/xvert.rb
28
30
  - lib/xvert/version.rb
29
31
  - sig/xvert.rbs