lazy_high_charts 1.0.7 → 1.0.8

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.
@@ -0,0 +1,15 @@
1
+ # encoding: utf-8
2
+
3
+ require 'lazy_high_charts'
4
+ require 'lazy_high_charts/high_charts_helper.rb'
5
+
6
+ require 'rails'
7
+
8
+ module LazyHighCharts
9
+ class Railtie < Rails::Railtie
10
+ initializer 'lazy_high_charts.initialize', :after => :after_initialize do
11
+ ActionView::Base.send :include, LazyHighCharts::LayoutHelper
12
+ ActionView::Base.send(:include, LazyHighCharts::LayoutHelper)
13
+ end
14
+ end
15
+ end
@@ -1,3 +1,3 @@
1
1
  module LazyHighCharts
2
- VERSION = "1.0.7"
2
+ VERSION = "1.0.8"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 7
9
- version: 1.0.7
8
+ - 8
9
+ version: 1.0.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Miguel Michelson Martinez
@@ -100,6 +100,7 @@ files:
100
100
  - lib/lazy_high_charts.rb
101
101
  - lib/lazy_high_charts/high_chart.rb
102
102
  - lib/lazy_high_charts/high_charts_helper.rb
103
+ - lib/lazy_high_charts/railtie.rb
103
104
  - lib/lazy_high_charts/version.rb
104
105
  - rails/init.rb
105
106
  - spec/high_chart_spec.rb