squared 0.2.0 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 447c24bc317440fcf3f5b8e8c8f542f5e8f7641e3b548c5ee0204ba948460881
4
- data.tar.gz: 1f048b1de055cd375e9e50f18361ef61a26c87602bb56a5f40245951faf05358
3
+ metadata.gz: ae7095bd3b6c80ac081ead2d7416fddd1f36b43ebcd94231058b1d8e172506b0
4
+ data.tar.gz: '0296f829c74cee76bcf72bf90c1b47e0d63747adf8cd790b7c3964795d4806ad'
5
5
  SHA512:
6
- metadata.gz: bf73faecb83832adfa1cbb21212939a93cc2fa133c4a13d24f008eb432cbc663a198294a944b35449921902fa3045cfa581839e52bea6723703c95772e537e05
7
- data.tar.gz: a9db1c7dfd58750be1285fb1c2b39f9c087a3488560c6c2d35eb77939f69753127b2d97121450c5409f8b0c7b7fd821cd722291d57cabc0c5a7930f50ae338fb
6
+ metadata.gz: 3a4831abda159ce464a8ba38e3e2f16b232d6a95f84139f7ee21c6317917837eb5bed85177ab0f47131e749b63d5ee8662bcff5a48a96388e2c55c46df32b235
7
+ data.tar.gz: 25be7c05ccacd04b11daed4ce393c4a882535939c060aa2b5a24b7e515a2f3b984467e4e3f58ab5ee8b76876107bf1f04cbf7de4d7c0625eb8c690a31045e052
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.1] - 2025-01-08
4
+
5
+ ### Fixed
6
+
7
+ - Ruby command options were misquoted.
8
+
3
9
  ## [0.2.0] - 2025-01-07
4
10
 
5
11
  ### Added
@@ -145,6 +151,7 @@
145
151
 
146
152
  - Changelog was created.
147
153
 
154
+ [0.2.1]: https://github.com/anpham6/squared/releases/tag/v0.2.1-ruby
148
155
  [0.2.0]: https://github.com/anpham6/squared/releases/tag/v0.2.0-ruby
149
156
  [0.1.3]: https://github.com/anpham6/squared/releases/tag/v0.1.3-ruby
150
157
  [0.1.2]: https://github.com/anpham6/squared/releases/tag/v0.1.2-ruby
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Squared
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
@@ -367,7 +367,7 @@ module Squared
367
367
  'n', 'bindir', 'g', 'file', 'i', 'install-dir'
368
368
  cmd << quote_option($1, basepath($2))
369
369
  when 'p', 'http-proxy', 's', 'source'
370
- cmd << shell_quote($1, $2)
370
+ cmd << quote_option($1, $2)
371
371
  when 'bulk-threshold'
372
372
  cmd << basic_option($1, $2) if $2.to_i > 0
373
373
  else
@@ -561,7 +561,7 @@ module Squared
561
561
  when 'path', 'gemfile', 'binstubs', 'target-rbconfig'
562
562
  target << quote_option($1, basepath($2))
563
563
  when 'standalone', 'with', 'without', 'g', 'group'
564
- target << shell_quote($1, $2)
564
+ target << quote_option($1, $2)
565
565
  when 'retry', 'j', 'jobs'
566
566
  target << basic_option($1, $2) if $2.to_i > 0
567
567
  else
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: squared
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - An Pham
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-07 00:00:00.000000000 Z
10
+ date: 2025-01-09 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rake