layered_stack 0.0.6 → 0.0.7
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/version.rb +1 -1
- data/templates/backend/rails_template.rb +1 -1
- 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: 278a1ad19d814007462aa076920e8d3395590dc541774eae3032984f2c2142af
|
4
|
+
data.tar.gz: bef4bfbbed4c884c8c36d52a145f6d44366c13314bc0ae957b20bd43b029e626
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab12260f312330159bd3c026ca95be0e26cb3ef1710dada10478c2621c8ff153b944f6251d34e1c923f41ac294f3a54c759cf4868e517de334ccb7f48c67291a
|
7
|
+
data.tar.gz: 64acbbbe9781530b6fe4700375122c2b838065258d1b518082dcb3afc6b4516509cb6a196cb74d14ef74560b41b1634dd420552da32c82d8157008968b3a4325
|
@@ -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
|
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.7
|
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
|