fin-cli 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: 6d9e0a5259ca818b4189f833198568bce17ccce8aeb15c5da7e1438d7d1f5a62
4
+ data.tar.gz: 324e8751c69bcdb8b45d4ef50fb990d910a5f726252d6f5ac74b5d88e825e542
5
+ SHA512:
6
+ metadata.gz: 5a8be71e07020064eb2a84f0aa008235453afb73f85bc725f15c717e00f160956e3ca84ef07d099542b4073bfa6ed76c10f6aaa34d2ac3f1eeb150a873bbc562
7
+ data.tar.gz: debfb909f1972055979edc2fa5362a2d1f2da1e772ba890748157f53b1ed5c277d17207674d369cfc761d0dc5dcdab342fede314458a3356dd8859ce57a8ec31
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2026-06-19
4
+
5
+ - Initial release
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Fin CLI
2
+
3
+ Reserving gem name until we extract to a standalone CLI tool.
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,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Fin
4
+ module Cli
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
data/lib/fin/cli.rb ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "cli/version"
4
+
5
+ module Fin
6
+ module Cli
7
+ class Error < StandardError; end
8
+ # Your code goes here...
9
+ end
10
+ end
data/sig/fin/cli.rbs ADDED
@@ -0,0 +1,6 @@
1
+ module Fin
2
+ module Cli
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fin-cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Olivier
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Fin CLI is a command-line interface for the Fin platform.
13
+ email:
14
+ - olimart@users.noreply.github.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - CHANGELOG.md
20
+ - README.md
21
+ - Rakefile
22
+ - lib/fin/cli.rb
23
+ - lib/fin/cli/version.rb
24
+ - sig/fin/cli.rbs
25
+ homepage: https://github.com/olimart/fin-cli
26
+ licenses: []
27
+ metadata:
28
+ homepage_uri: https://github.com/olimart/fin-cli
29
+ source_code_uri: https://github.com/olimart/fin-cli
30
+ changelog_uri: https://github.com/olimart/fin-cli/main/CHANGELOG.md
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: 4.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: 4.0.3
46
+ specification_version: 4
47
+ summary: Fin CLI
48
+ test_files: []