ember-cli-rails 0.12.1 → 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: 5fa9fb0cad27fb25b846656f1e32590fb5a0383dc32f3f365faaa1c06c25beec
4
- data.tar.gz: 129284aab192ae018d5e3f97e5e7c2835fbc2bafa2f71bdf14e9b8b82edb3149
3
+ metadata.gz: '097b4299ffb3c7809ee87c5e84e5a053cde5872b1ca113369127c03f009e0482'
4
+ data.tar.gz: 29cd17391b62a9b5ab139d4ad88f13391524ae1bd5b834000b986c19a7c81faf
5
5
  SHA512:
6
- metadata.gz: a99430bb9a3b808ab97b9797bd230cacea5f65a8319fc86558bf7f056ca52bf516a098f616b4c6898cb61d535dbc814c7e3c4b0fa665b7795b0048895b3835f7
7
- data.tar.gz: 6bad6df934b5ab0bdc97297ef89843f475cfd1d492034d775352cd9ac3f08f582f1b1e1908b7a2c43bcdcb9ccdb6a2d65d2db7eebb375876cfc4501a3e2522ce
6
+ metadata.gz: 9b43b02eae5b58a6ac82893404952acca30f500f6570140f5f877857a606671f516ef750b9429c19babd14c45522e175188cf867f570c9565cb0ed56446a2257
7
+ data.tar.gz: 609df4876c70f9abbcf63b103e0ce11f68e873c9c9549eb6f505f859d141ac9e3e68150abb91a7a3944a49224bd5ad2e69943a67dc5ad705f8366ab03e964bcf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
- master
1
+ main
2
2
  ------
3
3
 
4
+ 0.12.3
5
+ ------
6
+
7
+ * Remove deprecation warning for Rails 8 (#617)
8
+
9
+ 0.12.2
10
+ ------
11
+
12
+ * Support Rack 3 and depend on Rack explicitly (#607)
13
+
4
14
  0.12.1
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
@@ -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
@@ -13,7 +13,7 @@ module EmberCli
13
13
  end
14
14
 
15
15
  def to_rack
16
- Rack::File.new(app.dist_path.to_s, rack_headers)
16
+ Rack::Files.new(app.dist_path.to_s, rack_headers)
17
17
  end
18
18
 
19
19
  def index_html
@@ -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.1".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.1
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: 2023-02-10 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
@@ -46,6 +46,26 @@ dependencies:
46
46
  - - ">="
47
47
  - !ruby/object:Gem::Version
48
48
  version: '4.2'
49
+ - !ruby/object:Gem::Dependency
50
+ name: rack
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '2.1'
56
+ - - "<"
57
+ - !ruby/object:Gem::Version
58
+ version: '4.0'
59
+ type: :runtime
60
+ prerelease: false
61
+ version_requirements: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '2.1'
66
+ - - "<"
67
+ - !ruby/object:Gem::Version
68
+ version: '4.0'
49
69
  - !ruby/object:Gem::Dependency
50
70
  name: terrapin
51
71
  requirement: !ruby/object:Gem::Requirement
@@ -136,11 +156,11 @@ dependencies:
136
156
  - - "~>"
137
157
  - !ruby/object:Gem::Version
138
158
  version: 0.6.0
139
- description:
140
159
  email:
141
160
  - pavel@pravosud.com
142
161
  - jonathan.jackson1@me.com
143
162
  - sean.p.doyle24@gmail.com
163
+ - tricknotes.rs@gmail.com
144
164
  executables: []
145
165
  extensions: []
146
166
  extra_rdoc_files: []
@@ -176,11 +196,10 @@ files:
176
196
  - lib/generators/ember/init/init_generator.rb
177
197
  - lib/generators/ember/init/templates/initializer.rb
178
198
  - lib/tasks/ember-cli.rake
179
- homepage: https://github.com/thoughtbot/ember-cli-rails
199
+ homepage: https://github.com/tricknotes/ember-cli-rails
180
200
  licenses:
181
201
  - MIT
182
202
  metadata: {}
183
- post_install_message:
184
203
  rdoc_options: []
185
204
  require_paths:
186
205
  - lib
@@ -195,8 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
214
  - !ruby/object:Gem::Version
196
215
  version: '0'
197
216
  requirements: []
198
- rubygems_version: 3.4.6
199
- signing_key:
217
+ rubygems_version: 4.0.6
200
218
  specification_version: 4
201
219
  summary: Integration between Ember CLI and Rails
202
220
  test_files: []