lazy_high_charts 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/init.rb +1 -4
- data/lib/lazy_high_charts.rb +2 -0
- data/lib/lazy_high_charts/high_charts_helper.rb +1 -1
- data/lib/lazy_high_charts/version.rb +1 -1
- data/rails/init.rb +2 -1
- metadata +2 -2
data/init.rb
CHANGED
@@ -1,9 +1,6 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
require 'LazyHighCharts'
|
3
3
|
require 'LazyHighCharts/high_charts_helper'
|
4
|
-
|
5
4
|
ActionView::Helpers::AssetTagHelper.register_javascript_expansion :high_charts => ["highcharts"]
|
6
|
-
|
7
|
-
|
8
|
-
ActionView::Base.send :include, LazyHighCharts::HighChartsHelper
|
5
|
+
ActionView::Base.send :include, LazyHighCharts::LayoutHelper
|
9
6
|
|
data/lib/lazy_high_charts.rb
CHANGED
data/rails/init.rb
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
# encoding: utf-8
|
2
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "..", "init"))
|