rubizza 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/lib/rubizza.rb +3 -0
  4. data/rubizza.gemspec +14 -0
  5. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 62922409a670321220d3f232202869803f69856079eff5266bc048bef393bf93
4
+ data.tar.gz: cd6a7c6cce14bc1bac0e813e8541e40c579ea5c61547473fe5b45e9050102ef7
5
+ SHA512:
6
+ metadata.gz: 51cbb40b72fc851d5eef55eaa56d4cf545e3badbfb27a29e540565113ed73690a04572e9c2480bde25b7c78609766c1f8842690b3fc095502f57408e6ef5816c
7
+ data.tar.gz: 2677eea8e05c5c4d607b33ac7f142f4a6d826a1204e9ada5c366a884d49575638a7ccae9f2e084d0340814a4b33229d367303481a1cd7c00cd060f6a1c490014
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Sergey Avseyev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/lib/rubizza.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Rubizza
2
+ class Error < StandardError; end
3
+ end
data/rubizza.gemspec ADDED
@@ -0,0 +1,14 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "rubizza"
3
+ spec.version = '1.0.0'
4
+ spec.authors = ["Sergey Avseyev"]
5
+ spec.email = ["sergey.avseyev@gmail.com"]
6
+
7
+ spec.summary = 'summary'
8
+ spec.description = 'description'
9
+ spec.license = "MIT"
10
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
11
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
12
+ end
13
+ spec.require_paths = ["lib"]
14
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubizza
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Sergey Avseyev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-07-18 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: description
14
+ email:
15
+ - sergey.avseyev@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - lib/rubizza.rb
22
+ - rubizza.gemspec
23
+ homepage:
24
+ licenses:
25
+ - MIT
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.0.3
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: summary
46
+ test_files: []