ember-cli-rails 0.12.2 → 0.12.3

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: '097b4299ffb3c7809ee87c5e84e5a053cde5872b1ca113369127c03f009e0482'
4
+ data.tar.gz: 29cd17391b62a9b5ab139d4ad88f13391524ae1bd5b834000b986c19a7c81faf
5
5
  SHA512:
6
- metadata.gz: 94b9009922c90cc010d69a6f71ae1157170b7fe1f7667839d5b042487bf44ae7982873bf13ed75080d83719c25a8504c3c940b4c9f66bd8578e961721a80355a
7
- data.tar.gz: f594c697004fab814ce5f31b0dad3bfc3f3cf7d6008bd93726b1c30bfd0f3fa64360c73f2b88c255ab8590d0f97f31c1d32c97ef676a3661a0d47a71b4f9be77
6
+ metadata.gz: 9b43b02eae5b58a6ac82893404952acca30f500f6570140f5f877857a606671f516ef750b9429c19babd14c45522e175188cf867f570c9565cb0ed56446a2257
7
+ data.tar.gz: 609df4876c70f9abbcf63b103e0ce11f68e873c9c9549eb6f505f859d141ac9e3e68150abb91a7a3944a49224bd5ad2e69943a67dc5ad705f8366ab03e964bcf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  main
2
2
  ------
3
3
 
4
+ 0.12.3
5
+ ------
6
+
7
+ * Remove deprecation warning for Rails 8 (#617)
8
+
4
9
  0.12.2
5
10
  ------
6
11
 
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
@@ -301,7 +301,7 @@ Omitting these build assets can dramatically reduce slug size.
301
301
 
302
302
  A build-pack solution for this is discussed in [Issue #491][#491].
303
303
 
304
- [#491]: https://github.com/thoughtbot/ember-cli-rails/issues/491
304
+ [#491]: https://github.com/tricknotes/ember-cli-rails/issues/491
305
305
 
306
306
  ### Capistrano
307
307
 
@@ -606,7 +606,7 @@ EmberCLI runners to clobber each others' work][#94].
606
606
 
607
607
  [Puma]: https://github.com/puma/puma
608
608
  [Unicorn]: https://rubygems.org/gems/unicorn
609
- [#94]: https://github.com/thoughtbot/ember-cli-rails/issues/94#issuecomment-77627453
609
+ [#94]: https://github.com/tricknotes/ember-cli-rails/issues/94#issuecomment-77627453
610
610
 
611
611
  ## `SKIP_EMBER`
612
612
 
@@ -673,7 +673,7 @@ See the [CONTRIBUTING] document.
673
673
  Thank you, [contributors]!
674
674
 
675
675
  [CONTRIBUTING]: CONTRIBUTING.md
676
- [contributors]: https://github.com/thoughtbot/ember-cli-rails/graphs/contributors
676
+ [contributors]: https://github.com/tricknotes/ember-cli-rails/graphs/contributors
677
677
 
678
678
  ## License
679
679
 
@@ -689,21 +689,10 @@ ember-cli-rails was originally created by
689
689
  [Pavel Pravosud][rwz] and
690
690
  [Jonathan Jackson][rondale-sc].
691
691
 
692
- ember-cli-rails is maintained by [Sean Doyle][seanpdoyle] and [Jonathan
693
- Jackson][rondale-sc].
692
+ ember-cli-rails is maintained by [Sean Doyle][seanpdoyle], [Jonathan
693
+ Jackson][rondale-sc] and [Ryunosuke Sato][tricknotes].
694
694
 
695
695
  [rwz]: https://github.com/rwz
696
696
  [rondale-sc]: https://github.com/rondale-sc
697
697
  [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
698
+ [tricknotes]: https://github.com/tricknotes
@@ -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.12.3".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.12.3
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
@@ -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.6
220
218
  specification_version: 4
221
219
  summary: Integration between Ember CLI and Rails
222
220
  test_files: []