squared 0.4.24 → 0.5.0
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/CHANGELOG.md +62 -357
- data/README.md +1279 -650
- data/README.ruby.md +722 -0
- data/lib/squared/common/base.rb +8 -9
- data/lib/squared/common/format.rb +17 -24
- data/lib/squared/common/prompt.rb +38 -42
- data/lib/squared/common/shell.rb +29 -29
- data/lib/squared/common/system.rb +34 -37
- data/lib/squared/common/utils.rb +3 -28
- data/lib/squared/common.rb +2 -1
- data/lib/squared/config.rb +21 -21
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/application.rb +57 -93
- data/lib/squared/workspace/project/base.rb +354 -480
- data/lib/squared/workspace/project/docker.rb +175 -203
- data/lib/squared/workspace/project/git.rb +357 -498
- data/lib/squared/workspace/project/node.rb +138 -213
- data/lib/squared/workspace/project/python.rb +88 -306
- data/lib/squared/workspace/project/ruby.rb +220 -300
- data/lib/squared/workspace/project/support/class.rb +94 -288
- data/lib/squared/workspace/project.rb +0 -10
- data/lib/squared/workspace/repo.rb +53 -92
- data/lib/squared/workspace/series.rb +34 -32
- data/lib/squared/workspace/support/data.rb +3 -2
- data/lib/squared/workspace/support.rb +0 -1
- data/lib/squared/workspace.rb +1 -1
- data/squared.gemspec +5 -5
- metadata +7 -8
- data/lib/squared/common/class.rb +0 -110
- data/lib/squared/workspace/support/base.rb +0 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46ea608e0b2d67acb3d15eaf67d7c70fc4c301c1c7ebf0dbfa9fba2e9ccabe0b
|
|
4
|
+
data.tar.gz: 806aeee453718e1ff75f1f83c3f2ac763fd989cdddeca18b570a1d383c90484c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcde780730f2426af5561183d7d33d172f7dc7a096f9b21b3098593e18758a6a5bdb26e40ccabfaf7e0cf2e6963f067289c304e2e7626b85c15dd2c589e907e0
|
|
7
|
+
data.tar.gz: efcae50c9cfd39b72c013035df135533fee434e7985c3896d409a3d2d1850f16c2c7d2dd811e89431ddc46e2fbc64f752ece5bc8f1205d79d052bcec59fb7749
|
data/CHANGELOG.md
CHANGED
|
@@ -1,301 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
3
|
+
## [0.5.0] - 2025-06-16
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Node command exec through NVM was implemented.
|
|
8
|
+
- Git command options were updated to version 2.49.
|
|
8
9
|
|
|
9
10
|
### Changed
|
|
10
11
|
|
|
11
|
-
-
|
|
12
|
+
- Gem specification required Ruby version set to 2.5.
|
|
13
|
+
- Docker build options from ENV do not require dashes.
|
|
14
|
+
- Unused task descriptions are not generated.
|
|
15
|
+
- Class object shapes were declared in initialize.
|
|
16
|
+
- Project outdated interactive uses a more compact prompt.
|
|
17
|
+
- Workspace banner configuration uses a struct.
|
|
12
18
|
|
|
13
|
-
###
|
|
14
|
-
|
|
15
|
-
- Project base rescue error handling used reversed parameters.
|
|
16
|
-
- Project absolute paths did not append wildcard with trailing slash.
|
|
17
|
-
- Powershell commands did not escape nested double quotes.
|
|
18
|
-
- OptionPartition did not strip flags without a value.
|
|
19
|
-
- Project base method add did not use parent context.
|
|
20
|
-
- Application property pipe did not parse numeric values.
|
|
21
|
-
|
|
22
|
-
## [0.4.23] - 2025-10-11
|
|
23
|
-
|
|
24
|
-
### Fixed
|
|
25
|
-
|
|
26
|
-
- Node task outdated did not compare wanted and latest by semver.
|
|
27
|
-
- Project base method append_hash did not have target when joined.
|
|
28
|
-
- Docker build for compose and bake was completely incapacitated.
|
|
29
|
-
|
|
30
|
-
## [0.4.22] - 2025-10-08
|
|
31
|
-
|
|
32
|
-
### Added
|
|
33
|
-
|
|
34
|
-
- Node package managers support ENV platform options.
|
|
35
|
-
|
|
36
|
-
### Changed
|
|
37
|
-
|
|
38
|
-
- User installed Ruby is detected before system installed Ruby.
|
|
39
|
-
|
|
40
|
-
### Fixed
|
|
41
|
-
|
|
42
|
-
- Yarn classic package installs did not recognize dedupe flag.
|
|
43
|
-
- Node command outdated option prune called undefined method.
|
|
44
|
-
- OptionPartition method exist? called undefined method.
|
|
45
|
-
- Ruby method copy? did not perform Hash property override check.
|
|
46
|
-
- OptionPartition static method arg? did not detect single values.
|
|
47
|
-
|
|
48
|
-
## [0.4.21] - 2025-10-01
|
|
49
|
-
|
|
50
|
-
### Added
|
|
51
|
-
|
|
52
|
-
- Project base method variable_set was aliased to the name apply.
|
|
53
|
-
|
|
54
|
-
### Changed
|
|
55
|
-
|
|
56
|
-
- Project base method run visibility was changed to public.
|
|
57
|
-
- OptionPartition method uniq! returns self or nil.
|
|
58
|
-
|
|
59
|
-
### Fixed
|
|
60
|
-
|
|
61
|
-
- Docker attribute file did not search for nearest config.
|
|
62
|
-
- Project task run did not accept Proc or Method definitions.
|
|
63
|
-
- Gem command options were revalidated to 3.7.2.
|
|
64
|
-
- Bundler command options were revalidated to 2.7.2.
|
|
65
|
-
- Ruby class method bundle did not pass through commands.
|
|
66
|
-
- Ruby task ruby did not separate options and arguments.
|
|
67
|
-
- Pip commands uninstall and freeze did not filter options.
|
|
68
|
-
- Ruby command gem action update did not append packages.
|
|
69
|
-
- OptionPartition did not detect short options with a merged value.
|
|
70
|
-
- Gem commands option version did not use quotes.
|
|
71
|
-
- Git command pull action all used undefined delete_prefix! method.
|
|
72
|
-
- OptionPartition did not delete added values from extras.
|
|
73
|
-
- Python editable projects can override requirements detection.
|
|
74
|
-
- Project session method did delete short options with a merged value.
|
|
75
|
-
- Gem command install did not try to resolve local paths.
|
|
76
|
-
- Ruby commands did not always check for file target exists.
|
|
77
|
-
|
|
78
|
-
## [0.4.20] - 2025-09-14
|
|
79
|
-
|
|
80
|
-
### Changed
|
|
81
|
-
|
|
82
|
-
- Project banners when requested return consistent arguments.
|
|
83
|
-
|
|
84
|
-
### Fixed
|
|
85
|
-
|
|
86
|
-
- Workspace global as command alias used undefined parameter.
|
|
87
|
-
- Python did not separate dependency manager and build backend.
|
|
88
|
-
- Gem command build did not validate gemspec was located.
|
|
89
|
-
- Project class Ruby used glob methods not available in Ruby 2.4.
|
|
90
|
-
- Shell options support using boolean as values.
|
|
91
|
-
- Git command merge action commit failed when using interactive menu.
|
|
92
|
-
- NPM command line options did not support boolean flags.
|
|
93
|
-
|
|
94
|
-
## [0.4.19] - 2025-08-30
|
|
95
|
-
|
|
96
|
-
### Added
|
|
97
|
-
|
|
98
|
-
- Docker command options were updated to 28.3.
|
|
99
|
-
- Docker command compose action down was implemented.
|
|
100
|
-
- Docker containers conflicting with options can be prefixed with colon.
|
|
101
|
-
- Git command stash action push option message is interactive.
|
|
102
|
-
- Repo commands init and sync inherit any positional options.
|
|
103
|
-
|
|
104
|
-
### Fixed
|
|
105
|
-
|
|
106
|
-
- Docker did not ignore pre-defined file with COMPOSE_FILE.
|
|
107
|
-
- Docker did not support multiple config files.
|
|
108
|
-
- Repo did not transfer arguments to supplement tasks.
|
|
109
|
-
- Node public method version caused a recursive loop.
|
|
110
|
-
- Node command bump action minor without major was revised.
|
|
111
|
-
|
|
112
|
-
## [0.4.18] - 2025-08-23
|
|
113
|
-
|
|
114
|
-
### Added
|
|
115
|
-
|
|
116
|
-
- Repo command init can specify groups to pull from manifest.
|
|
117
|
-
- Repo command init can specify submodules to fetch.
|
|
118
|
-
- Ruby gem specification is auto-detected when not specified.
|
|
119
|
-
- Ruby task install:redownload with force deletes Gemfile.lock.
|
|
120
|
-
|
|
121
|
-
### Changed
|
|
122
|
-
|
|
123
|
-
- Workspace pipe and verbose interprets $DEBUG AND $VERBOSE modes.
|
|
124
|
-
- Git response status did not check for STDIN stream.
|
|
125
|
-
- Common format method puts_oe was renamed log_console.
|
|
126
|
-
- Global task git:all is disabled for single project workspaces.
|
|
127
|
-
|
|
128
|
-
## [0.3.14] - 2025-08-23
|
|
129
|
-
|
|
130
|
-
### Fixed
|
|
131
|
-
|
|
132
|
-
- Gem command exec did not separate command and arguments.
|
|
133
|
-
|
|
134
|
-
## [0.2.14] - 2025-08-23
|
|
135
|
-
|
|
136
|
-
### Fixed
|
|
137
|
-
|
|
138
|
-
- See `0.1.11`.
|
|
139
|
-
|
|
140
|
-
## [0.1.11] - 2025-08-23
|
|
141
|
-
|
|
142
|
-
### Fixed
|
|
143
|
-
|
|
144
|
-
- Node could not compare semantic versions above double digits.
|
|
145
|
-
- Node command bump did not reset major and minor trailing digits.
|
|
146
|
-
- Gems with a fourth semver digit was not compared.
|
|
147
|
-
- Workspace styles did not convert string keys to symbols.
|
|
148
|
-
|
|
149
|
-
## [0.4.17] - 2025-08-09
|
|
150
|
-
|
|
151
|
-
### Added
|
|
152
|
-
|
|
153
|
-
- Node repos can be initialized with specific package manager.
|
|
154
|
-
- Docker Engine options were updated to 28.0.
|
|
155
|
-
- Git commands pull and fetch action all was implemented.
|
|
156
|
-
- Git command reset action undo was implemented.
|
|
157
|
-
- Python command pip action upgrade was implemented.
|
|
158
|
-
- Git commands refs and files can use both pathspec and pattern.
|
|
159
|
-
- Git command submodule was implemented.
|
|
160
|
-
- Git command status was implemented.
|
|
161
|
-
- Git command switch action branch was implemented.
|
|
162
|
-
|
|
163
|
-
### Changed
|
|
164
|
-
|
|
165
|
-
- Project task events can be assigned to a single proc.
|
|
166
|
-
- Ruby task copy uses require paths from gem specification.
|
|
167
|
-
- Docker task build:bake was renamed bake:build.
|
|
168
|
-
- Project global tasks can be hidden and still expose subtasks.
|
|
169
|
-
- Repo command line options can be overriden with class method.
|
|
170
|
-
- Repo task all variable REPO_DRYRUN was replaced with REPO_STAGE.
|
|
171
|
-
- Repo command sync option no-fail was renamed fail.
|
|
172
|
-
|
|
173
|
-
### Fixed
|
|
174
|
-
|
|
175
|
-
- Gem command outdated did not work outside main project folder.
|
|
176
|
-
- Node command bump did not reset major and minor trailing digits.
|
|
177
|
-
- Docker image status message was displayed backwards.
|
|
178
|
-
|
|
179
|
-
## [0.4.16] - 2025-07-27
|
|
180
|
-
|
|
181
|
-
### Added
|
|
182
|
-
|
|
183
|
-
- Git command blame was implemented.
|
|
184
|
-
- Project property only for task filtering was implemented.
|
|
185
|
-
- Node command copy uses NPM pack to refresh development packages.
|
|
186
|
-
- Docker command bake action check was implemented.
|
|
187
|
-
- Ruby uses gem specification for name and version.
|
|
188
|
-
- Ruby constructor parameter gemspec was implemented.
|
|
189
|
-
|
|
190
|
-
### Changed
|
|
191
|
-
|
|
192
|
-
- Project boolean property readers were converted into accessors.
|
|
193
|
-
- Workspace hash singleton methods were relocated under Support.
|
|
194
|
-
- Project property version uses setter method for validation.
|
|
195
|
-
- Node command publish will prompt when tag is not semantic.
|
|
196
|
-
- Gem command push without args uses gemspec to locate archive.
|
|
197
|
-
- Prompts will exit process without raising a generic error.
|
|
198
|
-
|
|
199
|
-
### Fixed
|
|
200
|
-
|
|
201
|
-
- Gem command exec did not separate command and arguments.
|
|
202
|
-
- Project warning messages were not displayed for errors.
|
|
203
|
-
- Python command outdated did not load virtual env in Windows.
|
|
204
|
-
- Python virtual env original options are not modified.
|
|
205
|
-
- Node could not compare semantic versions above double digits.
|
|
206
|
-
|
|
207
|
-
## [0.4.15] - 2025-07-16
|
|
208
|
-
|
|
209
|
-
### Added
|
|
210
|
-
|
|
211
|
-
- Python command outdated option user was implemented.
|
|
212
|
-
- Git command commit action amend and amend-orig are interactive.
|
|
213
|
-
|
|
214
|
-
### Changed
|
|
215
|
-
|
|
216
|
-
- Ruby task copy does not guess Gem directory when version is used.
|
|
217
|
-
- Workspace hash-based data uses global method for key creation.
|
|
218
|
-
|
|
219
|
-
## [0.3.13] - 2025-07-16
|
|
220
|
-
|
|
221
|
-
### Fixed
|
|
222
|
-
|
|
223
|
-
- See `0.2.13`.
|
|
224
|
-
|
|
225
|
-
## [0.2.13] - 2025-07-16
|
|
226
|
-
|
|
227
|
-
### Fixed
|
|
228
|
-
|
|
229
|
-
- Project graph did not ignore circular references.
|
|
230
|
-
|
|
231
|
-
## [0.1.10] - 2025-07-16
|
|
232
|
-
|
|
233
|
-
### Fixed
|
|
234
|
-
|
|
235
|
-
- Module namespaces were not combined in the right order.
|
|
236
|
-
- Workspace group tasks were not registered.
|
|
237
|
-
|
|
238
|
-
## [0.4.14] - 2025-07-05
|
|
239
|
-
|
|
240
|
-
### Added
|
|
241
|
-
|
|
242
|
-
- Python command run for project scripts was implemented.
|
|
243
|
-
- Python command build and publish with PDM was implemented.
|
|
244
|
-
- Python command run detects program tool scripts.
|
|
245
|
-
- Git command stash action branch was implemented.
|
|
246
|
-
- Docker command compose action exec and run are interactive.
|
|
247
|
-
- Double dash can be used to end parsing for options.
|
|
248
|
-
- Python command outdated tasks with semver was implemented.
|
|
249
|
-
|
|
250
|
-
### Changed
|
|
251
|
-
|
|
252
|
-
- Ruby command rake supports running multiple indexes.
|
|
253
|
-
- Ruby private method rakefile when nil returns empty string.
|
|
254
|
-
- Ruby private method gempwd and rakepwd ignores current directory.
|
|
255
|
-
- Ruby command gem action update parameters are optional.
|
|
256
|
-
- Gem command install and uninstall can parse name and version.
|
|
257
|
-
- Kernel method Array is used in place of common method as_a.
|
|
258
|
-
- Ruby public method irb parameter load was renamed args.
|
|
259
|
-
|
|
260
|
-
### Fixed
|
|
261
|
-
|
|
262
|
-
- Box border did not print corners on Windows.
|
|
263
|
-
- Index character was not captured on Windows.
|
|
264
|
-
- Node command publish did not prompt for package to publish.
|
|
265
|
-
- Python command publish did not prompt for package to publish.
|
|
266
|
-
- Project confirmation accept dialog did not always quit.
|
|
267
|
-
- Git command add did not detect when no files were changed.
|
|
268
|
-
|
|
269
|
-
## [0.3.12] - 2025-07-05
|
|
270
|
-
|
|
271
|
-
### Fixed
|
|
272
|
-
|
|
273
|
-
- Gem command exec did not include gem option flag.
|
|
274
|
-
- Project graph did not print first level border.
|
|
275
|
-
- Node command update did not use correct event name.
|
|
276
|
-
- Gem command push did not validate gem file to publish.
|
|
277
|
-
- Node command publish did not publish when silent.
|
|
278
|
-
|
|
279
|
-
## [0.2.12] - 2025-07-05
|
|
280
|
-
|
|
281
|
-
### Fixed
|
|
282
|
-
|
|
283
|
-
- See `0.1.9`.
|
|
284
|
-
|
|
285
|
-
## [0.1.9] - 2025-07-05
|
|
286
|
-
|
|
287
|
-
### Added
|
|
19
|
+
### Removed
|
|
288
20
|
|
|
289
|
-
-
|
|
290
|
-
-
|
|
21
|
+
- Git commit hash identifier uses only a colon for a prefix.
|
|
22
|
+
- Common module for classes was delegated to support namespaces.
|
|
291
23
|
|
|
292
24
|
### Fixed
|
|
293
25
|
|
|
294
|
-
- Project
|
|
295
|
-
- Directory context was not threaded using JRuby.
|
|
296
|
-
- Index character was not captured on Windows.
|
|
297
|
-
- Common method is used for Kernel shell commands.
|
|
298
|
-
- Git did not highlight output for single commands.
|
|
26
|
+
- Project private variables external modification was revised.
|
|
299
27
|
|
|
300
28
|
## [0.4.13] - 2025-06-16
|
|
301
29
|
|
|
@@ -350,8 +78,6 @@
|
|
|
350
78
|
|
|
351
79
|
## [0.3.11] - 2025-05-15
|
|
352
80
|
|
|
353
|
-
### Fixed
|
|
354
|
-
|
|
355
81
|
- See `0.2.11`.
|
|
356
82
|
|
|
357
83
|
## [0.2.11] - 2025-05-15
|
|
@@ -614,8 +340,6 @@
|
|
|
614
340
|
|
|
615
341
|
## [0.3.7] - 2025-04-08
|
|
616
342
|
|
|
617
|
-
### Fixed
|
|
618
|
-
|
|
619
343
|
- See `0.2.7`.
|
|
620
344
|
|
|
621
345
|
## [0.2.7] - 2025-04-08
|
|
@@ -1037,71 +761,52 @@
|
|
|
1037
761
|
|
|
1038
762
|
- Changelog was created.
|
|
1039
763
|
|
|
1040
|
-
[0.
|
|
1041
|
-
[0.4.
|
|
1042
|
-
[0.4.
|
|
1043
|
-
[0.4.
|
|
1044
|
-
[0.4.
|
|
1045
|
-
[0.4.
|
|
1046
|
-
[0.4.
|
|
1047
|
-
[0.4.
|
|
1048
|
-
[0.4.
|
|
1049
|
-
[0.4.
|
|
1050
|
-
[0.4.
|
|
1051
|
-
[0.4.
|
|
1052
|
-
[0.4.
|
|
1053
|
-
[0.4.
|
|
1054
|
-
[0.4.
|
|
1055
|
-
[0.
|
|
1056
|
-
[0.
|
|
1057
|
-
[0.
|
|
1058
|
-
[0.
|
|
1059
|
-
[0.
|
|
1060
|
-
[0.
|
|
1061
|
-
[0.
|
|
1062
|
-
[0.4
|
|
1063
|
-
[0.
|
|
1064
|
-
[0.
|
|
1065
|
-
[0.3.
|
|
1066
|
-
[0.3.
|
|
1067
|
-
[0.
|
|
1068
|
-
[0.
|
|
1069
|
-
[0.
|
|
1070
|
-
[0.
|
|
1071
|
-
[0.
|
|
1072
|
-
[0.
|
|
1073
|
-
[0.
|
|
1074
|
-
[0.
|
|
1075
|
-
[0.3
|
|
1076
|
-
[0.
|
|
1077
|
-
[0.
|
|
1078
|
-
[0.
|
|
1079
|
-
[0.
|
|
1080
|
-
[0.
|
|
1081
|
-
[0.
|
|
1082
|
-
[0.
|
|
1083
|
-
[0.
|
|
1084
|
-
[0.
|
|
1085
|
-
[0.2
|
|
1086
|
-
[0.
|
|
1087
|
-
[0.
|
|
1088
|
-
[0.
|
|
1089
|
-
[0.2.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.5-ruby
|
|
1090
|
-
[0.2.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.4-ruby
|
|
1091
|
-
[0.2.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.3-ruby
|
|
1092
|
-
[0.2.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.2-ruby
|
|
1093
|
-
[0.2.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.1-ruby
|
|
1094
|
-
[0.2.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.0-ruby
|
|
1095
|
-
[0.1.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.11
|
|
1096
|
-
[0.1.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.10-ruby
|
|
1097
|
-
[0.1.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.9-ruby
|
|
1098
|
-
[0.1.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.8-ruby
|
|
1099
|
-
[0.1.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.7-ruby
|
|
1100
|
-
[0.1.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.6-ruby
|
|
1101
|
-
[0.1.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.5-ruby
|
|
1102
|
-
[0.1.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.4-ruby
|
|
1103
|
-
[0.1.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.3-ruby
|
|
1104
|
-
[0.1.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.2-ruby
|
|
1105
|
-
[0.1.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.1-ruby
|
|
1106
|
-
[0.1.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.0-ruby
|
|
1107
|
-
[0.0.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.0.12-ruby
|
|
764
|
+
[0.5.0]: https://github.com/anpham6/squared/releases/tag/v0.5.0-ruby
|
|
765
|
+
[0.4.13]: https://github.com/anpham6/squared/releases/tag/v0.4.13-ruby
|
|
766
|
+
[0.4.12]: https://github.com/anpham6/squared/releases/tag/v0.4.12-ruby
|
|
767
|
+
[0.4.11]: https://github.com/anpham6/squared/releases/tag/v0.4.11-ruby
|
|
768
|
+
[0.4.10]: https://github.com/anpham6/squared/releases/tag/v0.4.10-ruby
|
|
769
|
+
[0.4.9]: https://github.com/anpham6/squared/releases/tag/v0.4.9-ruby
|
|
770
|
+
[0.4.8]: https://github.com/anpham6/squared/releases/tag/v0.4.8-ruby
|
|
771
|
+
[0.4.7]: https://github.com/anpham6/squared/releases/tag/v0.4.7-ruby
|
|
772
|
+
[0.4.6]: https://github.com/anpham6/squared/releases/tag/v0.4.6-ruby
|
|
773
|
+
[0.4.5]: https://github.com/anpham6/squared/releases/tag/v0.4.5-ruby
|
|
774
|
+
[0.4.4]: https://github.com/anpham6/squared/releases/tag/v0.4.4-ruby
|
|
775
|
+
[0.4.3]: https://github.com/anpham6/squared/releases/tag/v0.4.3-ruby
|
|
776
|
+
[0.4.2]: https://github.com/anpham6/squared/releases/tag/v0.4.2-ruby
|
|
777
|
+
[0.4.1]: https://github.com/anpham6/squared/releases/tag/v0.4.1-ruby
|
|
778
|
+
[0.4.0]: https://github.com/anpham6/squared/releases/tag/v0.4.0-ruby
|
|
779
|
+
[0.3.11]: https://github.com/anpham6/squared/releases/tag/v0.3.11-ruby
|
|
780
|
+
[0.3.10]: https://github.com/anpham6/squared/releases/tag/v0.3.10-ruby
|
|
781
|
+
[0.3.9]: https://github.com/anpham6/squared/releases/tag/v0.3.9-ruby
|
|
782
|
+
[0.3.8]: https://github.com/anpham6/squared/releases/tag/v0.3.8-ruby
|
|
783
|
+
[0.3.7]: https://github.com/anpham6/squared/releases/tag/v0.3.7-ruby
|
|
784
|
+
[0.3.6]: https://github.com/anpham6/squared/releases/tag/v0.3.6-ruby
|
|
785
|
+
[0.3.5]: https://github.com/anpham6/squared/releases/tag/v0.3.5-ruby
|
|
786
|
+
[0.3.4]: https://github.com/anpham6/squared/releases/tag/v0.3.4-ruby
|
|
787
|
+
[0.3.3]: https://github.com/anpham6/squared/releases/tag/v0.3.3-ruby
|
|
788
|
+
[0.3.2]: https://github.com/anpham6/squared/releases/tag/v0.3.2-ruby
|
|
789
|
+
[0.3.1]: https://github.com/anpham6/squared/releases/tag/v0.3.1-ruby
|
|
790
|
+
[0.3.0]: https://github.com/anpham6/squared/releases/tag/v0.3.0-ruby
|
|
791
|
+
[0.2.11]: https://github.com/anpham6/squared/releases/tag/v0.2.11-ruby
|
|
792
|
+
[0.2.10]: https://github.com/anpham6/squared/releases/tag/v0.2.10-ruby
|
|
793
|
+
[0.2.9]: https://github.com/anpham6/squared/releases/tag/v0.2.9-ruby
|
|
794
|
+
[0.2.8]: https://github.com/anpham6/squared/releases/tag/v0.2.8-ruby
|
|
795
|
+
[0.2.7]: https://github.com/anpham6/squared/releases/tag/v0.2.7-ruby
|
|
796
|
+
[0.2.6]: https://github.com/anpham6/squared/releases/tag/v0.2.6-ruby
|
|
797
|
+
[0.2.5]: https://github.com/anpham6/squared/releases/tag/v0.2.5-ruby
|
|
798
|
+
[0.2.4]: https://github.com/anpham6/squared/releases/tag/v0.2.4-ruby
|
|
799
|
+
[0.2.3]: https://github.com/anpham6/squared/releases/tag/v0.2.3-ruby
|
|
800
|
+
[0.2.2]: https://github.com/anpham6/squared/releases/tag/v0.2.2-ruby
|
|
801
|
+
[0.2.1]: https://github.com/anpham6/squared/releases/tag/v0.2.1-ruby
|
|
802
|
+
[0.2.0]: https://github.com/anpham6/squared/releases/tag/v0.2.0-ruby
|
|
803
|
+
[0.1.8]: https://github.com/anpham6/squared/releases/tag/v0.1.8-ruby
|
|
804
|
+
[0.1.7]: https://github.com/anpham6/squared/releases/tag/v0.1.7-ruby
|
|
805
|
+
[0.1.6]: https://github.com/anpham6/squared/releases/tag/v0.1.6-ruby
|
|
806
|
+
[0.1.5]: https://github.com/anpham6/squared/releases/tag/v0.1.5-ruby
|
|
807
|
+
[0.1.4]: https://github.com/anpham6/squared/releases/tag/v0.1.4-ruby
|
|
808
|
+
[0.1.3]: https://github.com/anpham6/squared/releases/tag/v0.1.3-ruby
|
|
809
|
+
[0.1.2]: https://github.com/anpham6/squared/releases/tag/v0.1.2-ruby
|
|
810
|
+
[0.1.1]: https://github.com/anpham6/squared/releases/tag/v0.1.1-ruby
|
|
811
|
+
[0.1.0]: https://github.com/anpham6/squared/releases/tag/v0.1.0-ruby
|
|
812
|
+
[0.0.12]: https://github.com/anpham6/squared/releases/tag/v0.0.12-ruby
|