ruby-format 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: 487c1d96577d46402110b76075e529b0e159b3c39010f28d40d3f3ac0345813d
4
+ data.tar.gz: b81f98c55f12a8dcbfcef6e0568a5242d2def4f591cb101f5b3af487c5311ae1
5
+ SHA512:
6
+ metadata.gz: d743f83ea0e3f599ddbe3fd83c7675a384002a061085cd8843430930fb7860b0c244f2a24383dd39ef6e843c739adf7a9c5e96f3afc4927ed7f8e67957a308a5
7
+ data.tar.gz: 280da3553ed20dd1f9704620d336c3f102efdaf408c78f784b04e26695301b263993cecc789cc99a85ef7ab995a9b7d420142e2e59a2bb7de57253081813ecdc
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RubyFormat
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "format/version"
4
+
5
+ module RubyFormat
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "format/version"
4
+
5
+ module RubyFormat
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-format
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Daniil Bober
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2026-08-09 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Fast Ruby linter written in Rust.
13
+ email:
14
+ - cardinal.ximinez.again@gmail.co
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/ruby/format.rb
20
+ - lib/ruby/format/version.rb
21
+ - lib/ruby/ruby_format.rb
22
+ homepage: https://github.com/dfuture/ruby-format
23
+ licenses:
24
+ - MIT
25
+ metadata:
26
+ homepage_uri: https://github.com/dfuture/ruby-format
27
+ source_code_uri: https://github.com/dfuture/ruby-format
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 3.0.0
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.6.2
43
+ specification_version: 4
44
+ summary: Ruby linter and formatter.
45
+ test_files: []