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 +4 -3
- data/README.md +1 -1
- data/lib/rails-excel.rb +0 -1
- data/lib/rails-excel/version.rb +1 -1
- metadata +3 -4
- data/lib/rails-excel/strategies.rb +0 -1
data/Changelog
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
2012-01-02 Hallelujah - Ramihajamalala Hery <hery@rails-royce.org>
|
1
|
+
2012-01-02 Hallelujah - Ramihajamalala Hery <hery@rails-royce.org> v1.0.0
|
2
2
|
|
3
|
-
*
|
4
|
-
*
|
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-
|
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
|
|
data/lib/rails-excel.rb
CHANGED
data/lib/rails-excel/version.rb
CHANGED
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:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
9
|
+
- 1
|
10
10
|
segments_generated: true
|
11
|
-
version: 1.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'
|