yarh 0.1.0 → 0.1.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/exe/yarh +8 -0
  3. data/lib/yarh/version.rb +5 -3
  4. data/lib/yarh.rb +8 -0
  5. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: adbe4540346c06db056af9629b414f29c452e4bf0bb2abf1ac7719aa7ea25e86
4
- data.tar.gz: bcab065e47a990d46159b2dbca06a15a3598178f4a9b89a33b4a96c459006c4b
3
+ metadata.gz: 03207b39739707471d6e51b4e4847828fcfa620f5c38324501cf4d7c9fedf375
4
+ data.tar.gz: 3847b24c4ee1079120922dce424fb92c4c78b0b935f6a28b5ede2ff57da30dd6
5
5
  SHA512:
6
- metadata.gz: d691ca36cda2ab44d7f858bd36dfc8c76757860bf0d92b8ef23fb919efe55426c0b0aee4678a64cead4c84e8625c21e6d0562558e5f76cab855fd22ca79bb1c9
7
- data.tar.gz: f451a83c5c245e2206fb3356f73b4abc0ec85c6c06ac5ab9dad23b34331ad0af604fb2605b3bb92a9e628c4b543309d2fa295a878f2f87bc773c19b25949452c
6
+ metadata.gz: ff23bb92c5328df2285c671dfaae2a0ce6f2ec90dd653f689cd49a5dbe344e0458aa1d674444902a5a1824ee023b12c4dac08b0fc667d3f857bcaf37b13baf6c
7
+ data.tar.gz: b7618087236e750b222627064a0b73c3d690c0ce52f41e9040fe696eb835a35510b8b78b70bce976f32cf687467ad8321ba423c4fd29af2bfc3b373b7500c64e
data/exe/yarh ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require_relative '../lib/yarh'
5
+
6
+ test_result = Yarh.hello
7
+
8
+ puts test_result
data/lib/yarh/version.rb CHANGED
@@ -1,3 +1,5 @@
1
- class Yarh
2
- VERSION = '0.1.0'
3
- end
1
+ # frozen_string_literal: true
2
+
3
+ module Yarh
4
+ VERSION = '0.1.1'
5
+ end
data/lib/yarh.rb CHANGED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ # main module
4
+ module Yarh
5
+ def self.hello
6
+ 'hello'
7
+ end
8
+ end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yarh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirill Leonov
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2024-05-05 00:00:00.000000000 Z
12
12
  dependencies:
@@ -30,6 +30,7 @@ executables: []
30
30
  extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
+ - exe/yarh
33
34
  - lib/yarh.rb
34
35
  - lib/yarh/version.rb
35
36
  homepage: https://github.com/leonovk/yarh