app_rail-steps 0.2.7 → 0.2.8

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: c2d5bad1ddf33cb2a28dd8fb15796f908b637f596e65ba339990abd6e023a37d
4
- data.tar.gz: 1d8608a1a47a3dfae2ab1f2adb641fe91a1958adf1482097daa6519fd093f050
3
+ metadata.gz: 1d0a2c468bb3b453ff93e93ac803fe9324bf980cc163bd8414671da9a13555b2
4
+ data.tar.gz: 92466c77d31fc18967683165cfed515f4dafcb5fe223fd1b12e13978b1bb89ff
5
5
  SHA512:
6
- metadata.gz: 8a5bc64794f64cbce9f8804d184562f8f05fccd54e68b4091521ca43955fb294c4fbb7f36e38ee47e92834df7ce204edfec01cd5aa3ab1c7ad1ca124450ba603
7
- data.tar.gz: 4b5f215882c55f047d3fc6053846e70ab8414b86061a51e66afcbaf83015e72cb3680e8ec1a75d0e4b958e9a5f036f45ff50a6d29d642dafd8ee55e0dd58460d
6
+ metadata.gz: e5dc6f5f0cd3dde62e3f75bced4e6f89898979f7e866ded7480393bf38e09eaebe618c6ab4012b49c205b5b8e1abd8f371cb3bd5320a0b4281727974cb532b69
7
+ data.tar.gz: cc025b7a0775e2c4eeedeb46242f243a24146129a08e6d0edf65712037859983a35b0253301b85418742e8edf42ced5df45b6da712e897f4fa8d48a8a52e98a3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- app_rail-steps (0.2.7)
4
+ app_rail-steps (0.2.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -6,8 +6,8 @@ module AppRail
6
6
  module Dashboard
7
7
  def ar_charts_dashboard_statistic(id:, title:, text:)
8
8
  {
9
- id: id,
10
- chartType: :none,
9
+ id: id.to_s,
10
+ chartType: :statistic,
11
11
  title: title,
12
12
  text: text
13
13
  }.compact
@@ -15,7 +15,7 @@ module AppRail
15
15
 
16
16
  def ar_charts_dashboard_line_chart(id:, title:, values:, text: nil, footer: nil)
17
17
  {
18
- id: id,
18
+ id: id.to_s,
19
19
  chartType: :line,
20
20
  title: title,
21
21
  text: text,
@@ -26,7 +26,7 @@ module AppRail
26
26
 
27
27
  def ar_charts_dashboard_bar_chart(id:, title:, values:)
28
28
  {
29
- id: id,
29
+ id: id.to_s,
30
30
  chartType: :bar,
31
31
  title: title,
32
32
  chartValues: values
@@ -35,7 +35,7 @@ module AppRail
35
35
 
36
36
  def ar_charts_dashboard_bar_pie(id:, title:, values:, light_colors: nil, dark_colors: nil)
37
37
  {
38
- id: id,
38
+ id: id.to_s,
39
39
  chartType: :pie,
40
40
  title: title,
41
41
  chartValues: values,
@@ -2,6 +2,6 @@
2
2
 
3
3
  module AppRail
4
4
  module Steps
5
- VERSION = "0.2.7"
5
+ VERSION = "0.2.8"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_rail-steps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brooke-Smith