rubyvis_charts 0.1.5 → 0.1.6

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: 02a18444de0e779e5c879dab18e2845ba476f36e0e8fe1aed0b668014760a2f8
4
- data.tar.gz: 1e3aa49204f70b46c9a088b842af76b8332f2d2ada17591420289d75eed9a842
3
+ metadata.gz: 5bd2de2877bd88adbfa8ee7b74a75c7275488c6af995b6f243f2dd2e3b7ca42c
4
+ data.tar.gz: b7ba12834cc7fcf6eef64535f75ee797b8341520d9dcaf9bff5c7666c322aed0
5
5
  SHA512:
6
- metadata.gz: 1805ac380d68fc45005d1b82f0da32b2549ea140d072e1d6788ba808b719ef2893aee521360188e6d8a45bff6ee18374f1943342334d48faf97868856b821f43
7
- data.tar.gz: d67c631c598e1b621df1d6df44e51489758c8f735f38ceba5b41345f915ba241e6524d7637483b535052f22150faf62c73bd31cba95e8483132260cd18635064
6
+ metadata.gz: 0c4d050f06e28094dae338a02964656ea4828dac0b3f0b7f7596a02dcd04924ca676ac18bf4eb8af2cd660c2235096fc30fccd965005c2e28ca300adc94d4faa
7
+ data.tar.gz: 1214ce976fcb23e80ab96ccf61c50502e509ae7f8d78e36a3623b8ddf166b7e8a24d0f376c100089e62e0385e91c8f59c96228f01907473ed98c7713adeb27a4
data/Gemfile.lock CHANGED
@@ -1,28 +1,29 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubyvis_charts (0.1.5)
4
+ rubyvis_charts (0.1.6)
5
5
  activesupport
6
6
  rubyvis (~> 0.6.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (6.0.0)
11
+ activesupport (7.0.3)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
- i18n (>= 0.7, < 2)
14
- minitest (~> 5.1)
15
- tzinfo (~> 1.1)
16
- zeitwerk (~> 2.1, >= 2.1.8)
13
+ i18n (>= 1.6, < 2)
14
+ minitest (>= 5.1)
15
+ tzinfo (~> 2.0)
17
16
  byebug (10.0.2)
18
- concurrent-ruby (1.1.5)
17
+ concurrent-ruby (1.1.10)
19
18
  diff-lcs (1.3)
20
- i18n (1.6.0)
19
+ i18n (1.10.0)
21
20
  concurrent-ruby (~> 1.0)
22
- mini_portile2 (2.4.0)
23
- minitest (5.11.3)
24
- nokogiri (1.10.4)
25
- mini_portile2 (~> 2.4.0)
21
+ mini_portile2 (2.8.0)
22
+ minitest (5.16.1)
23
+ nokogiri (1.13.6)
24
+ mini_portile2 (~> 2.8.0)
25
+ racc (~> 1.4)
26
+ racc (1.6.0)
26
27
  rake (13.0.1)
27
28
  rspec (3.7.0)
28
29
  rspec-core (~> 3.7.0)
@@ -38,10 +39,8 @@ GEM
38
39
  rspec-support (~> 3.7.0)
39
40
  rspec-support (3.7.1)
40
41
  rubyvis (0.6.1)
41
- thread_safe (0.3.6)
42
- tzinfo (1.2.5)
43
- thread_safe (~> 0.1)
44
- zeitwerk (2.1.9)
42
+ tzinfo (2.0.4)
43
+ concurrent-ruby (~> 1.0)
45
44
 
46
45
  PLATFORMS
47
46
  ruby
@@ -49,7 +48,7 @@ PLATFORMS
49
48
  DEPENDENCIES
50
49
  bundler (~> 1.16)
51
50
  byebug (~> 10.0)
52
- nokogiri (~> 1.10.4)
51
+ nokogiri (~> 1.13.6)
53
52
  rake (~> 13.0)
54
53
  rspec (~> 3.0)
55
54
  rubyvis_charts!
@@ -84,7 +84,7 @@ module RubyvisCharts
84
84
  threshold_caption: DefaultArguments::THRESHOLD_CAPTION,
85
85
  **other
86
86
  )
87
- super(other)
87
+ super(**other)
88
88
 
89
89
  @dates = dates
90
90
  @marks = marks
@@ -13,7 +13,7 @@ module RubyvisCharts
13
13
  areas_colors: DefaultArguments::AREAS_COLORS,
14
14
  **other
15
15
  )
16
- super(other)
16
+ super(**other)
17
17
 
18
18
  @areas_colors = areas_colors
19
19
 
@@ -12,7 +12,7 @@ module RubyvisCharts
12
12
  bars_colors: DefaultArguments::BARS_COLORS,
13
13
  **other
14
14
  )
15
- super(other)
15
+ super(**other)
16
16
 
17
17
  @bars_padding = bars_padding
18
18
  @bars_colors = bars_colors
@@ -15,7 +15,7 @@ module RubyvisCharts
15
15
  percentage_key: :percentage,
16
16
  **other
17
17
  )
18
- super(other)
18
+ super(**other)
19
19
  @outer_radius = outer_radius
20
20
  @inner_radius = inner_radius
21
21
  @cones_colors = cones_colors
@@ -14,7 +14,7 @@ module RubyvisCharts
14
14
  bars_colors: DefaultArguments::BARS_COLORS,
15
15
  **other
16
16
  )
17
- super(other)
17
+ super(**other)
18
18
 
19
19
  @bars_padding = bars_padding
20
20
  @bars_colors = bars_colors
@@ -13,7 +13,7 @@ module RubyvisCharts
13
13
  lines_colors: DefaultArguments::LINES_COLORS,
14
14
  **other
15
15
  )
16
- super(other)
16
+ super(**other)
17
17
  @lines_colors = lines_colors
18
18
  initialize_lines!
19
19
  end
@@ -12,7 +12,7 @@ module RubyvisCharts
12
12
  bars_colors: DefaultArguments::BARS_COLORS,
13
13
  **other
14
14
  )
15
- super(other)
15
+ super(**other)
16
16
 
17
17
  @bars_padding = bars_padding
18
18
  @bars_colors = bars_colors
@@ -1,3 +1,3 @@
1
1
  module RubyvisCharts
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
@@ -1,4 +1,5 @@
1
1
  require 'active_support/time'
2
+ require 'securerandom'
2
3
  require 'rubyvis'
3
4
  require 'nokogiri'
4
5
  require "rubyvis_charts/version"
@@ -32,6 +32,6 @@ Gem::Specification.new do |spec|
32
32
  spec.add_development_dependency "bundler", "~> 1.16"
33
33
  spec.add_development_dependency "rake", "~> 13.0"
34
34
  spec.add_development_dependency "rspec", "~> 3.0"
35
- spec.add_development_dependency "nokogiri", "~> 1.10.4"
35
+ spec.add_development_dependency "nokogiri", "~> 1.13.6"
36
36
  spec.add_development_dependency "byebug", "~> 10.0"
37
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyvis_charts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andriy Solonyna
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-22 00:00:00.000000000 Z
11
+ date: 2023-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyvis
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 1.10.4
89
+ version: 1.13.6
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 1.10.4
96
+ version: 1.13.6
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: byebug
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -165,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
167
  requirements: []
168
- rubygems_version: 3.1.6
168
+ rubygems_version: 3.3.22
169
169
  signing_key:
170
170
  specification_version: 4
171
171
  summary: Rubyvis charts