ember-cli-rails 0.12.2 → 0.13.0.beta1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4542db3cfdf268ee5cd79a4e27e78e6da23c1df8aaace09749f232296bce5538
4
- data.tar.gz: 74fb3f059d0bdd592db17a088a0fd7233bab3482de8a0ea4420645824ad62a7f
3
+ metadata.gz: 89b0e32290ff43666d7f220c5cd91b0ea8fb6a544bd353f6a3f65d9c5daf9823
4
+ data.tar.gz: 20d38958d7e6efec4f53dcc36f0af29a00021402cef02247b157481cba158e1f
5
5
  SHA512:
6
- metadata.gz: 94b9009922c90cc010d69a6f71ae1157170b7fe1f7667839d5b042487bf44ae7982873bf13ed75080d83719c25a8504c3c940b4c9f66bd8578e961721a80355a
7
- data.tar.gz: f594c697004fab814ce5f31b0dad3bfc3f3cf7d6008bd93726b1c30bfd0f3fa64360c73f2b88c255ab8590d0f97f31c1d32c97ef676a3661a0d47a71b4f9be77
6
+ metadata.gz: 7e46c51bbd566dfdb337227ab884eab7d9a037fb8dc08ba1e4f970694ce0ef02eebe9f777683ef997efb638c0b0dafdad083507491f0831f2e67a4fa8ae4aef1
7
+ data.tar.gz: 58a951962724029db87ed4bf969e85bcef65babb964ffedc05a13c5093c0da31cce85a98724b41a38b4116b0b4fc94998d696aadd9da00cfc0c79da2742e1bb5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
- main
1
+ 0.13.0.beta1
2
2
  ------
3
3
 
4
+ * Support Ember applications generated with the Vite-based blueprint
5
+ (`ember-cli >= 6.8`), without `ember-cli-rails-addon`
6
+ * Require `ember-cli-rails-assets >= 0.8.0`, which adds Vite support to
7
+ `include_ember_script_tags`
8
+
9
+ 0.12.3
10
+ ------
11
+
12
+ * Remove deprecation warning for Rails 8 (#617)
13
+
4
14
  0.12.2
5
15
  ------
6
16
 
data/LICENSE.txt CHANGED
@@ -1,3 +1,4 @@
1
+ Copyright (c) 2024 Ryunosuke Sato
1
2
  Copyright (c) 2015 Sean Doyle and thoughtbot, inc.
2
3
  Copyright (c) 2014 Pavel Pravosud
3
4
 
data/README.md CHANGED
@@ -90,7 +90,8 @@ EmberCli.configure do |c|
90
90
  end
91
91
  ```
92
92
 
93
- Next, install the [ember-cli-rails-addon][addon]:
93
+ Next, if your Ember application uses the classic (Broccoli-based) build
94
+ (generated with `ember-cli < 6.8`), install the [ember-cli-rails-addon][addon]:
94
95
 
95
96
  ```bash
96
97
  $ cd path/to/frontend
@@ -111,6 +112,10 @@ For instance, if you're using the `0.6.x` version of the gem, specify
111
112
  }
112
113
  ```
113
114
 
115
+ If your Ember application uses the Vite-based build (generated with
116
+ `ember-cli >= 6.8`), do **not** install the addon: it is incompatible with the
117
+ Vite-based build, and `ember-cli-rails` does not require it there.
118
+
114
119
  [addon]: https://github.com/rondale-sc/ember-cli-rails-addon/
115
120
  [semver]: http://semver.org/
116
121
 
@@ -171,6 +176,17 @@ suites, configure the `default` task to depend on both `spec` and `ember:test`.
171
176
  task default: [:spec, "ember:test"]
172
177
  ```
173
178
 
179
+ **Vite-based applications**
180
+
181
+ When Rails is running in development mode, classic (Broccoli-based) Ember
182
+ applications are built with `ember build --watch`, so changes to the Ember
183
+ application are picked up automatically.
184
+
185
+ Vite-based Ember applications (generated with `ember-cli >= 6.8`) are instead
186
+ built once, synchronously, when they are first requested. To pick up changes
187
+ to the Ember application, restart the Rails server, or iterate on the Ember
188
+ application directly with its own development server (`npm start`).
189
+
174
190
  ## Deploy
175
191
 
176
192
  When Rails is running in production mode, EmberCLI-Rails stops doing runtime
@@ -301,7 +317,7 @@ Omitting these build assets can dramatically reduce slug size.
301
317
 
302
318
  A build-pack solution for this is discussed in [Issue #491][#491].
303
319
 
304
- [#491]: https://github.com/thoughtbot/ember-cli-rails/issues/491
320
+ [#491]: https://github.com/tricknotes/ember-cli-rails/issues/491
305
321
 
306
322
  ### Capistrano
307
323
 
@@ -449,6 +465,13 @@ actively supported method of serving EmberCLI applications.
449
465
  However, for the sake of backwards compatibility, `ember-cli-rails` supports
450
466
  injecting the EmberCLI-generated assets into an existing Rails layout.
451
467
 
468
+ **Note:** for Vite-based applications (generated with `ember-cli >= 6.8`),
469
+ use `include_ember_script_tags` on its own. It emits everything the
470
+ application needs to boot — the configuration `<meta>` tag, the stylesheet
471
+ and `modulepreload` links, and the ES module script tags — extracted from
472
+ the generated `index.html`. `include_ember_stylesheet_tags` only supports
473
+ classic (Broccoli-based) applications.
474
+
452
475
  Following the example above, configure the mounted EmberCLI application to be
453
476
  served by a custom controller (`ApplicationController`, in this case).
454
477
 
@@ -606,7 +629,7 @@ EmberCLI runners to clobber each others' work][#94].
606
629
 
607
630
  [Puma]: https://github.com/puma/puma
608
631
  [Unicorn]: https://rubygems.org/gems/unicorn
609
- [#94]: https://github.com/thoughtbot/ember-cli-rails/issues/94#issuecomment-77627453
632
+ [#94]: https://github.com/tricknotes/ember-cli-rails/issues/94#issuecomment-77627453
610
633
 
611
634
  ## `SKIP_EMBER`
612
635
 
@@ -654,7 +677,20 @@ if (environment === 'development') {
654
677
 
655
678
  This project supports:
656
679
 
657
- * EmberCLI versions `>= 1.13.13`
680
+ * EmberCLI versions `>= 1.13.13` using the classic (Broccoli-based) build,
681
+ together with [ember-cli-rails-addon][addon]
682
+ * EmberCLI versions `>= 6.8` using the Vite-based build, without the addon
683
+
684
+ The test suite currently exercises the `5.12.x` and `6.7.x` (classic) and
685
+ `7.0.x` (Vite) series.
686
+
687
+ Note the following limitations for Vite-based applications:
688
+
689
+ * `include_ember_script_tags` emits the full set of tags the application
690
+ needs to boot, stylesheets included; `include_ember_stylesheet_tags` is
691
+ classic-only and must not be called for Vite-based applications
692
+ * in development, the application is built synchronously on first request
693
+ instead of being rebuilt on file changes
658
694
 
659
695
  ## Ruby and Rails support
660
696
 
@@ -673,7 +709,7 @@ See the [CONTRIBUTING] document.
673
709
  Thank you, [contributors]!
674
710
 
675
711
  [CONTRIBUTING]: CONTRIBUTING.md
676
- [contributors]: https://github.com/thoughtbot/ember-cli-rails/graphs/contributors
712
+ [contributors]: https://github.com/tricknotes/ember-cli-rails/graphs/contributors
677
713
 
678
714
  ## License
679
715
 
@@ -689,21 +725,10 @@ ember-cli-rails was originally created by
689
725
  [Pavel Pravosud][rwz] and
690
726
  [Jonathan Jackson][rondale-sc].
691
727
 
692
- ember-cli-rails is maintained by [Sean Doyle][seanpdoyle] and [Jonathan
693
- Jackson][rondale-sc].
728
+ ember-cli-rails is maintained by [Sean Doyle][seanpdoyle], [Jonathan
729
+ Jackson][rondale-sc] and [Ryunosuke Sato][tricknotes].
694
730
 
695
731
  [rwz]: https://github.com/rwz
696
732
  [rondale-sc]: https://github.com/rondale-sc
697
733
  [seanpdoyle]: https://github.com/seanpdoyle
698
-
699
- ![thoughtbot](http://presskit.thoughtbot.com/images/thoughtbot-logo-for-readmes.svg)
700
-
701
- ember-cli-rails is maintained and funded by thoughtbot, inc.
702
- The names and logos for thoughtbot are trademarks of thoughtbot, inc.
703
-
704
- We love open source software!
705
- See [our other projects][community]
706
- or [hire us][hire] to help build your product.
707
-
708
- [community]: https://thoughtbot.com/community?utm_source=github
709
- [hire]: https://thoughtbot.com/hire-us?utm_source=github
734
+ [tricknotes]: https://github.com/tricknotes
data/lib/ember_cli/app.rb CHANGED
@@ -50,7 +50,14 @@ module EmberCli
50
50
  def build
51
51
  unless EmberCli.skip?
52
52
  if development?
53
- build_and_watch
53
+ if paths.vite?
54
+ # The Vite-based blueprint (`ember-cli >= 6.8`) has no
55
+ # `ember-cli-rails-addon` to manage the build lock, so build
56
+ # synchronously instead of watching for changes.
57
+ compile
58
+ else
59
+ build_and_watch
60
+ end
54
61
  elsif test?
55
62
  compile
56
63
  end
@@ -39,6 +39,13 @@ module EmberCli
39
39
  root.join("bower.json")
40
40
  end
41
41
 
42
+ # Apps generated with the Vite-based blueprint (`ember-cli >= 6.8`)
43
+ # ship a Vite config file at their root.
44
+ def vite?
45
+ %w[vite.config.mjs vite.config.js vite.config.ts].
46
+ any? { |config| root.join(config).exist? }
47
+ end
48
+
42
49
  def ember
43
50
  @ember ||= begin
44
51
  root.join("node_modules", "ember-cli", "bin", "ember").tap do |path|
@@ -23,8 +23,8 @@ module ActionDispatch
23
23
  }),
24
24
  }
25
25
 
26
- get(to, redirect_if_missing_trailing_slash)
27
- get(File.join(to, "(*rest)"), routing_options)
26
+ get(to, **redirect_if_missing_trailing_slash)
27
+ get(File.join(to, "(*rest)"), **routing_options)
28
28
  end
29
29
 
30
30
  mount_ember_assets(app_name, to: to)
@@ -34,7 +34,7 @@ module ActionDispatch
34
34
  app = ::EmberCli[app_name]
35
35
 
36
36
  if app.mountable?
37
- mount app.to_rack => to
37
+ mount app.to_rack, at: to
38
38
  end
39
39
  end
40
40
  end
@@ -1,3 +1,3 @@
1
1
  module EmberCli
2
- VERSION = "0.12.2".freeze
2
+ VERSION = "0.13.0.beta1".freeze
3
3
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ember-cli-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.2
4
+ version: 0.13.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Pravosud
8
8
  - Jonathan Jackson
9
9
  - Sean Doyle
10
- autorequire:
10
+ - Ryunosuke Sato
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-02-19 00:00:00.000000000 Z
13
+ date: 1980-01-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ember-cli-rails-assets
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 0.6.2
21
+ version: 0.8.0
22
22
  - - "<"
23
23
  - !ruby/object:Gem::Version
24
24
  version: '1.0'
@@ -28,7 +28,7 @@ dependencies:
28
28
  requirements:
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 0.6.2
31
+ version: 0.8.0
32
32
  - - "<"
33
33
  - !ruby/object:Gem::Version
34
34
  version: '1.0'
@@ -156,11 +156,11 @@ dependencies:
156
156
  - - "~>"
157
157
  - !ruby/object:Gem::Version
158
158
  version: 0.6.0
159
- description:
160
159
  email:
161
160
  - pavel@pravosud.com
162
161
  - jonathan.jackson1@me.com
163
162
  - sean.p.doyle24@gmail.com
163
+ - tricknotes.rs@gmail.com
164
164
  executables: []
165
165
  extensions: []
166
166
  extra_rdoc_files: []
@@ -196,11 +196,10 @@ files:
196
196
  - lib/generators/ember/init/init_generator.rb
197
197
  - lib/generators/ember/init/templates/initializer.rb
198
198
  - lib/tasks/ember-cli.rake
199
- homepage: https://github.com/thoughtbot/ember-cli-rails
199
+ homepage: https://github.com/tricknotes/ember-cli-rails
200
200
  licenses:
201
201
  - MIT
202
202
  metadata: {}
203
- post_install_message:
204
203
  rdoc_options: []
205
204
  require_paths:
206
205
  - lib
@@ -215,8 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
214
  - !ruby/object:Gem::Version
216
215
  version: '0'
217
216
  requirements: []
218
- rubygems_version: 3.4.1
219
- signing_key:
217
+ rubygems_version: 4.0.16
220
218
  specification_version: 4
221
219
  summary: Integration between Ember CLI and Rails
222
220
  test_files: []