solid_apm 0.4.0 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8623eafef426a98627eef8810538b4ad1100a125eadcdb99bf2db0df21cadc1
4
- data.tar.gz: 386f31259d69c1ae17a182c1b6faf6368b8802c2bccf2985fa9e7853f9fc3ddb
3
+ metadata.gz: 97cdcafb0a31dea64161262374dcfd274cf450836668be0df7f4f5b5d7e70f58
4
+ data.tar.gz: bd0af22ac948642e3ecb63c9b4528011ddc7df7f9ea997caee806687eba7f25b
5
5
  SHA512:
6
- metadata.gz: 2cc471473ae3e41df512e12b6183c0410aaae6325f8a21db2f78e6f84caf22824b503e411eaa8f4508b40250511c9c4ea597f7de2929693ae30959977f6e4097
7
- data.tar.gz: 03e17274e463f8e60fe50c9d22220a5f930570da6000802d227a9da2f28b4a51e84ba06af1009d6e32479f2a54a3ea95c21999ec2b06d0f18d00d94ecd17c5aa
6
+ metadata.gz: 9c65419c5facee2826defd7428aff0c175e9a982879b4572867370e8b0e0acd265d33f3471c111dbcf64ec192ee9fbc34290f481ad2e79be7e10f2dfb71b9408
7
+ data.tar.gz: 000e091daa7ef33222824974c216d9cc4544d6be37ba6640c3eee87d18c16ced922c7b946d6368a95976f010f0cf6871892afaa229b6153ad6ba32be59f7b84c
data/README.md CHANGED
@@ -69,9 +69,8 @@ Contribution directions go here.
69
69
  ## Release
70
70
 
71
71
  ```shell
72
- gem bump -v minor
73
- bundle install && git add Gemfile.lock && git commit --amend --no-edit && git push
74
- gem tag -p
72
+ bin/bump major|minor|patch
73
+ # GitHub Actions will take care of the rest
75
74
  ```
76
75
 
77
76
  ## License
@@ -46,10 +46,10 @@ window.Stimulus.register('transaction-chart',
46
46
  path = path + "name=" + encodeURIComponent(this.nameValue);
47
47
  }
48
48
 
49
- const fromValue = document.querySelector('input[name="from_value"]').value
50
- const fromUnit = document.querySelector('select[name="from_unit"]').value;
49
+ const fromValue = document.querySelector('input[name="from_value"]')
50
+ const fromUnit = document.querySelector('select[name="from_unit"]');
51
51
  if (fromValue && fromUnit) {
52
- path = path + "&from_value=" + fromValue + "&from_unit=" + fromUnit;
52
+ path = path + "&from_value=" + fromValue.value + "&from_unit=" + fromUnit.value;
53
53
  }
54
54
 
55
55
  fetch(path)
@@ -1,3 +1,3 @@
1
1
  module SolidApm
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Francis Bastien