apexcharts 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apexcharts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Setyadi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-05 00:00:00.000000000 Z
11
+ date: 2020-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: smart_kv
@@ -172,7 +172,6 @@ files:
172
172
  - lib/apex_charts/configuration.rb
173
173
  - lib/apex_charts/helper.rb
174
174
  - lib/apex_charts/options/annotations_options.rb
175
- - lib/apex_charts/options/axis_options.rb
176
175
  - lib/apex_charts/options/chart_options.rb
177
176
  - lib/apex_charts/options/data_labels_options.rb
178
177
  - lib/apex_charts/options/div_attributes.rb
@@ -207,7 +206,6 @@ files:
207
206
  - lib/apex_charts/utils/hash.rb
208
207
  - lib/apex_charts/version.rb
209
208
  - lib/apexcharts.rb
210
- - lib/apexcharts/prefix_with_apex.rb
211
209
  - vendor/assets/javascripts/apexcharts.js
212
210
  homepage: https://github.com/styd/apexcharts.rb
213
211
  licenses:
@@ -228,7 +226,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
226
  - !ruby/object:Gem::Version
229
227
  version: '0'
230
228
  requirements: []
231
- rubygems_version: 3.1.2
229
+ rubygems_version: 3.0.3
232
230
  signing_key:
233
231
  specification_version: 4
234
232
  summary: Awesome charts for your ruby app
@@ -1,19 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ApexCharts::Options
4
- class AxisOptions < ::SmartKv
5
- optional *%i[
6
- axisBorder
7
- axisTicks
8
- crosshairs
9
- floating
10
- labels
11
- max
12
- min
13
- tickAmount
14
- title
15
- tooltip
16
- type
17
- ]
18
- end
19
- end
@@ -1,20 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- warn <<~DEPRECATED
4
- Deprecation warning from ApexCharts.RB:
5
-
6
- Using
7
-
8
- gem 'apexcharts', require: 'apexcharts/prefix_with_apex'
9
-
10
- is DEPRECATED.
11
-
12
- Please use
13
-
14
- gem 'apexcharts', require: 'apex_charts/prefix_with_apex'
15
-
16
- instead.
17
-
18
- DEPRECATED
19
-
20
- require_relative '../apex_charts/prefix_with_apex'