Skip to content

Commit 436268b

Browse files
committed
1 parent 19bbe41 commit 436268b

File tree

6 files changed

+19
-13
lines changed

6 files changed

+19
-13
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: vite_rails
33
specs:
4-
vite_rails (2.0.2)
4+
vite_rails (2.0.3)
55
railties (>= 5.1, < 8)
66
vite_ruby (~> 1.0)
77

examples/rails/Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ gem 'jbuilder', '~> 2.7'
2626
# gem 'vite_rails', path: '../../vite_rails'
2727
# gem 'vite_plugin_legacy', path: '../../vite_plugin_legacy'
2828
# gem 'vite_ruby', path: '../../vite_ruby'
29+
gem 'vite_ruby', '~> 1.1.0'
2930
gem 'vite_plugin_legacy'
30-
gem 'vite_rails', '2.0.0'
31+
gem 'vite_rails', '~> 2.0.0'
3132

3233
# Use Active Storage variant
3334
# gem 'image_processing', '~> 1.2'

examples/rails/Gemfile.lock

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ GEM
8989
ffi (1.14.2)
9090
globalid (0.4.2)
9191
activesupport (>= 4.2.0)
92-
i18n (1.8.7)
92+
i18n (1.8.9)
9393
concurrent-ruby (~> 1.0)
9494
jbuilder (2.10.1)
9595
activesupport (>= 5.0.0)
@@ -107,7 +107,7 @@ GEM
107107
mimemagic (0.3.5)
108108
mini_mime (1.0.2)
109109
mini_portile2 (2.5.0)
110-
minitest (5.14.3)
110+
minitest (5.14.4)
111111
msgpack (1.3.3)
112112
nio4r (2.5.4)
113113
nokogiri (1.11.1)
@@ -209,15 +209,15 @@ GEM
209209
turbolinks-source (5.2.0)
210210
tzinfo (2.0.4)
211211
concurrent-ruby (~> 1.0)
212-
vite_plugin_legacy (0.5.2)
213-
vite_ruby
214-
vite_rails (2.0.0)
212+
vite_plugin_legacy (0.5.3)
213+
vite_ruby (~> 1.0)
214+
vite_rails (2.0.2)
215215
railties (>= 5.1)
216216
vite_ruby
217-
vite_ruby (1.0.5)
217+
vite_ruby (1.1.0)
218218
dry-cli (~> 0.6)
219-
rack-proxy (>= 0.6.1)
220-
zeitwerk
219+
rack-proxy (~> 0.6, >= 0.6.1)
220+
zeitwerk (~> 2.2)
221221
web-console (4.1.0)
222222
actionview (>= 6.0.0)
223223
activemodel (>= 6.0.0)
@@ -259,7 +259,8 @@ DEPENDENCIES
259259
turbolinks (~> 5)
260260
tzinfo-data
261261
vite_plugin_legacy
262-
vite_rails (= 2.0.0)
262+
vite_rails (~> 2.0.0)
263+
vite_ruby (~> 1.1.0)
263264
web-console (>= 3.3.0)
264265
webdrivers
265266
webpacker (~> 4.0)

vite_plugin_legacy/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## [0.5.3](https://github.com/ElMassimo/vite_ruby/compare/[email protected][email protected]) (2021-03-07)
22

3-
3+
- Add a bounded requirement to `vite_ruby` dependency.
44

55
## [0.5.2](https://github.com/ElMassimo/vite_ruby/compare/[email protected][email protected]) (2021-03-05)
66

vite_rails/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [2.0.3](https://github.com/ElMassimo/vite_ruby/compare/[email protected][email protected]) (2021-03-07)
2+
3+
- Add a bounded requirement to `vite_ruby` dependency.
4+
15
## Vite Rails 2.0.2 (2020-02-11)
26

37
- Automatically infer `app/javascript` as the `sourceCodeDir` if it exists.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module ViteRails
4-
VERSION = '2.0.2'
4+
VERSION = '2.0.3'
55
end

0 commit comments

Comments
 (0)