rb-components 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 79374abed5f7603ac6a88199a6194fed3e886ecaf994c4d3dd93a5959d5ba187
4
+ data.tar.gz: e0c9bc6c2d0269e8783359584ed76e3fbe8bc4cab57c3b2f67fdae0865e9bc0c
5
+ SHA512:
6
+ metadata.gz: 7229156779f624fc398b8809468f55e55fed5327abd54f9eccabfe4d43f5b30242da07d9eeb3ab749c911b805b5130eb9330e9611b0ac8bc8ab7940ebcac3b4a
7
+ data.tar.gz: 43f3e550b899db8625382fdf71bdb08090a653c25561e08ee40d7c68e544859b5db8c39c16ed536727a76119063d1cd98b779723c19f879042ae668c5c617465
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RbComponents
4
+ module Errors
5
+ class BaseError < StandardError; end
6
+ end
7
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ # GEM Version module
4
+ module RbComponents
5
+ module Version
6
+ # x.0.0 changes that will break existing users code if they update
7
+ MAJOR = 0
8
+ # 0.x.0 changes, such as new functionality/features
9
+ MINOR = 0
10
+ # 0.0.x changes, such as small bug fixes
11
+ PATCH = 0
12
+ end
13
+
14
+ # Gem version
15
+ # @return [String]
16
+ def self.version
17
+ "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}"
18
+ end
19
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'rb_components/version'
4
+
5
+ # RbComponents base module
6
+ module RbComponents
7
+ autoload :Errors, 'rb_components/errors'
8
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rb-components
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Merkulov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-04-13 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Stub DESCRIPTION for gem rb-components
14
+ email:
15
+ - rormercury@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/rb_components.rb
21
+ - lib/rb_components/errors.rb
22
+ - lib/rb_components/version.rb
23
+ homepage: https://github.com/bf-rb/rb-components
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/bf-rb/rb-components
28
+ source_code_uri: https://github.com/bf-rb/rb-components
29
+ changelog_uri: https://github.com/bf-rb/rb-components
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 3.0.0
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.3.7
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Stub gem rb-components
49
+ test_files: []