kipple 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: 3c1613a0615f1f1933af20843f880e214e73f7d61ae835015e081d1cc3d2fa85
4
+ data.tar.gz: 6b27a92e3051ee959391a3889003f3b36980af4f01acbd829cff7c49bbd39c52
5
+ SHA512:
6
+ metadata.gz: d35e16528b5d7479edec3c6f634c7d1d84233a92d14c0cb5db53d5ecc30fb5ecddc4a830974c22f6114758f8b0bbf1b1cb065b443d58fb960f724038c3082b63
7
+ data.tar.gz: 5ff5746e942e6d3b566134d5ee7110c808b68d3ce64501b0ffb2806d0c29e54a39f550ea6ed52c08a42fea7ca4602d660557206fb8ddd087c820aad35ed0ab49
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Nick Gorbikoff
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # kipple
2
+
3
+ Finds and clears the kipple, the clutter that accumulates in folders when nobody is looking.
4
+
5
+ This is the first, small release: `kipple` prints what it is for and `kipple --version`
6
+ prints the version. The tool grows here, in place, under the same name.
7
+
8
+ ```sh
9
+ gem install kipple
10
+ kipple
11
+ ```
12
+
13
+ MIT licence. Nick Gorbikoff.
data/exe/kipple ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ $LOAD_PATH.unshift File.expand_path("../lib", __dir__)
5
+ require "kipple"
6
+
7
+ exit Kipple.run(ARGV)
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kipple
4
+ VERSION = "0.1.0"
5
+ end
data/lib/kipple.rb ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "kipple/version"
4
+
5
+ module Kipple
6
+ PURPOSE = "Finds and clears the kipple, the clutter that accumulates in folders when nobody is looking."
7
+
8
+ def self.run(argv, out: $stdout)
9
+ if argv.include?("--version") || argv.include?("-v")
10
+ out.puts VERSION
11
+ else
12
+ out.puts "#{PURPOSE} (kipple #{VERSION})"
13
+ end
14
+ 0
15
+ end
16
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kipple
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Nick Gorbikoff
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Finds and clears the kipple, the clutter that accumulates in folders
13
+ when nobody is looking; the first release carries the name and the executable while
14
+ the tool takes shape.
15
+ email:
16
+ - nick.gorbikoff@gmail.com
17
+ executables:
18
+ - kipple
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - LICENSE.md
23
+ - README.md
24
+ - exe/kipple
25
+ - lib/kipple.rb
26
+ - lib/kipple/version.rb
27
+ homepage: https://rubygems.org/gems/kipple
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ rubygems_mfa_required: 'true'
32
+ homepage_uri: https://rubygems.org/gems/kipple
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '3.2'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 4.0.12
48
+ specification_version: 4
49
+ summary: Finds and clears the kipple, the clutter that accumulates in folders when
50
+ nobody is looking.
51
+ test_files: []