kilya 0.0.0 → 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 +4 -4
- data/.gitignore +1 -0
- data/kilya.gemspec +18 -0
- data/lib/kilya.rb +5 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c6c303a8ee11e630cbc715cea0ef5dbc30772b20b9b7e7531a4967725abbc7a
|
4
|
+
data.tar.gz: 1be7c35d0ab8bdbfec7523495ca8e7e2952f6e8a88316ac89ae28dcd76b0c55b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7d99f02eabeb44b4921d35d1985d7b1d2fea18c3fbe7b7d74e3fb1d9247a4acf37942987d292eada6975e2d8c7d65804eaa16ae52b7d12b19079372cd55592d
|
7
|
+
data.tar.gz: d984f47b1fec1c6e54f1f39600ec4bff82f810374b82c06db04bc246c33d3bb5957edd7e6f579fbda3d07a55d99cb11b0c797f377d2bcdfab9a5ade495ebd14b
|
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*.gem
|
data/kilya.gemspec
ADDED
@@ -0,0 +1,18 @@
|
|
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.1'
|
11
|
+
s.license = 'MIT'
|
12
|
+
s.summary = 'Simple first Ruby gem'
|
13
|
+
s.description = 'Class Kilya for test new gem.'
|
14
|
+
s.authors = ['Ilya Kondratev']
|
15
|
+
s.email = 'ilyafulleveline@gmail.com'
|
16
|
+
s.homepage = 'https://github.com/ikondratev/kilya'
|
17
|
+
s.files = `git ls-files`.split($RS)
|
18
|
+
end
|
data/lib/kilya.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kilya
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Kondratev
|
@@ -15,7 +15,10 @@ email: ilyafulleveline@gmail.com
|
|
15
15
|
executables: []
|
16
16
|
extensions: []
|
17
17
|
extra_rdoc_files: []
|
18
|
-
files:
|
18
|
+
files:
|
19
|
+
- ".gitignore"
|
20
|
+
- kilya.gemspec
|
21
|
+
- lib/kilya.rb
|
19
22
|
homepage: https://github.com/ikondratev/kilya
|
20
23
|
licenses:
|
21
24
|
- MIT
|