phraseapp-in-context-editor-ruby 3.1.1 → 3.2.1
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 +4 -4
- data/.github/dependabot.yml +22 -0
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +14 -0
- data/CODEOWNERS +1 -1
- data/Gemfile.lock +14 -13
- data/README.md +17 -2
- data/examples/demo/Gemfile.lock +12 -23
- data/examples/demo/app/views/layouts/application.html.erb +1 -1
- data/examples/demo/config/initializers/content_security_policy.rb +19 -19
- data/lib/phraseapp-in-context-editor-ruby/version.rb +1 -1
- data/lib/phraseapp-in-context-editor-ruby/view_helpers.rb +2 -2
- data/package-lock.json +11 -7
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83395ff81d6ec99ed47ff9ff8edfa58f488ad71b36889007ff64367584ee0957
|
|
4
|
+
data.tar.gz: dad8bce3674f949005ffdcfa7d5e39b9d2fb30d3c063f4f1d7160c044aaf5684
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcdce2375237d620f718050d773d0354c53a3102dddefa3b7addd8f9be9a848fb8a2b92f71981155376428a8bb95f84672286cf71366968c6f1b9112e85fb51d
|
|
7
|
+
data.tar.gz: fae9d3c37ccd6dea23ef95130b358722f296f05566867514075ff8cbc97757a9f6f50aab194642ad79907938473eb2eb6f5f5f347dcabfa737ecfc8973564993
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
- package-ecosystem: "bundler"
|
|
4
|
+
directory: "/"
|
|
5
|
+
schedule:
|
|
6
|
+
interval: "weekly"
|
|
7
|
+
- package-ecosystem: "bundler"
|
|
8
|
+
directory: "/examples"
|
|
9
|
+
schedule:
|
|
10
|
+
interval: "weekly"
|
|
11
|
+
ignore:
|
|
12
|
+
- dependency-name: "*"
|
|
13
|
+
- package-ecosystem: "npm"
|
|
14
|
+
directory: "/"
|
|
15
|
+
schedule:
|
|
16
|
+
interval: "weekly"
|
|
17
|
+
- package-ecosystem: "npm"
|
|
18
|
+
directory: "/examples"
|
|
19
|
+
schedule:
|
|
20
|
+
interval: "weekly"
|
|
21
|
+
ignore:
|
|
22
|
+
- dependency-name: "*"
|
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
22
22
|
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
|
|
23
23
|
with:
|
|
24
24
|
node-version: 20
|
|
25
|
-
- uses: ruby/setup-ruby@
|
|
25
|
+
- uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
|
|
26
26
|
with:
|
|
27
27
|
ruby-version: "3.2" # Not needed with a .ruby-version file
|
|
28
28
|
|
data/.github/workflows/test.yml
CHANGED
|
@@ -8,7 +8,7 @@ jobs:
|
|
|
8
8
|
runs-on: ubuntu-latest
|
|
9
9
|
steps:
|
|
10
10
|
- uses: actions/checkout@v4
|
|
11
|
-
- uses: ruby/setup-ruby@
|
|
11
|
+
- uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
|
|
12
12
|
with:
|
|
13
13
|
ruby-version: ${{ matrix.ruby }}
|
|
14
14
|
- run: bundle install
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.2.1](https://github.com/phrase/phraseapp-in-context-editor-ruby/compare/v3.2.0...v3.2.1) (2025-09-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **SCM-615:** update cdn url ([#123](https://github.com/phrase/phraseapp-in-context-editor-ruby/issues/123)) ([2b1b873](https://github.com/phrase/phraseapp-in-context-editor-ruby/commit/2b1b8735b2a18f314e3cc6e41a06336403697894))
|
|
7
|
+
|
|
8
|
+
# [3.2.0](https://github.com/phrase/phraseapp-in-context-editor-ruby/compare/v3.1.1...v3.2.0) (2024-07-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Added nonce support ([#86](https://github.com/phrase/phraseapp-in-context-editor-ruby/issues/86)) ([e7df6f7](https://github.com/phrase/phraseapp-in-context-editor-ruby/commit/e7df6f7b279c3823dd8a99f0b5d6e2d025863ca7))
|
|
14
|
+
|
|
1
15
|
## [3.1.1](https://github.com/phrase/phraseapp-in-context-editor-ruby/compare/v3.1.0...v3.1.1) (2024-06-14)
|
|
2
16
|
|
|
3
17
|
|
data/CODEOWNERS
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
* @phrase/strings-
|
|
1
|
+
* @phrase/strings-create-manage
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
phraseapp-in-context-editor-ruby (3.
|
|
4
|
+
phraseapp-in-context-editor-ruby (3.2.0)
|
|
5
5
|
i18n (~> 1.0)
|
|
6
6
|
json (~> 2.0)
|
|
7
7
|
request_store (~> 1.2)
|
|
@@ -102,7 +102,7 @@ GEM
|
|
|
102
102
|
fiber-annotation
|
|
103
103
|
fiber-local
|
|
104
104
|
crass (1.0.6)
|
|
105
|
-
date (3.
|
|
105
|
+
date (3.4.1)
|
|
106
106
|
diff-lcs (1.5.0)
|
|
107
107
|
erubi (1.12.0)
|
|
108
108
|
faraday (2.7.10)
|
|
@@ -128,7 +128,7 @@ GEM
|
|
|
128
128
|
concurrent-ruby (~> 1.0)
|
|
129
129
|
io-event (1.3.2)
|
|
130
130
|
json (2.6.3)
|
|
131
|
-
loofah (2.
|
|
131
|
+
loofah (2.24.1)
|
|
132
132
|
crass (~> 1.0.2)
|
|
133
133
|
nokogiri (>= 1.12.0)
|
|
134
134
|
mail (2.8.1)
|
|
@@ -141,19 +141,19 @@ GEM
|
|
|
141
141
|
mini_mime (1.1.5)
|
|
142
142
|
minitest (5.19.0)
|
|
143
143
|
multi_json (1.15.0)
|
|
144
|
-
net-imap (0.3.
|
|
144
|
+
net-imap (0.3.9)
|
|
145
145
|
date
|
|
146
146
|
net-protocol
|
|
147
147
|
net-pop (0.1.2)
|
|
148
148
|
net-protocol
|
|
149
|
-
net-protocol (0.2.
|
|
149
|
+
net-protocol (0.2.2)
|
|
150
150
|
timeout
|
|
151
151
|
net-smtp (0.3.3)
|
|
152
152
|
net-protocol
|
|
153
153
|
nio4r (2.5.9)
|
|
154
|
-
nokogiri (1.
|
|
154
|
+
nokogiri (1.18.9-arm64-darwin)
|
|
155
155
|
racc (~> 1.4)
|
|
156
|
-
nokogiri (1.
|
|
156
|
+
nokogiri (1.18.9-x86_64-linux-gnu)
|
|
157
157
|
racc (~> 1.4)
|
|
158
158
|
octokit (4.25.1)
|
|
159
159
|
faraday (>= 1, < 3)
|
|
@@ -166,8 +166,8 @@ GEM
|
|
|
166
166
|
protocol-hpack (~> 1.4)
|
|
167
167
|
protocol-http (~> 0.18)
|
|
168
168
|
public_suffix (5.0.3)
|
|
169
|
-
racc (1.
|
|
170
|
-
rack (2.2.
|
|
169
|
+
racc (1.8.1)
|
|
170
|
+
rack (2.2.14)
|
|
171
171
|
rack-test (2.1.0)
|
|
172
172
|
rack (>= 1.3)
|
|
173
173
|
rails (7.0.7.2)
|
|
@@ -188,9 +188,9 @@ GEM
|
|
|
188
188
|
activesupport (>= 5.0.0)
|
|
189
189
|
minitest
|
|
190
190
|
nokogiri (>= 1.6)
|
|
191
|
-
rails-html-sanitizer (1.6.
|
|
191
|
+
rails-html-sanitizer (1.6.1)
|
|
192
192
|
loofah (~> 2.21)
|
|
193
|
-
nokogiri (
|
|
193
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
194
194
|
railties (7.0.7.2)
|
|
195
195
|
actionpack (= 7.0.7.2)
|
|
196
196
|
activesupport (= 7.0.7.2)
|
|
@@ -219,8 +219,8 @@ GEM
|
|
|
219
219
|
sawyer (0.9.2)
|
|
220
220
|
addressable (>= 2.3.5)
|
|
221
221
|
faraday (>= 0.17.3, < 3)
|
|
222
|
-
thor (1.
|
|
223
|
-
timeout (0.4.
|
|
222
|
+
thor (1.4.0)
|
|
223
|
+
timeout (0.4.3)
|
|
224
224
|
timers (4.3.5)
|
|
225
225
|
traces (0.11.1)
|
|
226
226
|
tzinfo (2.0.6)
|
|
@@ -232,6 +232,7 @@ GEM
|
|
|
232
232
|
|
|
233
233
|
PLATFORMS
|
|
234
234
|
arm64-darwin-22
|
|
235
|
+
arm64-darwin-24
|
|
235
236
|
x86_64-linux
|
|
236
237
|
|
|
237
238
|
DEPENDENCIES
|
data/README.md
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
To use phraseapp-in-context-editor-ruby with your application you have to:
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
- Sign up for a Phrase account: [https://app.phrase.com/signup](https://app.phrase.com/signup)
|
|
14
|
+
- Use the excellent [i18n](https://github.com/ruby-i18n/i18n) gem also used by [Rails](https://guides.rubyonrails.org/i18n.html)
|
|
15
15
|
|
|
16
16
|
### Demo
|
|
17
17
|
|
|
@@ -21,11 +21,13 @@ Login via the demo credentials `demo@phrase.com` / `phrase`
|
|
|
21
21
|
### Installation
|
|
22
22
|
|
|
23
23
|
#### NOTE: You can not use the old version of the ICE with integration versions of >2.0.0, you have to instead use 1.x.x versions as before
|
|
24
|
+
|
|
24
25
|
#### via Gem
|
|
25
26
|
|
|
26
27
|
```bash
|
|
27
28
|
gem install phraseapp-in-context-editor-ruby
|
|
28
29
|
```
|
|
30
|
+
|
|
29
31
|
#### via Bundler
|
|
30
32
|
|
|
31
33
|
Add it to your `Gemfile`
|
|
@@ -84,6 +86,7 @@ Old version of the ICE is not available since version 2.0.0. If you still would
|
|
|
84
86
|
#### Using the US Datacenter with ICE
|
|
85
87
|
|
|
86
88
|
In addition to the settings in your `config/initializers/phraseapp_in_context_editor.rb`, set the US datacenter to enable the ICE to work with the US endpoints.
|
|
89
|
+
|
|
87
90
|
```ruby
|
|
88
91
|
config.enabled = true
|
|
89
92
|
config.project_id = "YOUR_PROJECT_ID"
|
|
@@ -91,6 +94,18 @@ In addition to the settings in your `config/initializers/phraseapp_in_context_ed
|
|
|
91
94
|
config.datacenter = "us"
|
|
92
95
|
```
|
|
93
96
|
|
|
97
|
+
#### Using with CSP
|
|
98
|
+
|
|
99
|
+
The script will automatically get the nonce from `content_security_policy_nonce`
|
|
100
|
+
The content_security_policy.rb has to have `:strict_dynamic` for `policy.script_src` since we are loading more scripts dynamically because of our way of deploying
|
|
101
|
+
|
|
102
|
+
```ruby
|
|
103
|
+
policy.script_src :self, :https, :strict_dynamic
|
|
104
|
+
policy.style_src :self, :https
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
The `config.content_security_policy_nonce_directives = %w[script-src style-src]` can include `style-src` but this _might_ break some styling in some cases
|
|
108
|
+
|
|
94
109
|
### Browser support
|
|
95
110
|
|
|
96
111
|
This library might not work out of the box for some older browser or IE11. We recommend to add [Babel](https://github.com/babel/babel) to the build pipeline if those browser need to be supported.
|
data/examples/demo/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../..
|
|
3
3
|
specs:
|
|
4
|
-
phraseapp-in-context-editor-ruby (2.0
|
|
5
|
-
i18n (
|
|
6
|
-
json (
|
|
7
|
-
request_store (
|
|
4
|
+
phraseapp-in-context-editor-ruby (3.2.0)
|
|
5
|
+
i18n (~> 1.0)
|
|
6
|
+
json (~> 2.0)
|
|
7
|
+
request_store (~> 1.2)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
@@ -76,13 +76,9 @@ GEM
|
|
|
76
76
|
tzinfo (~> 2.0)
|
|
77
77
|
addressable (2.8.5)
|
|
78
78
|
public_suffix (>= 2.0.2, < 6.0)
|
|
79
|
-
autoprefixer-rails (10.4.13.0)
|
|
80
|
-
execjs (~> 2)
|
|
81
79
|
bindex (0.8.1)
|
|
82
80
|
bootsnap (1.16.0)
|
|
83
81
|
msgpack (~> 1.2)
|
|
84
|
-
bootstrap-sass (3.2.0.4)
|
|
85
|
-
sass (~> 3.2)
|
|
86
82
|
builder (3.2.4)
|
|
87
83
|
capybara (3.39.2)
|
|
88
84
|
addressable
|
|
@@ -100,8 +96,6 @@ GEM
|
|
|
100
96
|
irb (>= 1.5.0)
|
|
101
97
|
reline (>= 0.3.1)
|
|
102
98
|
erubi (1.12.0)
|
|
103
|
-
execjs (2.8.1)
|
|
104
|
-
ffi (1.15.5)
|
|
105
99
|
globalid (1.2.0)
|
|
106
100
|
activesupport (>= 6.1)
|
|
107
101
|
i18n (1.14.1)
|
|
@@ -141,15 +135,17 @@ GEM
|
|
|
141
135
|
net-smtp (0.3.3)
|
|
142
136
|
net-protocol
|
|
143
137
|
nio4r (2.5.9)
|
|
144
|
-
nokogiri (1.
|
|
138
|
+
nokogiri (1.18.4-arm64-darwin)
|
|
139
|
+
racc (~> 1.4)
|
|
140
|
+
nokogiri (1.18.4-x86_64-linux-gnu)
|
|
145
141
|
racc (~> 1.4)
|
|
146
142
|
psych (5.1.0)
|
|
147
143
|
stringio
|
|
148
144
|
public_suffix (5.0.3)
|
|
149
145
|
puma (5.6.7)
|
|
150
146
|
nio4r (~> 2.0)
|
|
151
|
-
racc (1.7.
|
|
152
|
-
rack (2.2.
|
|
147
|
+
racc (1.7.3)
|
|
148
|
+
rack (2.2.14)
|
|
153
149
|
rack-test (2.1.0)
|
|
154
150
|
rack (>= 1.3)
|
|
155
151
|
rails (7.0.7.2)
|
|
@@ -181,9 +177,6 @@ GEM
|
|
|
181
177
|
thor (~> 1.0)
|
|
182
178
|
zeitwerk (~> 2.5)
|
|
183
179
|
rake (13.0.6)
|
|
184
|
-
rb-fsevent (0.11.2)
|
|
185
|
-
rb-inotify (0.10.1)
|
|
186
|
-
ffi (~> 1.0)
|
|
187
180
|
rdoc (6.5.0)
|
|
188
181
|
psych (>= 4.0.0)
|
|
189
182
|
regexp_parser (2.8.1)
|
|
@@ -193,11 +186,6 @@ GEM
|
|
|
193
186
|
rack (>= 1.4)
|
|
194
187
|
rexml (3.2.6)
|
|
195
188
|
rubyzip (2.3.2)
|
|
196
|
-
sass (3.7.4)
|
|
197
|
-
sass-listen (~> 4.0.0)
|
|
198
|
-
sass-listen (4.0.0)
|
|
199
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
200
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
|
201
189
|
selenium-webdriver (4.10.0)
|
|
202
190
|
rexml (~> 3.2, >= 3.2.5)
|
|
203
191
|
rubyzip (>= 1.2.2, < 3.0)
|
|
@@ -210,6 +198,7 @@ GEM
|
|
|
210
198
|
activesupport (>= 5.2)
|
|
211
199
|
sprockets (>= 3.0.0)
|
|
212
200
|
sqlite3 (1.6.4-arm64-darwin)
|
|
201
|
+
sqlite3 (1.6.4-x86_64-linux)
|
|
213
202
|
stimulus-rails (1.2.2)
|
|
214
203
|
railties (>= 6.0.0)
|
|
215
204
|
stringio (3.0.8)
|
|
@@ -240,11 +229,11 @@ GEM
|
|
|
240
229
|
|
|
241
230
|
PLATFORMS
|
|
242
231
|
arm64-darwin-22
|
|
232
|
+
arm64-darwin-24
|
|
233
|
+
x86_64-linux
|
|
243
234
|
|
|
244
235
|
DEPENDENCIES
|
|
245
|
-
autoprefixer-rails
|
|
246
236
|
bootsnap
|
|
247
|
-
bootstrap-sass (~> 3.2.0)
|
|
248
237
|
capybara
|
|
249
238
|
debug
|
|
250
239
|
importmap-rails
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<%= csrf_meta_tags %>
|
|
7
7
|
<%= csp_meta_tag %>
|
|
8
8
|
|
|
9
|
-
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
9
|
+
<%= stylesheet_link_tag "application", "data-turbo-track": "reload", nonce: true %>
|
|
10
10
|
<%= javascript_importmap_tags %>
|
|
11
11
|
<%= load_in_context_editor %>
|
|
12
12
|
</head>
|
|
@@ -4,22 +4,22 @@
|
|
|
4
4
|
# See the Securing Rails Applications Guide for more information:
|
|
5
5
|
# https://guides.rubyonrails.org/security.html#content-security-policy-header
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
#
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
#
|
|
24
|
-
#
|
|
25
|
-
|
|
7
|
+
Rails.application.configure do
|
|
8
|
+
config.content_security_policy do |policy|
|
|
9
|
+
policy.default_src :self, :https
|
|
10
|
+
policy.font_src :self, :https, :data
|
|
11
|
+
policy.img_src :self, :https, :data
|
|
12
|
+
policy.object_src :none
|
|
13
|
+
policy.script_src :self, :https, :strict_dynamic
|
|
14
|
+
policy.style_src :self, :https
|
|
15
|
+
# Specify URI for violation reports
|
|
16
|
+
# policy.report_uri "/csp-violation-report-endpoint"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
# Generate session nonces for permitted importmap and inline scripts
|
|
20
|
+
config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s }
|
|
21
|
+
config.content_security_policy_nonce_directives = %w[script-src style-src]
|
|
22
|
+
|
|
23
|
+
# Report violations without enforcing the policy.
|
|
24
|
+
# config.content_security_policy_report_only = true
|
|
25
|
+
end
|
|
@@ -22,13 +22,13 @@ module PhraseApp
|
|
|
22
22
|
}.merge(opts)
|
|
23
23
|
|
|
24
24
|
snippet = <<-EOS
|
|
25
|
-
<script>
|
|
25
|
+
<script nonce='#{content_security_policy_nonce}'>
|
|
26
26
|
window.PHRASEAPP_CONFIG = #{configuration.to_json};
|
|
27
27
|
(function() {
|
|
28
28
|
let phraseapp = document.createElement('script');
|
|
29
29
|
phraseapp.type = 'module';
|
|
30
30
|
phraseapp.async = true;
|
|
31
|
-
phraseapp.src = "https://
|
|
31
|
+
phraseapp.src = "https://cdn.phrase.com/strings/plugins/editor/latest/ice/index.js";
|
|
32
32
|
let script = document.getElementsByTagName('script')[0];
|
|
33
33
|
script.parentNode.insertBefore(phraseapp, script);
|
|
34
34
|
})();
|
data/package-lock.json
CHANGED
|
@@ -684,12 +684,13 @@
|
|
|
684
684
|
}
|
|
685
685
|
},
|
|
686
686
|
"node_modules/braces": {
|
|
687
|
-
"version": "3.0.
|
|
688
|
-
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.
|
|
689
|
-
"integrity": "sha512-
|
|
687
|
+
"version": "3.0.3",
|
|
688
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
689
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
690
690
|
"dev": true,
|
|
691
|
+
"license": "MIT",
|
|
691
692
|
"dependencies": {
|
|
692
|
-
"fill-range": "^7.
|
|
693
|
+
"fill-range": "^7.1.1"
|
|
693
694
|
},
|
|
694
695
|
"engines": {
|
|
695
696
|
"node": ">=8"
|
|
@@ -1230,10 +1231,11 @@
|
|
|
1230
1231
|
}
|
|
1231
1232
|
},
|
|
1232
1233
|
"node_modules/fill-range": {
|
|
1233
|
-
"version": "7.
|
|
1234
|
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.
|
|
1235
|
-
"integrity": "sha512-
|
|
1234
|
+
"version": "7.1.1",
|
|
1235
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
1236
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
1236
1237
|
"dev": true,
|
|
1238
|
+
"license": "MIT",
|
|
1237
1239
|
"dependencies": {
|
|
1238
1240
|
"to-regex-range": "^5.0.1"
|
|
1239
1241
|
},
|
|
@@ -1691,6 +1693,7 @@
|
|
|
1691
1693
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
1692
1694
|
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
1693
1695
|
"dev": true,
|
|
1696
|
+
"license": "MIT",
|
|
1694
1697
|
"engines": {
|
|
1695
1698
|
"node": ">=0.12.0"
|
|
1696
1699
|
}
|
|
@@ -6347,6 +6350,7 @@
|
|
|
6347
6350
|
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
6348
6351
|
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
6349
6352
|
"dev": true,
|
|
6353
|
+
"license": "MIT",
|
|
6350
6354
|
"dependencies": {
|
|
6351
6355
|
"is-number": "^7.0.0"
|
|
6352
6356
|
},
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phraseapp-in-context-editor-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Phrase
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -103,6 +103,7 @@ extensions: []
|
|
|
103
103
|
extra_rdoc_files: []
|
|
104
104
|
files:
|
|
105
105
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
106
|
+
- ".github/dependabot.yml"
|
|
106
107
|
- ".github/workflows/close_inactive_issues.yml"
|
|
107
108
|
- ".github/workflows/release.yml"
|
|
108
109
|
- ".github/workflows/test.yml"
|
|
@@ -224,7 +225,7 @@ homepage: https://phrase.com
|
|
|
224
225
|
licenses:
|
|
225
226
|
- MIT
|
|
226
227
|
metadata: {}
|
|
227
|
-
post_install_message:
|
|
228
|
+
post_install_message:
|
|
228
229
|
rdoc_options: []
|
|
229
230
|
require_paths:
|
|
230
231
|
- lib
|
|
@@ -239,8 +240,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
239
240
|
- !ruby/object:Gem::Version
|
|
240
241
|
version: 1.3.6
|
|
241
242
|
requirements: []
|
|
242
|
-
rubygems_version: 3.4.
|
|
243
|
-
signing_key:
|
|
243
|
+
rubygems_version: 3.4.19
|
|
244
|
+
signing_key:
|
|
244
245
|
specification_version: 4
|
|
245
246
|
summary: Translation management solution for web and mobile applications
|
|
246
247
|
test_files: []
|