app_architect-rails 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b78d83b266a1166ff9727a2bd93564429572b0d5d791de1f4c28f832ee16b2ea
4
+ data.tar.gz: 689bd002f9256272d4bda90e31a519220a73fd5d66752c0b6b18a5e2af01eeb0
5
+ SHA512:
6
+ metadata.gz: d0e436119add929e362dc1fb207e33fc705fd6a75f758259bcc764629808cd5d937240e306b6f76efc1236a08fbe78b23c96c99272bcadc7590d5e6ce857e673
7
+ data.tar.gz: 0302600333aed3c853cf651393b2b77db43027f93883fa98a675a331ccf0145b24408fd733279f146ee111c31598d3c5b467834126e4c520e5734e9925830a93
data/LICENSE ADDED
@@ -0,0 +1,4 @@
1
+ Copyright (c) 2026 Alexander Grigorev
2
+
3
+ Rails Architect is licensed under the terms of the GNU Lesser General Public License v3.0.
4
+ Please see https://www.gnu.org/licenses/lgpl-3.0.html for the full license text.
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ ## License
2
+
3
+ Rails Architect is licensed under the GNU Lesser General Public License v3.0.
4
+ See [LICENSE](LICENSE) for details.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RailsArchitect
4
+ VERSION = "0.0.1"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rails_architect/version"
4
+
5
+ module RailsArchitect
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
metadata ADDED
@@ -0,0 +1,42 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: app_architect-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Alexander Grigorev
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2026-06-26 00:00:00.000000000 Z
11
+ dependencies: []
12
+ email: vill@railsarchitect.dev
13
+ executables: []
14
+ extensions: []
15
+ extra_rdoc_files:
16
+ - README.md
17
+ files:
18
+ - LICENSE
19
+ - README.md
20
+ - lib/rails_architect.rb
21
+ - lib/rails_architect/version.rb
22
+ licenses:
23
+ - LGPL-3.0-only
24
+ metadata: {}
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 2.7.0
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 3.0.0
38
+ requirements: []
39
+ rubygems_version: 3.6.5
40
+ specification_version: 4
41
+ summary: Rails Architect is a development tool for Ruby on Rails applications.
42
+ test_files: []