kilya 0.0.0 → 0.0.3

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 (6) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/bin/kilya +5 -0
  4. data/kilya.gemspec +19 -0
  5. data/lib/kilya.rb +12 -0
  6. metadata +9 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55cd8e42c1d5b71e43b42dc52e4d9a1b59a5bee2cefa818b732db31a9a2f5de4
4
- data.tar.gz: bb7b443e385d88f74495246a655893433db0aba1aea008be334e2282d3d5979e
3
+ metadata.gz: c2f262bc5012abd4bb597dac62b898b8b1d2b7ecb6c54349d3fb94dd27db183d
4
+ data.tar.gz: 4d366871d5ac98753bb24cb9a6cb729d65f2a52d3b86da01fdf0b109f122da3b
5
5
  SHA512:
6
- metadata.gz: 53aa4f5b56ec50fccbf24912b0376c5121fb521d1262471b9ea79dc1e2fba327b1ef34fb8d3acb62aea64ae4548879ce42206c20976a45fca6f36c04ac51321a
7
- data.tar.gz: 736b1779ea8a01f09eba306821911a7eb17334743ca293e85b2b54dbb9faa59911a265d93e5f729a761defccb243906135ccd7ac64da607a65c73e01b45793b4
6
+ metadata.gz: f80891a8b9e2b88878b4b1f0e3839eda39d095d6fbbb82e50beb5c9823f205f6f1c7df744856ef84d265ed9fea0646875c30ec2fb93f94beb91f86cbe46befc8
7
+ data.tar.gz: 50f1fb414008eb0cb03b2fa14479c15367f8598f1f1d0cee73feaa682eab9e3ee8f012a0987465ee8ddddf6bd576e05d5724d8a4149d76474929a9d949b7bd6c
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ *.gem
data/bin/kilya ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'kilya'
4
+
5
+ Kilya.say_hi
data/kilya.gemspec ADDED
@@ -0,0 +1,19 @@
1
+ require 'English'
2
+ Gem::Specification.new do |s|
3
+ s.specification_version = 2 if s.respond_to? :specification_version=
4
+ if s.respond_to? :required_rubygems_version=
5
+ s.required_rubygems_version = Gem::Requirement.new('>= 0')
6
+ end
7
+ s.rubygems_version = '2.7'
8
+ s.required_ruby_version = '>=2.2'
9
+ s.name = 'kilya'
10
+ s.version = '0.0.3'
11
+ s.executables << 'kilya'
12
+ s.license = 'MIT'
13
+ s.summary = 'Simple first Ruby gem'
14
+ s.description = 'Class Kilya for test new gem.'
15
+ s.authors = ['Ilya Kondratev']
16
+ s.email = 'ilyafulleveline@gmail.com'
17
+ s.homepage = 'https://github.com/ikondratev/kilya'
18
+ s.files = `git ls-files`.split($RS)
19
+ end
data/lib/kilya.rb ADDED
@@ -0,0 +1,12 @@
1
+ class Kilya
2
+ class << self
3
+ def hello
4
+ puts "Hello i'm kIlya"
5
+ end
6
+ end
7
+
8
+ def say(line)
9
+ words = line.nil? ? "Nothing to say" : line
10
+ puts words
11
+ end
12
+ end
metadata CHANGED
@@ -1,21 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kilya
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Kondratev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-09 00:00:00.000000000 Z
11
+ date: 2022-03-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Class Kilya for test new gem.
14
14
  email: ilyafulleveline@gmail.com
15
- executables: []
15
+ executables:
16
+ - kilya
16
17
  extensions: []
17
18
  extra_rdoc_files: []
18
- files: []
19
+ files:
20
+ - ".gitignore"
21
+ - bin/kilya
22
+ - kilya.gemspec
23
+ - lib/kilya.rb
19
24
  homepage: https://github.com/ikondratev/kilya
20
25
  licenses:
21
26
  - MIT