osuny 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7a9acdf8b1fbb2951243667b9acba45c26ccd21ab673ba9bfdb4096a57ec8adb
4
+ data.tar.gz: 0e21cc48543f159f622afaec40cc2b1f1fb22b3f1f7dc7863f9296f2771abb3e
5
+ SHA512:
6
+ metadata.gz: fe14948488c3308821dc6ecc3aef44d201426bf20c65bed3d4a98f4ad0815d21f5760c78b0006a940031567f28914e4cfcd90790176fb0be3e664e43bedfe6e9
7
+ data.tar.gz: 44b7c5cbbb1272d13c3984c1b997fd539b51d56122c3b6b5093031d1edb4e33726b39267cb2baca6dd3471230fe73c806fbb38d78515df66c035ab97704add4d
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## [0.0.0] - 2024-01-25
2
+
3
+ - Placeholder gem to reserve "osuny" name.
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Sébastien Gaya
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,5 @@
1
+ # Osuny
2
+
3
+ Placeholder Ruby gem to reserve "osuny" name.
4
+
5
+ Please use [`osuny_api`](https://github.com/noesya/osuny-api) gem.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Osuny
4
+ VERSION = "0.0.0"
5
+ end
data/lib/osuny.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "osuny/version"
4
+
5
+ module Osuny
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: osuny
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Sébastien Gaya
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-01-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Placeholder Ruby gem to reserve osuny name
14
+ email:
15
+ - sebastien.gaya@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - CHANGELOG.md
21
+ - LICENSE.txt
22
+ - README.md
23
+ - Rakefile
24
+ - lib/osuny.rb
25
+ - lib/osuny/version.rb
26
+ homepage: https://github.com/noesya/osuny-rb
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ homepage_uri: https://github.com/noesya/osuny-rb
31
+ source_code_uri: https://github.com/noesya/osuny-rb
32
+ changelog_uri: https://github.com/noesya/osuny-rb/blob/main/CHANGELOG.md
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 2.6.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.5.5
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Placeholder Ruby gem to reserve osuny name
52
+ test_files: []