chartist-rails 0.0.1 → 0.9.4

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
  SHA1:
3
- metadata.gz: e101d0c5a3e656b3c35fa0fcc900e233cc918c67
4
- data.tar.gz: 9a9c593a7d16904d65e91e49368d83f878206349
3
+ metadata.gz: 39bc9e3c657dc9ad2000b172c9e731e3dc8c244e
4
+ data.tar.gz: 47072fd165949cbb572999e912a9f14c1c0638ce
5
5
  SHA512:
6
- metadata.gz: 9e7f0936183b3956acb7188c3021d38c465feb56deb7614e8d63ba3b278c23c790d0b4942f56583f4813e32e9283396fd5aaa214449421baf42e647a3d240155
7
- data.tar.gz: 501906928ed3e849daef11e6861419670befb361b322bffb7d46b40d0748beec1d01fa44f01423d35911b35144e90e959f73d70f3f4d347463c1f2f448ae33b9
6
+ metadata.gz: 3cca900193de406b03f4266ed766f9ccee4eb1d2493807a12389cf0e79c9265fefbbf8b29ef2813ceece229f405d6a7454c2ac95a1232c95930e4e7931b6d81c
7
+ data.tar.gz: 956e00fe09f8f1c9a90ecbfaef29ef5df1c4b8456419d7f9f011b3786df40c38526a63723629da564fb882c9a49a51bdcc3bc287a975fb026c5575b1b317072f
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # Chartist::Rails
2
2
 
3
- This gem is a wrapper for the [Charist.js](https://github.com/gionkunz/chartist-js) library.
4
- It is not finished yet and will not work.
3
+ This gem is a wrapper for the [Charist.js](https://github.com/gionkunz/chartist-js) library (v0.9.4).
4
+ The state of this gem is that it is fully functional, but you can not change the settings yet.
5
+ I am currently working on a generator so that you can customize the settings file to your liking.
5
6
 
6
7
  ## Installation
7
8
 
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Chartist::Rails::VERSION
9
9
  spec.authors = ["AnthonyBobsin"]
10
10
  spec.email = ["bobsinj@gmail.com"]
11
- spec.summary = %q{Vendors the Chartist.js library for use with the Rails' assets pipeline.}
12
- spec.description = %q{}
11
+ spec.summary = %q{Vendors the Chartist.js library for use with the Rail's assets pipeline.}
12
+ spec.description = %q{Current using Chartist version 0.9.4}
13
13
  spec.homepage = "https://github.com/AnthonyBobsin/chartist-rails"
14
14
  spec.license = "MIT"
15
15
 
@@ -0,0 +1,11 @@
1
+ module Chartist
2
+ module Rails
3
+ class InstallSettings < Rails::Generators::Base
4
+ source_root File.expand_path('../../vendor/assets/stylesheets', __FILE__)
5
+
6
+ def migrate_settings
7
+ copy_file "settings/_chartist-settings.scss", "app/assets/stylesheets/_chartist-settings.scss"
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,5 +1,5 @@
1
1
  module Chartist
2
2
  module Rails
3
- VERSION = "0.0.1"
3
+ VERSION = "0.9.4"
4
4
  end
5
5
  end