lazy_high_charts 1.1.4 → 1.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.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ * Jul 14, 2011
2
+ add support rails 3.1 rc4 now
3
+
1
4
  * Jul 13, 2011
2
5
  HighStock support
3
6
  remove some defaults
data/README.md CHANGED
@@ -2,6 +2,7 @@ LazyHighCharts
2
2
  =======
3
3
  LazyHighCharts is Rails 2.x/3.x Gem for displaying Highcharts graphs.
4
4
 
5
+ Now Support Rails 3.1 rc4 stable branch,Happy useful
5
6
  =======
6
7
  ### plugin support for rails 2.3.5 and rails 3
7
8
 
@@ -29,6 +30,12 @@ Usage
29
30
  In your Gemfile, add this line:
30
31
  gem 'lazy_high_charts'
31
32
 
33
+ For Rails 3.1
34
+ In your Gemfile, add this line:
35
+ gem 'lazy_high_charts', '~> 1.1.5'
36
+ then execuate command:
37
+ Rails g lazy_high_charts:install
38
+
32
39
  Usage in Controller:
33
40
 
34
41
  @h = LazyHighCharts::HighChart.new('graph') do |f|
@@ -4,8 +4,12 @@ module LazyHighCharts
4
4
 
5
5
  def install_highcharts(opts = nil)
6
6
  say_status("installing", "Highcharts javascript (github STOCK branch)", :green)
7
- get "https://raw.github.com/highslide-software/highcharts.com/stock/js/highcharts.src.js","public/javascripts/highcharts.js"
8
- rescue OpenURI::HTTPError
7
+ if ::Rails::VERSION::MAJOR == 3 && ::Rails::VERSION::MINOR >= 1
8
+ get "http://highcharts.com/js/highstock.js","app/assets/javascripts/highcharts.js"
9
+ else
10
+ get "https://raw.github.com/highslide-software/highcharts.com/stock/js/highcharts.src.js","public/javascripts/highcharts.js"
11
+ end
12
+ rescue OpenURI::HTTPError
9
13
  say_status("warning", "could not find Highcharts javascript file", :yellow)
10
14
  end
11
15
 
@@ -1,3 +1,3 @@
1
1
  module LazyHighCharts
2
- VERSION = "1.1.4"
2
+ VERSION = "1.1.5"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: lazy_high_charts
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.4
5
+ version: 1.1.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Miguel Michelson Martinez