actiontext 7.0.2.4 → 7.0.4

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: 8234828fd95456c72b4811010d8e4de3df7aa53462d71838d2ead1879b44e918
4
- data.tar.gz: 680c91eaca5d0bcadd1b188401ac48034e8d0db419c91e6fa33e6eb974405117
3
+ metadata.gz: 82de1e2be05cc3b13e988c6b414f4c352a8f1a116cddca68fd1bca06cd0ec7cb
4
+ data.tar.gz: fe16bd3209f7ceb9ab2694839697979d94bb64d96bb7686bd5a5a3b8ad8187aa
5
5
  SHA512:
6
- metadata.gz: e28182e532a9c53d20b002ac50515864a2d5218bfea1a280fc6291ad5a793595a59dc713159a2f44e78c8f33c3dbf78b09353bd18688cecda1842812c1bab9a6
7
- data.tar.gz: e4718a57d1feae09f8d8fca94b0ccdc5fecbee075e79d4be883aaff6a2fa29b15db2c8434b066c63ebcadee6e646a29cf819927c79fe9db86d0cddd22b4114bb
6
+ metadata.gz: 997f51c29f335af6073885d08b0c312a89bbea06eca533231ca851b450948184f96791a10d0dba23d09640985aa60086d44e66b570abbd53080868fc775192f1
7
+ data.tar.gz: 041b4833e2d2b16e6c49e338b6d851023748d62c35e95cc7e5dbca27c52d69f18a8c5e5e54ea5ca51f21687af4a3bb5b85efa1b0189e1e465eb84b406ba28a1f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## Rails 7.0.4 (September 09, 2022) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.0.3.1 (July 12, 2022) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 7.0.3 (May 09, 2022) ##
12
+
13
+ * No changes.
14
+
15
+
1
16
  ## Rails 7.0.2.4 (April 26, 2022) ##
2
17
 
3
18
  * No changes.
@@ -62,7 +62,7 @@ module ActionView::Helpers
62
62
  # * <tt>:class</tt> - Defaults to "trix-content" which ensures default styling is applied.
63
63
  # * <tt>:value</tt> - Adds a default value to the HTML input tag.
64
64
  # * <tt>[:data][:direct_upload_url]</tt> - Defaults to +rails_direct_uploads_url+.
65
- # * <tt>[:data][:blob_url_template]</tt> - Defaults to +rails_service_blob_url(":signed_id", ":filename")+.
65
+ # * <tt>[:data][:blob_url_template]</tt> - Defaults to <tt>rails_service_blob_url(":signed_id", ":filename")</tt>.
66
66
  #
67
67
  # ==== Example
68
68
  # form_with(model: @message) do |form|
@@ -25,7 +25,7 @@ module ActionText
25
25
  # first:
26
26
  # title: An Article
27
27
  #
28
- # Then declare the <tt>ActionText::RichText</tt> fixture data in
28
+ # Then declare the ActionText::RichText fixture data in
29
29
  # <tt>test/fixtures/action_text/rich_texts.yml</tt>, making sure to declare
30
30
  # each entry's <tt>record:</tt> key as a polymorphic relationship:
31
31
  #
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActionText
4
- # Returns the currently-loaded version of Action Text as a <tt>Gem::Version</tt>.
4
+ # Returns the currently loaded version of Action Text as a <tt>Gem::Version</tt>.
5
5
  def self.gem_version
6
6
  Gem::Version.new VERSION::STRING
7
7
  end
@@ -9,8 +9,8 @@ module ActionText
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
- TINY = 2
13
- PRE = "4"
12
+ TINY = 4
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -3,7 +3,7 @@
3
3
  require_relative "gem_version"
4
4
 
5
5
  module ActionText
6
- # Returns the currently-loaded version of Action Text as a <tt>Gem::Version</tt>.
6
+ # Returns the currently loaded version of Action Text as a <tt>Gem::Version</tt>.
7
7
  def self.version
8
8
  gem_version
9
9
  end
data/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@rails/actiontext",
3
- "version": "7.0.2-4",
3
+ "version": "7.0.4",
4
4
  "description": "Edit and display rich text in Rails applications",
5
- "main": "app/javascript/actiontext/index.js",
5
+ "main": "app/assets/javascripts/actiontext.js",
6
6
  "type": "module",
7
7
  "files": [
8
- "app/javascript/actiontext/*.js"
8
+ "app/assets/javascripts/*.js"
9
9
  ],
10
10
  "homepage": "https://rubyonrails.org/",
11
11
  "repository": {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actiontext
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.2.4
4
+ version: 7.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javan Makhmali
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-04-26 00:00:00.000000000 Z
13
+ date: 2022-09-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -18,56 +18,56 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 7.0.2.4
21
+ version: 7.0.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - '='
27
27
  - !ruby/object:Gem::Version
28
- version: 7.0.2.4
28
+ version: 7.0.4
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: activerecord
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 7.0.2.4
35
+ version: 7.0.4
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 7.0.2.4
42
+ version: 7.0.4
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: activestorage
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - '='
48
48
  - !ruby/object:Gem::Version
49
- version: 7.0.2.4
49
+ version: 7.0.4
50
50
  type: :runtime
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
54
  - - '='
55
55
  - !ruby/object:Gem::Version
56
- version: 7.0.2.4
56
+ version: 7.0.4
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: actionpack
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - '='
62
62
  - !ruby/object:Gem::Version
63
- version: 7.0.2.4
63
+ version: 7.0.4
64
64
  type: :runtime
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - '='
69
69
  - !ruby/object:Gem::Version
70
- version: 7.0.2.4
70
+ version: 7.0.4
71
71
  - !ruby/object:Gem::Dependency
72
72
  name: nokogiri
73
73
  requirement: !ruby/object:Gem::Requirement
@@ -160,10 +160,10 @@ licenses:
160
160
  - MIT
161
161
  metadata:
162
162
  bug_tracker_uri: https://github.com/rails/rails/issues
163
- changelog_uri: https://github.com/rails/rails/blob/v7.0.2.4/actiontext/CHANGELOG.md
164
- documentation_uri: https://api.rubyonrails.org/v7.0.2.4/
163
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.4/actiontext/CHANGELOG.md
164
+ documentation_uri: https://api.rubyonrails.org/v7.0.4/
165
165
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
166
- source_code_uri: https://github.com/rails/rails/tree/v7.0.2.4/actiontext
166
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.4/actiontext
167
167
  rubygems_mfa_required: 'true'
168
168
  post_install_message:
169
169
  rdoc_options: []
@@ -180,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
180
  - !ruby/object:Gem::Version
181
181
  version: '0'
182
182
  requirements: []
183
- rubygems_version: 3.1.6
183
+ rubygems_version: 3.3.3
184
184
  signing_key:
185
185
  specification_version: 4
186
186
  summary: Rich text framework.