volt-highcharts 0.1.4 → 0.1.5
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +7 -5
- data/lib/volt/highcharts/version.rb +1 -1
- data/{push → tasks/push} +2 -2
- data/volt-highcharts.gemspec +2 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 16795b2cf6d580c737eb122a816670718fef950a
|
|
4
|
+
data.tar.gz: 08200c4889d40cdc836c5bf5c428964db5aede25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65fb79cce9cd0a45f67a33f2d4807ba249ae8432f7ededa9e1cd6bb9addcf4900213c21652c70f0b0e15a70336070d46259ca540e843aeccc2f2e4e5e14864c4
|
|
7
|
+
data.tar.gz: cf8977f4faad06ad09ebad5afab96e20f938b36a411c986294a4e5e0598264f5f3abbb66529f50ec7d496da3153a467c4824bc6aba609aa7a4e0d63593ae7107
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -9,10 +9,10 @@ It depends on opal-highcharts, a gem which wraps most Highcharts and Highstock f
|
|
|
9
9
|
Highcharts is free for non-commercial use.
|
|
10
10
|
|
|
11
11
|
See
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
12
|
+
- https://www.highcharts.com
|
|
13
|
+
- https://github.com/balmoral/volt-highcharts-app
|
|
14
|
+
- https://github.com/balmoral/volt-highcharts
|
|
15
|
+
- https://github.com/balmoral/opal-highcharts
|
|
16
16
|
- https://rubygems.org/gems/volt-highcharts
|
|
17
17
|
- https://rubygems.org/gems/opal-highcharts
|
|
18
18
|
|
|
@@ -43,7 +43,7 @@ Next add volt-highcharts to the dependencies.rb file:
|
|
|
43
43
|
Pass a Ruby hash containing chart options in the appropriate view html file:
|
|
44
44
|
|
|
45
45
|
```html
|
|
46
|
-
<:highcharts
|
|
46
|
+
<:highcharts options="{{ chart_options }}" />
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
where `chart_options` is a Volt::Model or Hash provided by your controller or model.
|
|
@@ -141,6 +141,8 @@ However, as reactivity support is improved, there should be less need for direct
|
|
|
141
141
|
|
|
142
142
|
An example application can be found at https://github.com/balmoral/volt-highcharts-app.
|
|
143
143
|
|
|
144
|
+
See it running at https://volt-highcharts-app.herokuapp.com/.
|
|
145
|
+
|
|
144
146
|
## To do
|
|
145
147
|
|
|
146
148
|
1. chart option/configuration checks
|
data/{push → tasks/push}
RENAMED
data/volt-highcharts.gemspec
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
puts ">>>> lib=#{lib}"
|
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
5
|
require 'volt/highcharts/version'
|
|
5
6
|
|
|
@@ -19,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
|
19
20
|
spec.require_paths = ["lib"]
|
|
20
21
|
|
|
21
22
|
spec.required_ruby_version = '>= 2.1'
|
|
22
|
-
spec.add_runtime_dependency 'opal-highcharts', '~> 0.1.
|
|
23
|
+
spec.add_runtime_dependency 'opal-highcharts', '~> 0.1.2'
|
|
23
24
|
|
|
24
25
|
# spec.add_development_dependency "volt", "~> 0.9.5.pre3"
|
|
25
26
|
# spec.add_development_dependency 'rspec', '~> 3.2.0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: volt-highcharts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Colin Gunn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08-
|
|
11
|
+
date: 2015-08-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: opal-highcharts
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.1.
|
|
19
|
+
version: 0.1.2
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.1.
|
|
26
|
+
version: 0.1.2
|
|
27
27
|
description: Volt component providing reactive Ruby wrapping of Highcharts + Highstock
|
|
28
28
|
javascript library.
|
|
29
29
|
email:
|
|
@@ -45,9 +45,9 @@ files:
|
|
|
45
45
|
- app/highcharts/views/main/index.html
|
|
46
46
|
- lib/volt/highcharts.rb
|
|
47
47
|
- lib/volt/highcharts/version.rb
|
|
48
|
-
- push
|
|
49
48
|
- spec/spec_helper.rb
|
|
50
49
|
- spec/volt/highcharts_spec.rb
|
|
50
|
+
- tasks/push
|
|
51
51
|
- volt-highcharts.gemspec
|
|
52
52
|
homepage: https://github.com/balmoral/volt-highcharts
|
|
53
53
|
licenses:
|