chartkick 0.0.5 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of chartkick might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 767dd1cab24f21380089082f3f0af87e9dd51d0e
4
- data.tar.gz: 1c143055458826b2bdc11f8b35ba1c3e2df405ac
3
+ metadata.gz: 66237e187aaf3b68447fd5e033088607e9b27e70
4
+ data.tar.gz: fb2adba85238880690bb7316e8129f0636e27371
5
5
  SHA512:
6
- metadata.gz: d9c9efc901592c5d1fc8c11b08b69dbf0a8103486a73bbd676783ba7affa94ebf4d4a4ff70cc772220d1cea4f2dda64832b862684bafd0d60ca806d48a64f881
7
- data.tar.gz: 208e649ebd495a999f06134ce1d634cbca47128048e38719270c14e53e84b57d29c3caac706ad69bba6f2d7f15bc1522b7c819fa1004d799be620dfc74daabe3
6
+ metadata.gz: 983f8b225d6ab4b1d4a96a7a10e7f77435159b63c2dc7ca61a632dfce77cd22395472f4bbd76d5d2b499329f0d832238c069238dc5adbb703aeb7a08e04b1c35
7
+ data.tar.gz: dfdf35ea722f1be79d0562ca54289489b48ab72f7351c78f2190570a1642deb0e275e3c87c8560d9f74c46af3cbc6a604939e2d1a42ee2460f05d5a0e630e76c
@@ -0,0 +1,12 @@
1
+ ## 1.0.0
2
+
3
+ - Use semantic versioning (no changes)
4
+
5
+ ## 0.0.5
6
+
7
+ - Removed `:min => 0` default for charts with negative values
8
+ - Show legend when data given in `{:name => "", :data => {}}` format
9
+
10
+ ## 0.0.4
11
+
12
+ - Fix for `Uncaught ReferenceError: Chartkick is not defined` when chartkick.js is included in the `<head>`
data/README.md CHANGED
@@ -126,6 +126,12 @@ Check out [chartkick.js](https://github.com/ankane/chartkick.js).
126
126
 
127
127
  Chartkick uses [iso8601.js](https://github.com/Do/iso8601.js) to parse dates and times.
128
128
 
129
+ ## History
130
+
131
+ View the [changelog](https://github.com/ankane/chartkick/blob/master/CHANGELOG.md)
132
+
133
+ Chartkick follows [Semantic Versioning](http://semver.org/)
134
+
129
135
  ## Contributing
130
136
 
131
137
  1. Fork it
@@ -2,7 +2,7 @@
2
2
  * Chartkick.js
3
3
  * Create beautiful Javascript charts with minimal code
4
4
  * https://github.com/ankane/chartkick.js
5
- * v0.0.5
5
+ * v1.0.0
6
6
  * MIT License
7
7
  */
8
8
 
@@ -1,3 +1,3 @@
1
1
  module Chartkick
2
- VERSION = "0.0.5"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chartkick
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-05-15 00:00:00.000000000 Z
11
+ date: 2013-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -60,6 +60,7 @@ extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
62
  - .gitignore
63
+ - CHANGELOG.md
63
64
  - Gemfile
64
65
  - LICENSE.txt
65
66
  - README.md