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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/sinatra/public/js/app.js +8 -2
  3. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9442918dfbdf3103399851ffc5cf217db244d54a9a4436475265670d4b5d9f12
4
- data.tar.gz: fb05f2ed7fe89f3d73376deae491da86f17d2159fef4af57d6ed8300c4312d4a
3
+ metadata.gz: e86000ada810a4d9c6da30085fcce0c7110ed2d0021fce60403621191710bcf1
4
+ data.tar.gz: 2d6399a6e611a630abff7309c9b7f644e0282b2ae24643b56b1d01da1ca2d4e8
5
5
  SHA512:
6
- metadata.gz: '03498f2aeaf15dab435335d3dc6d578735dad5acb423bf7f5dbbc06125719d33b74eb38020ef6f6be2920f6663ff61c8bc5871d22fac2626b89220b6f2beba9c'
7
- data.tar.gz: e28c9b4eb0126c08795e723cf3f7c01a1b7f90bf450f4df03052ea47a5a00c1a6d1012fcd5938c3e3070a82ce9e676d5bcc5b569701054086f993f7236539de9
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
- return word[0].toUpperCase() + word.slice(1).toLowerCase();
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.13
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.6
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: []