app_rail-steps 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/app_rail/steps/charts/dashboard.rb +5 -5
- data/lib/app_rail/steps/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d0a2c468bb3b453ff93e93ac803fe9324bf980cc163bd8414671da9a13555b2
|
4
|
+
data.tar.gz: 92466c77d31fc18967683165cfed515f4dafcb5fe223fd1b12e13978b1bb89ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5dc6f5f0cd3dde62e3f75bced4e6f89898979f7e866ded7480393bf38e09eaebe618c6ab4012b49c205b5b8e1abd8f371cb3bd5320a0b4281727974cb532b69
|
7
|
+
data.tar.gz: cc025b7a0775e2c4eeedeb46242f243a24146129a08e6d0edf65712037859983a35b0253301b85418742e8edf42ced5df45b6da712e897f4fa8d48a8a52e98a3
|
data/Gemfile.lock
CHANGED
@@ -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: :
|
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,
|