ember-cli-rails 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae81b97b3eedcb84768b305b7c69d78ebf6d9a00ee3cf9b09e61d570fd82d72e
4
- data.tar.gz: 8faab1baa2ba94bb79520e2413c9a1dac154bc1ae17af17c41b91ebb176f99b0
3
+ metadata.gz: ed137eea5bdc56c6a89bbfaca9ccb77aa477c7d2c15c7cc363aea86148e194a9
4
+ data.tar.gz: 5b87d3079ad0dba80afc777be24fa7c374ffc44f6b9d14095b08848af41535e7
5
5
  SHA512:
6
- metadata.gz: d91b224e3a2dc5658153616c962ee6e035446f1656be54298fb95f3188350adc8e438fcb0d50ad69046ce066ae297aa2dc0146fcb2ca2a5a156b1c5a48188865
7
- data.tar.gz: 49d65db9d74a115f36ad74ef9fdcdd6450d7456448188190476089b83ced25cfda82fe7ef78d3b0f988c0c4e8c5258cff3b896c551c05ca50e03295460185a04
6
+ metadata.gz: e013d35a791907b4df054156abf9d111e36dd68ac1f0e1da2173310940a2ab657112619a5edf05109e64a427846936004cdb39e22fd83bb373d981c3fba1b709
7
+ data.tar.gz: e19ea5bd822a38c5004f1f8de21a6d5cf2866626e87132cdf8d1bfe40a7402f7edd90a3c4420bf6337fd4c4788dad4f1fbccdac91d5abbcaae04a95606401220
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  master
2
2
  ------
3
3
 
4
+ 0.12.0
5
+ ------
6
+
7
+ * Redirecting with trailing slash with query parameters
8
+ * Recognize Building notice as not an error
9
+ * Use keyword argument for options
10
+ * Add Ruby 2.7 & 3.0 into CI matrix
11
+ * Add missing gems that removed from stdlibs in Ruby 3.0.0
12
+ * Fix autoload deprecation in Rails 6
13
+ * Drop support for Rails versions 4.2, 5.0, 5.1, and 5.2
14
+ * Drop support for End-of-Lifed Ruby versions 2.3 and 2.4
15
+
4
16
  0.11.0
5
17
  ------
6
18
 
@@ -8,7 +20,8 @@ master
8
20
  * Redirect Ember routes with paths that don't end in `/` to corresponding paths
9
21
  that end in `/`.
10
22
  * Don't route requests to `/rails/active_storage` through the mounted Ember application.
11
-
23
+ * Only support for Ruby versions >= 2.5
24
+ * Only support for Rails versions >= 5.2
12
25
 
13
26
  0.10.0
14
27
  ------
data/README.md CHANGED
@@ -660,8 +660,8 @@ This project supports:
660
660
 
661
661
  This project supports:
662
662
 
663
- * Ruby versions `>= 2.2.0`
664
- * Rails versions `>=4.2.x`.
663
+ * Ruby versions `>= 2.5.0`
664
+ * Rails versions `>=5.2.x`.
665
665
 
666
666
  To learn more about supported versions and upgrades, read the [upgrading guide].
667
667
 
@@ -42,7 +42,8 @@ module EmberCli
42
42
  def build_errors
43
43
  error_lines.
44
44
  reject { |line| is_blank_or_backtrace?(line) }.
45
- reject { |line| is_deprecation_warning?(line) }
45
+ reject { |line| is_deprecation_warning?(line) }.
46
+ reject { |line| is_building_notice?(line) }
46
47
  end
47
48
 
48
49
  def has_build_errors?
@@ -57,6 +58,10 @@ module EmberCli
57
58
  line =~ /^(\e[^\s]+)?DEPRECATION:/
58
59
  end
59
60
 
61
+ def is_building_notice?(line)
62
+ line =~ /^(\e[^\s]+)?.\s(\e[^\s]+)?Building/
63
+ end
64
+
60
65
  def error_lines
61
66
  if error_file_exists?
62
67
  error_file.readlines
@@ -8,7 +8,7 @@ module EmberCli
8
8
  attr_accessor :watcher
9
9
 
10
10
  def app(name, **options)
11
- app = App.new(name, options)
11
+ app = App.new(name, **options)
12
12
  apps.store(name, app)
13
13
  end
14
14
 
@@ -1,10 +1,7 @@
1
1
  module EmberCli
2
2
  class Engine < Rails::Engine
3
3
  initializer "ember-cli-rails.setup" do
4
- require "ember_cli/ember_controller"
5
4
  require "ember_cli/route_helpers"
6
-
7
- ActionController::Base.helper EmberRailsHelper
8
5
  end
9
6
  end
10
7
  end
@@ -19,7 +19,7 @@ module ActionDispatch
19
19
  redirect_if_missing_trailing_slash = {
20
20
  constraints: EmberCli::TrailingSlashConstraint.new,
21
21
  to: redirect(-> (_, request) {
22
- File.join(request.original_fullpath, "")
22
+ File.join(request.path, "/?#{request.query_parameters.to_query}")
23
23
  }),
24
24
  }
25
25
 
@@ -1,7 +1,7 @@
1
1
  module EmberCli
2
2
  class TrailingSlashConstraint
3
3
  def matches?(request)
4
- !request.original_fullpath.to_s.ends_with?("/")
4
+ !request.original_fullpath.to_s.split("?").first.end_with?("/")
5
5
  end
6
6
  end
7
7
  end
@@ -1,3 +1,3 @@
1
1
  module EmberCli
2
- VERSION = "0.11.0".freeze
2
+ VERSION = "0.12.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ember-cli-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Pravosud
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-08-26 00:00:00.000000000 Z
13
+ date: 2023-02-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ember-cli-rails-assets
@@ -176,7 +176,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
176
176
  requirements:
177
177
  - - ">="
178
178
  - !ruby/object:Gem::Version
179
- version: 2.2.0
179
+ version: 2.5.0
180
180
  required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  requirements:
182
182
  - - ">="