rails-excel 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog CHANGED
@@ -1,7 +1,8 @@
1
- 2012-01-02 Hallelujah - Ramihajamalala Hery <hery@rails-royce.org> v0.0.4 v1.0.0
1
+ 2012-01-02 Hallelujah - Ramihajamalala Hery <hery@rails-royce.org> v1.0.0
2
2
 
3
- * Remove builtin strategies
4
- * Deprecate Rails::Excel in favor of RailsExcel
3
+ * Fix requiring of strategies : v1.0.1
4
+ * Remove builtin strategies : v1.0.0
5
+ * Deprecate Rails::Excel in favor of RailsExcel v0.0.4
5
6
 
6
7
  2011-09-26 18:33 Ramihajamalala Hery <hery@rails-royce.org> v0.0.3
7
8
 
data/README.md CHANGED
@@ -11,7 +11,7 @@ Prior to 1.0.0, it comes with two builtin strategies based on the very good gems
11
11
  As of 1.0.0, there is no builtin strategy anymore. You should install at least one strategy :
12
12
 
13
13
  * [spreadsheet](https://github.com/hallelujah/rails-excel-spreadsheet-strategy)
14
- * [write_excel](https://github.com/hallelujah/rails-excel-write_excel-strategy)
14
+ * [write_excel](https://github.com/hallelujah/rails-excel-writeexcel-strategy)
15
15
  * [rubyXL](https://github.com/hallelujah/rails-excel-rubyXL-strategy)
16
16
 
17
17
 
@@ -1,7 +1,6 @@
1
1
  require 'activesupport'
2
2
  require "rails-excel/version"
3
3
  require 'rails-excel/delegation'
4
- require 'rails-excel/strategies'
5
4
  require 'rails-excel/template_handler'
6
5
 
7
6
  module Rails
@@ -1,3 +1,3 @@
1
1
  module RailsExcel
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-excel
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
9
+ - 1
10
10
  segments_generated: true
11
- version: 1.0.0
11
+ version: 1.0.1
12
12
  platform: ruby
13
13
  authors:
14
14
  - Ramihajamalala Hery
@@ -106,7 +106,6 @@ files:
106
106
  - TODO.md
107
107
  - lib/rails-excel.rb
108
108
  - lib/rails-excel/delegation.rb
109
- - lib/rails-excel/strategies.rb
110
109
  - lib/rails-excel/template_handler.rb
111
110
  - lib/rails-excel/version.rb
112
111
  - rails-excel.gemspec
@@ -1 +0,0 @@
1
- require 'rails-excel/strategies/write_excel'