new_gem_test_bla 0.0.6

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: 8f8edbe2e4325d6e5a321d805eabc8960bd34ed5bdcee41b61e1095062902e72
4
+ data.tar.gz: 16e707a9dbb419a634bf54920c7e1e444e70adb80c8b77163e49238747cc0fd9
5
+ SHA512:
6
+ metadata.gz: 794fb9cbf631f266d7489ecfc42ed8b4a394b59f38fbb879102dc4479431f6937be6ce9494495489aea7445e4905fc25b0e996eb9c63c5d36d74f200ced762c5
7
+ data.tar.gz: 7be798c668c779ad83a6f99ee1abe5822a0356e399f8b3cec9ae1e964bd9153fe0d1cd52ba8d92a7d46985e2ffcd1d41eaa4937efc9b2c4fae9bdd6cac1e5249
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT LICENSE
2
+
3
+ Copyright (c) 2022 root <root@example.com>
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/bin/new_gem_test ADDED
@@ -0,0 +1 @@
1
+ #!/usr/bin/env ruby
@@ -0,0 +1,3 @@
1
+ module NewGemTest
2
+ VERSION = '0.0.6'
3
+ end
@@ -0,0 +1,2 @@
1
+ module NewGemTest
2
+ end
@@ -0,0 +1,21 @@
1
+ # encoding: utf-8
2
+
3
+ $:.unshift File.expand_path('../lib', __FILE__)
4
+ require 'new_gem_test/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'new_gem_test_bla'
8
+ s.version = NewGemTest::VERSION
9
+ s.authors = ['root']
10
+ s.email = ['root@example.com']
11
+ s.homepage = 'https://github.com/root/new_gem_test'
12
+ s.licenses = ['MIT']
13
+ s.summary = '[summary]'
14
+ s.description = '[description]'
15
+
16
+ s.files = Dir.glob('{bin/*,lib/**/*,[A-Z]*}')
17
+ s.executables = Dir.glob('bin/*').map { |f| File.basename(f) }
18
+
19
+ s.platform = Gem::Platform::RUBY
20
+ s.require_paths = ['lib']
21
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: new_gem_test_bla
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.6
5
+ platform: ruby
6
+ authors:
7
+ - root
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-05-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: "[description]"
14
+ email:
15
+ - root@example.com
16
+ executables:
17
+ - new_gem_test
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - Gemfile
22
+ - LICENSE.md
23
+ - bin/new_gem_test
24
+ - lib/new_gem_test.rb
25
+ - lib/new_gem_test/version.rb
26
+ - new_gem_test.gemspec
27
+ homepage: https://github.com/root/new_gem_test
28
+ licenses:
29
+ - MIT
30
+ metadata: {}
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.0.3.1
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: "[summary]"
50
+ test_files: []