rails_schema_excel 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 198d77326308bbe83fe771b6aea1197cd03449c4cefc0eb2e16bf0bff37b1deb
4
- data.tar.gz: 0eac34f563ce3083eb1ea004de83851f13f4f8dac9eb487c1665b6a9fd63b023
3
+ metadata.gz: 0f769b7ff9253ad9eecb1377a4a9681a2fa267e1b8666c1038a0232d93f9b879
4
+ data.tar.gz: c6a8bda183f0b89ce12b118f4f34f5bfe934ab40a4e869639f901bff284e803e
5
5
  SHA512:
6
- metadata.gz: 82fbd81d9ad7ca3666bca685bbf93e76968886a36725db6e26d363dd6452a6926119e91861f8ab993c3585617dc5ecf4ecea5a71a3240bca9933ed7b7da02a8d
7
- data.tar.gz: 4af3392cddac63eefded135acaeefe8c3661e6daf5e681eeef8c9e5696ac17fc08fc4c5502edb7b4c82e952cfdf803767c9d4bf34a060d89bb5703f956b34f93
6
+ metadata.gz: a4db5759962dae1edc77d12c1fe9d349ff01d615c59a7d301633c49565f4372f6eb18a56e75da02d7b030621d47574ad8cc05c10f7365d8b99794b3e23bc70d7
7
+ data.tar.gz: e039161aafa2d2704f60dc84da1983822a4363a2a1e468c612ee87568acabd412bbffe37719047ed47b988b28b61c184f364b9ad5c8c07745ee9a61a7ff868e6
data/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [0.1.0] - 2025-10-08
6
+
7
+ ### Added
8
+ - Initial release
9
+ - Export Rails schema.rb to Excel format
10
+ - A5:SQL Mk-2 style layout with Japanese labels
11
+ - Support for tables, columns, indexes, constraints, and foreign keys
12
+ - Command line interface
13
+ - Ruby API for programmatic usage
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Export Rails database schema to Excel format with A5:SQL Mk-2 style layout.
4
4
 
5
+ <img width="798" height="637" alt="image" src="https://github.com/user-attachments/assets/d538365c-f83d-4536-890b-a0e7c28da534" />
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your application's Gemfile:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsSchemaExcel
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_schema_excel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dang Quang Minh
@@ -47,14 +47,13 @@ executables:
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
+ - CHANGELOG.md
50
51
  - README.md
51
- - Rakefile
52
52
  - exe/rails_schema_excel
53
53
  - lib/rails_schema_excel.rb
54
54
  - lib/rails_schema_excel/exporter.rb
55
55
  - lib/rails_schema_excel/parser.rb
56
56
  - lib/rails_schema_excel/version.rb
57
- - sig/rails_schema_excel.rbs
58
57
  homepage: https://github.com/ojisanchamchi/rails_schema_excel
59
58
  licenses:
60
59
  - MIT
data/Rakefile DELETED
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- task default: %i[]
@@ -1,4 +0,0 @@
1
- module RailsSchemaExcel
2
- VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
- end