hello_world_gem_2 0.1.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: ca9e5413d13c5fb2a87ccccf416b9e8f991aabda508980ca9c12ccf31ef86b1b
4
+ data.tar.gz: 5c5f1ecb0bfee1b0334b314a1bec56471abd88285e06e503679eb45416f138b1
5
+ SHA512:
6
+ metadata.gz: 80a1fb69ff76d03eff2c62ddf8ae95d5ef1acc7aea276cbfc8f68dc1aaae2276286a5b3ffbd4573bdf0f4bd3c4266684011fedd52bd199b0631b6f09ddbaa90d
7
+ data.tar.gz: 203afc32541529cdffda9064538a809faf00764997ecbd88bcb7840cb5fad4578a4579c089da79450202d3a2dc92c067c8a1e39f961b1599f7134c5b12631d56
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Dominik
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/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # HelloWorldGem
2
+
3
+
4
+ ## Installation
5
+
6
+
7
+ ## Usage
8
+
9
+
10
+ ## Development
11
+
12
+
13
+ ## Contributing
14
+
15
+
16
+ ## License
17
+
18
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "standard/rake"
5
+
6
+ task default: :standard
@@ -0,0 +1,5 @@
1
+ class HelloWorldGem::HelloWorld
2
+ def self.hi
3
+ puts "Hello, world!"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module HelloWorldGem
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "hello_world_gem/version"
4
+
5
+ module HelloWorldGem
6
+ class Error < StandardError; end
7
+
8
+ HelloWorld.hi
9
+ end
@@ -0,0 +1,4 @@
1
+ module HelloWorldGem
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hello_world_gem_2
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dominik
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-04-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: test gem
14
+ email:
15
+ - dominik.alberski@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - README.md
22
+ - Rakefile
23
+ - lib/hello_world_gem.rb
24
+ - lib/hello_world_gem/hello_world.rb
25
+ - lib/hello_world_gem/version.rb
26
+ - sig/hello_world_gem.rbs
27
+ homepage: https://github.com/DominikAlberski/hello_world_gem
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ homepage_uri: https://github.com/DominikAlberski/hello_world_gem
32
+ source_code_uri: https://github.com/DominikAlberski/hello_world_gem
33
+ changelog_uri: https://github.com/DominikAlberski/hello_world_gem/releases
34
+ post_install_message:
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.6.0
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubygems_version: 3.4.21
50
+ signing_key:
51
+ specification_version: 4
52
+ summary: test gem
53
+ test_files: []