bullet_train 1.6.23 → 1.6.24
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/layouts/docs.html.erb +18 -3
- data/docs/upgrades/yolo-130.md +34 -2
- data/lib/bullet_train/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 708a366b5a3bdffa47379d99b19a3694541bf26c2040eacb762a4a67762e4bb0
|
4
|
+
data.tar.gz: 0d615787ce778281522e6d7c13c1ce56c83938df41b8fb6472d78dee3f6304f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20abc5aa4f3ff18243f7a182e8cda7dd732660eccf3c2e927b28bb9c1b8a4f757d8159b93a73fa0696fa5d9d691e0d2089b4c5274d96edb464357cdc4f6c45de
|
7
|
+
data.tar.gz: 0ecb17393d0c22c6b1700567571e12b08ed5675dc307267c8e3fe658d51b78fd30783675b1bfb3a1e6fb6b5040a17ed883c27d62e95532cbcb7ce3d31e58b66a
|
@@ -143,10 +143,15 @@
|
|
143
143
|
<% end %>
|
144
144
|
<% end %>
|
145
145
|
|
146
|
-
<%= render 'account/shared/menu/item', url: 'https://github.com/bullet-train-co/magic_test'
|
146
|
+
<%= render 'account/shared/menu/item', url: 'https://github.com/bullet-train-co/magic_test' do |p| %>
|
147
147
|
<% p.icon do %>
|
148
148
|
<i class="fal fa-check ti ti-video-camera"></i>
|
149
149
|
<% end %>
|
150
|
+
<% p.label do %>
|
151
|
+
<span>
|
152
|
+
Magic Test <i class="ti ti-new-window ml-1"></i>
|
153
|
+
</span>
|
154
|
+
<% end %>
|
150
155
|
<% end %>
|
151
156
|
|
152
157
|
<%= render 'account/shared/menu/item', url: '/docs/application-options', label: 'Application Options' do |p| %>
|
@@ -207,16 +212,26 @@
|
|
207
212
|
<% end %>
|
208
213
|
<% end %>
|
209
214
|
|
210
|
-
<%= render 'account/shared/menu/item', url: 'https://github.com/bullet-train-co/nice_partials'
|
215
|
+
<%= render 'account/shared/menu/item', url: 'https://github.com/bullet-train-co/nice_partials' do |p| %>
|
211
216
|
<% p.icon do %>
|
212
217
|
<i class="fal fa-swatchbook ti ti-widget"></i>
|
213
218
|
<% end %>
|
219
|
+
<% p.label do %>
|
220
|
+
<span>
|
221
|
+
Nice Partials <i class="ti ti-new-window ml-1"></i>
|
222
|
+
</span>
|
223
|
+
<% end %>
|
214
224
|
<% end %>
|
215
225
|
|
216
|
-
<%= render 'account/shared/menu/item', url: 'https://github.com/bullet-train-co/showcase'
|
226
|
+
<%= render 'account/shared/menu/item', url: 'https://github.com/bullet-train-co/showcase' do |p| %>
|
217
227
|
<% p.icon do %>
|
218
228
|
<i class="fal fa-swatchbook ti ti-panel"></i>
|
219
229
|
<% end %>
|
230
|
+
<% p.label do %>
|
231
|
+
<span>
|
232
|
+
Showcase <i class="ti ti-new-window ml-1"></i>
|
233
|
+
</span>
|
234
|
+
<% end %>
|
220
235
|
<% end %>
|
221
236
|
<% end %>
|
222
237
|
|
data/docs/upgrades/yolo-130.md
CHANGED
@@ -281,7 +281,39 @@ git add -A
|
|
281
281
|
git commit -m "Upgrading Bullet Train gems."
|
282
282
|
```
|
283
283
|
|
284
|
-
### 5.
|
284
|
+
### 5. Update `package.json``
|
285
|
+
|
286
|
+
Likewise, we'll need to manually update the version of the `@bullet_train/*` JavaScript packages in
|
287
|
+
`package.json`, by looking for these lines:
|
288
|
+
|
289
|
+
```json
|
290
|
+
"@bullet-train/bullet-train": "1.3.0",
|
291
|
+
"@bullet-train/bullet-train-sortable": "1.3.0",
|
292
|
+
"@bullet-train/fields": "1.3.0",
|
293
|
+
```
|
294
|
+
|
295
|
+
And upgrading the version numbers like this:
|
296
|
+
|
297
|
+
```json
|
298
|
+
"@bullet-train/bullet-train": "1.3.1",
|
299
|
+
"@bullet-train/bullet-train-sortable": "1.3.1",
|
300
|
+
"@bullet-train/fields": "1.3.1",
|
301
|
+
```
|
302
|
+
|
303
|
+
(As with the Gemfile, we have to do this since we didn't start explicitly tracking versions until
|
304
|
+
`1.4.0` and want to make sure that our gem versions match what the starter repo expects.)
|
305
|
+
|
306
|
+
Then run `yarn install`
|
307
|
+
|
308
|
+
Then go ahead and commit the changes.
|
309
|
+
|
310
|
+
```
|
311
|
+
git diff
|
312
|
+
git add -A
|
313
|
+
git commit -m "Upgrading Bullet Train js packages."
|
314
|
+
```
|
315
|
+
|
316
|
+
### 6. Run Tests.
|
285
317
|
|
286
318
|
```
|
287
319
|
rails test
|
@@ -290,7 +322,7 @@ rails test:system
|
|
290
322
|
|
291
323
|
If anything fails, investigate the failures and get things working again, and commit those changes.
|
292
324
|
|
293
|
-
###
|
325
|
+
### 7. Merge into `main` and delete the branch.
|
294
326
|
|
295
327
|
```
|
296
328
|
git checkout main
|
data/lib/bullet_train/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bullet_train
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.24
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Culver
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: standard
|