thinkami_hello_file_writer 0.1.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: 86776ee3a3b4eacb8b57f1c4146876a1352b126e0e42647bac8b40e3274be6e1
4
+ data.tar.gz: c3a33283bb5dbc569e5430457b90b83e1b52533ea75bcc6185d8fd0e5e172ab6
5
+ SHA512:
6
+ metadata.gz: ae4f117de267827a8658c2b575b21f933930eeda808118f70049caff365b7bdc8d9fa216e66c2e57596e322f7fc68c859b79659246b554d8029cc26f504eb624
7
+ data.tar.gz: 65f8fcac236228678aec025f94107f79266a3277250344b1c3272a166105e99d80428c0c286497a7acbfad665e6d335f329dfa3c3d605c3ac36cc494af885df8
data/LICENSE.txt ADDED
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <https://unlicense.org>
data/README.md ADDED
@@ -0,0 +1 @@
1
+ # ThinkamiHelloFileWriter
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ task default: :test
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ThinkamiHelloFileWriter
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "thinkami_hello_file_writer/version"
4
+
5
+ module ThinkamiHelloFileWriter
6
+ class Error < StandardError; end
7
+
8
+ def self.write_file
9
+ puts Dir.pwd
10
+ File.open('file_by_gem', 'w', 0755) { |f| f.puts 'open and write by gem.' }
11
+ end
12
+ end
@@ -0,0 +1,4 @@
1
+ module ThinkamiHelloFileWriter
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thinkami_hello_file_writer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - thinkAmi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-12-27 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: 'example: file write gem'
14
+ email:
15
+ - 1299734+thinkAmi@users.noreply.github.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - README.md
22
+ - Rakefile
23
+ - lib/thinkami_hello_file_writer.rb
24
+ - lib/thinkami_hello_file_writer/version.rb
25
+ - sig/thinkami_hello_file_writer.rbs
26
+ homepage: https://github.com/thinkAmi-sandbox/thinkami_hello_file_writer
27
+ licenses:
28
+ - The Unlicens
29
+ metadata: {}
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.5.22
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: 'example: file write gem'
49
+ test_files: []