rafmycat 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0ab5d843d7fa6566e1e622e7229c57d55adf9c1448078fca5efc6ca478662d4
4
- data.tar.gz: 74c17f5d2462bd4813451caad7a764827fb8671d2f4fac210f8f03ea4751d3df
3
+ metadata.gz: 799a35b2670836bbf5c735dd298c6fcc3e124b85ffea4a33865a3c612ad24693
4
+ data.tar.gz: b7de613490d542f72048f3dc7bb8d44ea57b0e026581dcdc3eb9af10c57c9730
5
5
  SHA512:
6
- metadata.gz: 10efbdefa9191db148fa470cd94298fed578931e756f2566f7d18dfe93349a07e1d95648fe4826c0174fdbadcb5a7220367f5a19622837fda3783b113f115a75
7
- data.tar.gz: e97e40fec873db781f66a57e8f81093add9535849fb6d3b1fda636725c6928cdd29238fc858eab3e2cacaab47460a4862286fd2b57fc5917123e1a7db09a6f5b
6
+ metadata.gz: 9fdca5cff9dd5b814ce5d1593c2dba4774de5f620d620141a301dbc23e7f8aa2c31e1ee31663763fb3c002aad97c0bc812717a888aa0b6982c6246c36d1313fd
7
+ data.tar.gz: c2109fd2ff142223336cbe5585b1c7245c6daba8abe6984f489c7844fb779efe3670ecdd65543cb07cf5b40f32380f0369cd117b867c56abaed6d150a5525efa
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rafmycat
4
+ VERSION = "1.0.1"
5
+ end
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "raf/version"
3
+ require_relative "rafmycat/version"
4
4
 
5
- module Raf
5
+ module Rafmycat
6
6
  Dir[File.dirname(__FILE__) + '/source/**/*.rb'].each { |file|
7
7
  puts file
8
8
  require file
Binary file
data/rafmycat.gemspec CHANGED
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "lib/raf/version"
3
+ require_relative "lib/rafmycat/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "rafmycat"
7
- spec.version = Raf::VERSION
7
+ spec.version = Rafmycat::VERSION
8
8
  spec.authors = ["Valentina Goncharenko"]
9
9
  spec.email = ["valentinagoncarenko975@gmail.com"]
10
10
  spec.summary = "Student App"
@@ -1,4 +1,4 @@
1
- module RubbishCode
1
+ module Rafmycat
2
2
  VERSION: String
3
3
  # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rafmycat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valentina Goncharenko
@@ -33,8 +33,8 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - Documentation.md
35
35
  - LICENSE.txt
36
- - lib/raf.rb
37
- - lib/raf/version.rb
36
+ - lib/rafmycat.rb
37
+ - lib/rafmycat/version.rb
38
38
  - lib/source/DBUniversity.rb
39
39
  - lib/source/Students_list_DB.rb
40
40
  - lib/source/controller.rb
@@ -57,8 +57,9 @@ files:
57
57
  - lib/source/student_create_form_controller.rb
58
58
  - lib/source/student_edit_form_controller.rb
59
59
  - lib/source/student_git_form_controller.rb
60
+ - rafmycat-1.0.0.gem
60
61
  - rafmycat.gemspec
61
- - sig/ribbish_code.rbs
62
+ - sig/rafmycat.rbs
62
63
  homepage: https://github.com/yellowcat-dotcom
63
64
  licenses:
64
65
  - MIT
data/lib/raf/version.rb DELETED
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Raf
4
- VERSION = "1.0.0"
5
- end