sinatra-hexacta 1.7.13 → 1.7.14
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/lib/sinatra/public/js/app.js +8 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e86000ada810a4d9c6da30085fcce0c7110ed2d0021fce60403621191710bcf1
|
4
|
+
data.tar.gz: 2d6399a6e611a630abff7309c9b7f644e0282b2ae24643b56b1d01da1ca2d4e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e04301baf89a9dd388f8030875f6e908a5cbdf4a347392393331276c2b85f77ec1808b01ed4d4763f0b0298935a4b4fcec91281d565557780fc8eed58f86689
|
7
|
+
data.tar.gz: 289221b4f09f731b5c8721128a2ad97e63de15dcc6d68c6e79f0b097aff44b93ecfe4af8a615124e712ff3fcc572082f2fc24acdfa6253b0c2f50e0c26a17355
|
@@ -684,6 +684,12 @@ function capitalize(word) {
|
|
684
684
|
if (word == "") {
|
685
685
|
return "";
|
686
686
|
} else {
|
687
|
-
|
687
|
+
const words = word.split(" ");
|
688
|
+
for (let i = 0; i < words.length; i++) {
|
689
|
+
if (words[i][0] != undefined) {
|
690
|
+
words[i] = words[i][0].toUpperCase() + words[i].substr(1);
|
691
|
+
}
|
692
|
+
}
|
693
|
+
return words.join(" ");
|
688
694
|
}
|
689
|
-
}
|
695
|
+
}
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-hexacta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marco Zanger
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2021-05-07 00:00:00.000000000 Z
|
@@ -251,7 +251,7 @@ homepage: https://rubygems.org/gems/sinatra-hexacta
|
|
251
251
|
licenses:
|
252
252
|
- MIT
|
253
253
|
metadata: {}
|
254
|
-
post_install_message:
|
254
|
+
post_install_message:
|
255
255
|
rdoc_options: []
|
256
256
|
require_paths:
|
257
257
|
- lib
|
@@ -266,8 +266,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
266
266
|
- !ruby/object:Gem::Version
|
267
267
|
version: '0'
|
268
268
|
requirements: []
|
269
|
-
rubygems_version: 3.0.
|
270
|
-
signing_key:
|
269
|
+
rubygems_version: 3.0.3.1
|
270
|
+
signing_key:
|
271
271
|
specification_version: 4
|
272
272
|
summary: Hexacta general tools!
|
273
273
|
test_files: []
|