layered_stack 0.0.6 → 0.0.8
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 +4 -4
- data/lib/layered_stack/root/create.rb +1 -2
- data/lib/layered_stack/version.rb +1 -1
- data/templates/backend/rails_template.rb +3 -1
- data/templates/frontend/layout.js +28 -2
- data/templates/frontend/page.js +2 -29
- data/templates/root/Gemfile +1 -2
- data/templates/root/layered_stack/cli/cli/layered_stack-0.0.7.gem +0 -0
- data/templates/root/layered_stack/cli/cli/lib/layered_stack/version.rb +1 -1
- data/templates/root/layered_stack/cli/cli/templates/backend/rails_template.rb +1 -1
- data/templates/root/layered_stack/cli/cli/templates/root/Gemfile +1 -2
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/layered_stack-0.0.6.gem +0 -0
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/layered_stack-0.0.7.gem +0 -0
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/lib/layered_stack/version.rb +1 -1
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/backend/rails_template.rb +6 -3
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/Gemfile +6 -3
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/devcontainer/docker-compose.yml +1 -0
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem +0 -0
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails.gemspec +1 -1
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem +0 -0
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/layered_stack-rails.gemspec +1 -1
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/layered_stack-rails-0.0.1.gem +0 -0
- data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/layered_stack-rails.gemspec +1 -1
- data/templates/root/layered_stack/cli/layered_stack-0.0.6.gem +0 -0
- data/templates/root/layered_stack/cli/layered_stack-0.0.7.gem +0 -0
- data/templates/root/layered_stack/cli/lib/layered_stack/version.rb +1 -1
- data/templates/root/layered_stack/cli/templates/backend/rails_template.rb +6 -3
- data/templates/root/layered_stack/cli/templates/root/Gemfile +6 -3
- data/templates/root/layered_stack/cli/templates/root/devcontainer/docker-compose.yml +1 -0
- data/templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem +0 -0
- data/templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails.gemspec +1 -1
- data/templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem +0 -0
- data/templates/root/layered_stack/rails/layered_stack-rails.gemspec +1 -1
- data/templates/root/layered_stack/rails/rails/layered_stack-rails-0.0.1.gem +0 -0
- data/templates/root/layered_stack/rails/rails/layered_stack-rails.gemspec +1 -1
- metadata +10 -2
- data/templates/root/layered_stack/cli/cli/layered_stack-0.0.6.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 654e3e7a8d171059086845763046456d6f1689bc58d31851878b5f50468715fd
|
4
|
+
data.tar.gz: 481d8bee09c9acd9baeb7b99cea90b0c75fd362b32b7afb50b09a5d872277976
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 973b3dd330e1339c7363fd13975c4ebadca3538175ef455ec7e892ff6e7577d02c6807cd07f9a730b46c34352edac4febc3425f1500e74ed6a59a3a9b6867a75
|
7
|
+
data.tar.gz: ec56c1d84828fe211edb6d92e2dcd1783c67c07678b7ea156de071fe5e4cdfc2dcbdb9bda251bcd8e75b63aad65d49855fff640d4ab42be8169316c60dd63c9a
|
@@ -46,7 +46,7 @@ module LayeredStack
|
|
46
46
|
|
47
47
|
def check_folder_exists?(folder)
|
48
48
|
if File.directory?(folder)
|
49
|
-
logger.info("Directory exists: #{folder}")
|
49
|
+
logger.info("Directory exists: #{folder}, aborting to avoid unintentional overwrite")
|
50
50
|
true
|
51
51
|
else
|
52
52
|
logger.info("Directory does not exist: #{folder}")
|
@@ -61,7 +61,6 @@ module LayeredStack
|
|
61
61
|
logger.info("Templates copied to #{destination}")
|
62
62
|
end
|
63
63
|
|
64
|
-
|
65
64
|
def rename_devcontainer(folder)
|
66
65
|
devcontainer_path = File.join(folder, 'devcontainer')
|
67
66
|
new_devcontainer_path = File.join(folder, '.devcontainer')
|
@@ -3,9 +3,11 @@ gem "rack-cors", "~> 2.0.2"
|
|
3
3
|
|
4
4
|
# Use a local copy of the Layered Stack Rails gem in development
|
5
5
|
if ENV['LAYERED_STACK_ENV'] == 'development'
|
6
|
+
gem "layered_stack-nextjs", path: "../layered_stack/nextjs", groups: [:development, :test]
|
6
7
|
gem "layered_stack-rails", path: "../layered_stack/rails", groups: [:development, :test]
|
7
8
|
else
|
8
|
-
gem "layered_stack-
|
9
|
+
gem "layered_stack-nextjs", groups: [:development, :test]
|
10
|
+
gem "layered_stack-rails", groups: [:development, :test]
|
9
11
|
end
|
10
12
|
|
11
13
|
after_bundle do
|
@@ -1,19 +1,45 @@
|
|
1
|
-
|
1
|
+
// Next
|
2
|
+
import { ThemeProvider, useTheme } from 'next-themes'
|
2
3
|
|
4
|
+
// Packages
|
5
|
+
import { Bars3Icon } from '@heroicons/react/24/solid'
|
6
|
+
import { Page } from '@layeredstack/ui'
|
7
|
+
|
8
|
+
// Logos
|
9
|
+
import logoDark from './logo_dark.svg'
|
10
|
+
import logoLight from './logo_light.svg'
|
11
|
+
|
12
|
+
// Styles
|
3
13
|
import '@layeredstack/ui/styles/ls_ui.css'
|
4
14
|
|
15
|
+
// Metadata
|
5
16
|
export const metadata = {
|
6
17
|
initials: 'LS',
|
7
18
|
title: 'Layered Stack - UI (Example)',
|
8
19
|
description: 'Example of the Layered Stack - UI interface components',
|
9
20
|
}
|
10
21
|
|
22
|
+
// Layout
|
11
23
|
export default function RootLayout({ children }) {
|
24
|
+
const mobileMenuIcon = <Bars3Icon className="h-6 w-6" />
|
25
|
+
|
12
26
|
return (
|
13
27
|
<html lang="en" suppressHydrationWarning>
|
14
28
|
<body>
|
15
29
|
<ThemeProvider attribute='class'>
|
16
|
-
|
30
|
+
<Page
|
31
|
+
backendUrl="http://localhost:3000"
|
32
|
+
logoDark={logoDark}
|
33
|
+
logoLight={logoLight}
|
34
|
+
metadata={metadata}
|
35
|
+
// mobileMenuIcon={mobileMenuIcon}
|
36
|
+
useTheme={useTheme}
|
37
|
+
user={{
|
38
|
+
initials: 'TG'
|
39
|
+
}}
|
40
|
+
>
|
41
|
+
{children}
|
42
|
+
</Page>
|
17
43
|
</ThemeProvider>
|
18
44
|
</body>
|
19
45
|
</html>
|
data/templates/frontend/page.js
CHANGED
@@ -1,35 +1,8 @@
|
|
1
|
-
// Next
|
2
|
-
import { useTheme } from 'next-themes'
|
3
|
-
|
4
|
-
// Packages
|
5
|
-
import { Bars3Icon } from '@heroicons/react/24/solid'
|
6
|
-
import { Page } from '@layeredstack/ui'
|
7
|
-
|
8
|
-
// Local
|
9
|
-
import { metadata } from './layout.js'
|
10
|
-
|
11
|
-
// Logo
|
12
|
-
import logoDark from './logo_dark.svg'
|
13
|
-
import logoLight from './logo_light.svg'
|
14
|
-
|
15
|
-
// Home
|
16
1
|
export default function Home() {
|
17
|
-
const mobileMenuIcon = <Bars3Icon className="h-6 w-6" />
|
18
|
-
|
19
2
|
return (
|
20
|
-
|
21
|
-
backendUrl="http://localhost:3000"
|
22
|
-
logoDark={logoDark}
|
23
|
-
logoLight={logoLight}
|
24
|
-
metadata={metadata}
|
25
|
-
// mobileMenuIcon={mobileMenuIcon}
|
26
|
-
useTheme={useTheme}
|
27
|
-
user={{
|
28
|
-
initials: 'TG'
|
29
|
-
}}
|
30
|
-
>
|
3
|
+
<>
|
31
4
|
<h1>Hello world!</h1>
|
32
5
|
<p>This is a simple page.</p>
|
33
|
-
|
6
|
+
</>
|
34
7
|
)
|
35
8
|
}
|
data/templates/root/Gemfile
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
3
|
gem "foreman", "0.88.1"
|
4
|
-
gem "rails", ">= 7.2.1"
|
5
4
|
|
6
5
|
# Use a local copy of the Layered Stack CLI gem in development
|
7
6
|
if ENV['LAYERED_STACK_ENV'] == 'development'
|
8
7
|
gem "layered_stack", path: "layered_stack/cli"
|
9
8
|
else
|
10
|
-
gem "layered_stack"
|
9
|
+
gem "layered_stack"
|
11
10
|
end
|
Binary file
|
@@ -5,7 +5,7 @@ gem "rack-cors", "~> 2.0.2"
|
|
5
5
|
if ENV['LAYERED_STACK_ENV'] == 'development'
|
6
6
|
gem "layered_stack-rails", path: "../layered_stack/rails", groups: [:development, :test]
|
7
7
|
else
|
8
|
-
gem "layered_stack-rails",
|
8
|
+
gem "layered_stack-rails", groups: [:development, :test]
|
9
9
|
end
|
10
10
|
|
11
11
|
after_bundle do
|
@@ -1,11 +1,10 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
3
|
gem "foreman", "0.88.1"
|
4
|
-
gem "rails", ">= 7.2.1"
|
5
4
|
|
6
5
|
# Use a local copy of the Layered Stack CLI gem in development
|
7
6
|
if ENV['LAYERED_STACK_ENV'] == 'development'
|
8
7
|
gem "layered_stack", path: "layered_stack/cli"
|
9
8
|
else
|
10
|
-
gem "layered_stack"
|
9
|
+
gem "layered_stack"
|
11
10
|
end
|
data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/layered_stack-0.0.6.gem
CHANGED
Binary file
|
data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/layered_stack-0.0.7.gem
ADDED
Binary file
|
@@ -1,9 +1,12 @@
|
|
1
1
|
gem "jbuilder", "~> 2.12.0"
|
2
2
|
gem "rack-cors", "~> 2.0.2"
|
3
3
|
|
4
|
-
#
|
5
|
-
|
6
|
-
|
4
|
+
# Use a local copy of the Layered Stack Rails gem in development
|
5
|
+
if ENV['LAYERED_STACK_ENV'] == 'development'
|
6
|
+
gem "layered_stack-rails", path: "../layered_stack/rails", groups: [:development, :test]
|
7
|
+
else
|
8
|
+
gem "layered_stack-rails", groups: [:development, :test]
|
9
|
+
end
|
7
10
|
|
8
11
|
after_bundle do
|
9
12
|
# rails_command "db:create"
|
data/templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/Gemfile
CHANGED
@@ -3,6 +3,9 @@ source "https://rubygems.org"
|
|
3
3
|
gem "foreman", "0.88.1"
|
4
4
|
gem "rails", ">= 7.2.1"
|
5
5
|
|
6
|
-
#
|
7
|
-
|
8
|
-
|
6
|
+
# Use a local copy of the Layered Stack CLI gem in development
|
7
|
+
if ENV['LAYERED_STACK_ENV'] == 'development'
|
8
|
+
gem "layered_stack", path: "layered_stack/cli"
|
9
|
+
else
|
10
|
+
gem "layered_stack"
|
11
|
+
end
|
Binary file
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata['source_code_uri'] = 'https://github.com/LayeredStack/rails'
|
19
19
|
|
20
20
|
# Ruby
|
21
|
-
s.required_ruby_version = '>=3.3.
|
21
|
+
s.required_ruby_version = '>=3.3.4'
|
22
22
|
|
23
23
|
# Files and executables
|
24
24
|
s.files = Dir.glob('lib/**/*.rb') + Dir.glob('assets/**/*')
|
Binary file
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata['source_code_uri'] = 'https://github.com/LayeredStack/rails'
|
19
19
|
|
20
20
|
# Ruby
|
21
|
-
s.required_ruby_version = '>=3.3.
|
21
|
+
s.required_ruby_version = '>=3.3.4'
|
22
22
|
|
23
23
|
# Files and executables
|
24
24
|
s.files = Dir.glob('lib/**/*.rb') + Dir.glob('assets/**/*')
|
Binary file
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata['source_code_uri'] = 'https://github.com/LayeredStack/rails'
|
19
19
|
|
20
20
|
# Ruby
|
21
|
-
s.required_ruby_version = '>=3.3.
|
21
|
+
s.required_ruby_version = '>=3.3.4'
|
22
22
|
|
23
23
|
# Files and executables
|
24
24
|
s.files = Dir.glob('lib/**/*.rb') + Dir.glob('assets/**/*')
|
Binary file
|
Binary file
|
@@ -1,9 +1,12 @@
|
|
1
1
|
gem "jbuilder", "~> 2.12.0"
|
2
2
|
gem "rack-cors", "~> 2.0.2"
|
3
3
|
|
4
|
-
#
|
5
|
-
|
6
|
-
|
4
|
+
# Use a local copy of the Layered Stack Rails gem in development
|
5
|
+
if ENV['LAYERED_STACK_ENV'] == 'development'
|
6
|
+
gem "layered_stack-rails", path: "../layered_stack/rails", groups: [:development, :test]
|
7
|
+
else
|
8
|
+
gem "layered_stack-rails", groups: [:development, :test]
|
9
|
+
end
|
7
10
|
|
8
11
|
after_bundle do
|
9
12
|
# rails_command "db:create"
|
@@ -3,6 +3,9 @@ source "https://rubygems.org"
|
|
3
3
|
gem "foreman", "0.88.1"
|
4
4
|
gem "rails", ">= 7.2.1"
|
5
5
|
|
6
|
-
#
|
7
|
-
|
8
|
-
|
6
|
+
# Use a local copy of the Layered Stack CLI gem in development
|
7
|
+
if ENV['LAYERED_STACK_ENV'] == 'development'
|
8
|
+
gem "layered_stack", path: "layered_stack/cli"
|
9
|
+
else
|
10
|
+
gem "layered_stack"
|
11
|
+
end
|
Binary file
|
data/templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata['source_code_uri'] = 'https://github.com/LayeredStack/rails'
|
19
19
|
|
20
20
|
# Ruby
|
21
|
-
s.required_ruby_version = '>=3.3.
|
21
|
+
s.required_ruby_version = '>=3.3.4'
|
22
22
|
|
23
23
|
# Files and executables
|
24
24
|
s.files = Dir.glob('lib/**/*.rb') + Dir.glob('assets/**/*')
|
Binary file
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata['source_code_uri'] = 'https://github.com/LayeredStack/rails'
|
19
19
|
|
20
20
|
# Ruby
|
21
|
-
s.required_ruby_version = '>=3.3.
|
21
|
+
s.required_ruby_version = '>=3.3.4'
|
22
22
|
|
23
23
|
# Files and executables
|
24
24
|
s.files = Dir.glob('lib/**/*.rb') + Dir.glob('assets/**/*')
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata['source_code_uri'] = 'https://github.com/LayeredStack/rails'
|
19
19
|
|
20
20
|
# Ruby
|
21
|
-
s.required_ruby_version = '>=3.3.
|
21
|
+
s.required_ruby_version = '>=3.3.4'
|
22
22
|
|
23
23
|
# Files and executables
|
24
24
|
s.files = Dir.glob('lib/**/*.rb') + Dir.glob('assets/**/*')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: layered_stack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Layered Stack
|
@@ -70,7 +70,7 @@ files:
|
|
70
70
|
- templates/root/layered_stack/cli/bin/layered_stack
|
71
71
|
- templates/root/layered_stack/cli/cli/LICENSE.md
|
72
72
|
- templates/root/layered_stack/cli/cli/bin/layered_stack
|
73
|
-
- templates/root/layered_stack/cli/cli/layered_stack-0.0.
|
73
|
+
- templates/root/layered_stack/cli/cli/layered_stack-0.0.7.gem
|
74
74
|
- templates/root/layered_stack/cli/cli/layered_stack.gemspec
|
75
75
|
- templates/root/layered_stack/cli/cli/lib/layered_stack.rb
|
76
76
|
- templates/root/layered_stack/cli/cli/lib/layered_stack/backend/create.rb
|
@@ -94,6 +94,7 @@ files:
|
|
94
94
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/LICENSE.md
|
95
95
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/bin/layered_stack
|
96
96
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/layered_stack-0.0.6.gem
|
97
|
+
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/layered_stack-0.0.7.gem
|
97
98
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/layered_stack.gemspec
|
98
99
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/lib/layered_stack.rb
|
99
100
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/lib/layered_stack/backend/create.rb
|
@@ -116,6 +117,7 @@ files:
|
|
116
117
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/devcontainer/layered-stack-0.0.1.vsix
|
117
118
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/LICENSE.md
|
118
119
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/bin/layered_stack-rails
|
120
|
+
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem
|
119
121
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails.gemspec
|
120
122
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/lib/generators/layered_stack_rails/scaffold_generator.rb
|
121
123
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/lib/generators/layered_stack_rails/templates/active_record/model/model.erb
|
@@ -126,6 +128,7 @@ files:
|
|
126
128
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/cli/templates/root/layered_stack/rails/lib/layered_stack_rails/version.rb
|
127
129
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/LICENSE.md
|
128
130
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/bin/layered_stack-rails
|
131
|
+
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem
|
129
132
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/layered_stack-rails.gemspec
|
130
133
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/lib/generators/layered_stack_rails/scaffold_generator.rb
|
131
134
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/lib/generators/layered_stack_rails/templates/active_record/model/model.erb
|
@@ -136,6 +139,7 @@ files:
|
|
136
139
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/lib/layered_stack_rails/version.rb
|
137
140
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/LICENSE.md
|
138
141
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/bin/layered_stack-rails
|
142
|
+
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/layered_stack-rails-0.0.1.gem
|
139
143
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/layered_stack-rails.gemspec
|
140
144
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/lib/generators/layered_stack_rails/scaffold_generator.rb
|
141
145
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/lib/generators/layered_stack_rails/templates/active_record/model/model.erb
|
@@ -145,6 +149,7 @@ files:
|
|
145
149
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/lib/layered_stack_rails/generate_new.rb
|
146
150
|
- templates/root/layered_stack/cli/cli/templates/root/layered_stack/rails/rails/lib/layered_stack_rails/version.rb
|
147
151
|
- templates/root/layered_stack/cli/layered_stack-0.0.6.gem
|
152
|
+
- templates/root/layered_stack/cli/layered_stack-0.0.7.gem
|
148
153
|
- templates/root/layered_stack/cli/layered_stack.gemspec
|
149
154
|
- templates/root/layered_stack/cli/lib/layered_stack.rb
|
150
155
|
- templates/root/layered_stack/cli/lib/layered_stack/backend/create.rb
|
@@ -167,6 +172,7 @@ files:
|
|
167
172
|
- templates/root/layered_stack/cli/templates/root/devcontainer/layered-stack-0.0.1.vsix
|
168
173
|
- templates/root/layered_stack/cli/templates/root/layered_stack/rails/LICENSE.md
|
169
174
|
- templates/root/layered_stack/cli/templates/root/layered_stack/rails/bin/layered_stack-rails
|
175
|
+
- templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem
|
170
176
|
- templates/root/layered_stack/cli/templates/root/layered_stack/rails/layered_stack-rails.gemspec
|
171
177
|
- templates/root/layered_stack/cli/templates/root/layered_stack/rails/lib/generators/layered_stack_rails/scaffold_generator.rb
|
172
178
|
- templates/root/layered_stack/cli/templates/root/layered_stack/rails/lib/generators/layered_stack_rails/templates/active_record/model/model.erb
|
@@ -177,6 +183,7 @@ files:
|
|
177
183
|
- templates/root/layered_stack/cli/templates/root/layered_stack/rails/lib/layered_stack_rails/version.rb
|
178
184
|
- templates/root/layered_stack/rails/LICENSE.md
|
179
185
|
- templates/root/layered_stack/rails/bin/layered_stack-rails
|
186
|
+
- templates/root/layered_stack/rails/layered_stack-rails-0.0.1.gem
|
180
187
|
- templates/root/layered_stack/rails/layered_stack-rails.gemspec
|
181
188
|
- templates/root/layered_stack/rails/lib/generators/layered_stack_rails/scaffold_generator.rb
|
182
189
|
- templates/root/layered_stack/rails/lib/generators/layered_stack_rails/templates/active_record/model/model.erb
|
@@ -187,6 +194,7 @@ files:
|
|
187
194
|
- templates/root/layered_stack/rails/lib/layered_stack_rails/version.rb
|
188
195
|
- templates/root/layered_stack/rails/rails/LICENSE.md
|
189
196
|
- templates/root/layered_stack/rails/rails/bin/layered_stack-rails
|
197
|
+
- templates/root/layered_stack/rails/rails/layered_stack-rails-0.0.1.gem
|
190
198
|
- templates/root/layered_stack/rails/rails/layered_stack-rails.gemspec
|
191
199
|
- templates/root/layered_stack/rails/rails/lib/generators/layered_stack_rails/scaffold_generator.rb
|
192
200
|
- templates/root/layered_stack/rails/rails/lib/generators/layered_stack_rails/templates/active_record/model/model.erb
|
Binary file
|