to_xls-rails 0.1.0 → 0.1.1
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 +5 -0
- data/README.rdoc +9 -7
- data/VERSION +1 -1
- data/to_xls-rails.gemspec +3 -1
- metadata +15 -4
data/CHANGELOG
ADDED
data/README.rdoc
CHANGED
|
@@ -39,18 +39,20 @@ This simple plugin gives you the ability to call to_xls to a collection of activ
|
|
|
39
39
|
|
|
40
40
|
== Dependencies
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
gem install spreadsheet
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
== Install
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
with gem
|
|
48
|
+
gem install to_xls-rails
|
|
49
|
+
|
|
50
|
+
with bundler
|
|
51
|
+
gem 'to_xls-rails'
|
|
52
|
+
bundle install
|
|
51
53
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
+
with git
|
|
55
|
+
git clone http://github.com/wenke/to_xls-rails.git
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
== Note
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/to_xls-rails.gemspec
CHANGED
|
@@ -13,7 +13,9 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
|
|
14
14
|
s.files = Dir["{lib,test}/**/*", "[a-zA-Z]*", "init.rb"] - ["Gemfile.lock"]
|
|
15
15
|
s.require_path = "lib"
|
|
16
|
+
|
|
17
|
+
s.add_development_dependency('spreadsheet', '~>0.6.5')
|
|
16
18
|
|
|
17
|
-
s.
|
|
19
|
+
s.platform = Gem::Platform::RUBY
|
|
18
20
|
s.required_rubygems_version = ">= 1.3.4"
|
|
19
21
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: to_xls-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- LiangWenKe
|
|
@@ -12,8 +12,18 @@ cert_chain: []
|
|
|
12
12
|
|
|
13
13
|
date: 2011-03-20 00:00:00 +08:00
|
|
14
14
|
default_executable:
|
|
15
|
-
dependencies:
|
|
16
|
-
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: spreadsheet
|
|
18
|
+
prerelease: false
|
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
20
|
+
none: false
|
|
21
|
+
requirements:
|
|
22
|
+
- - ~>
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: 0.6.5
|
|
25
|
+
type: :development
|
|
26
|
+
version_requirements: *id001
|
|
17
27
|
description: This simple plugin gives you the ability to call to_csv to a collection of activerecords. The builder options are the same as to_json / to_xml, except for the :include.
|
|
18
28
|
email: liangwenke8@gmail.com
|
|
19
29
|
executables: []
|
|
@@ -24,6 +34,7 @@ extra_rdoc_files: []
|
|
|
24
34
|
|
|
25
35
|
files:
|
|
26
36
|
- lib/to_xls-rails.rb
|
|
37
|
+
- CHANGELOG
|
|
27
38
|
- init.rb
|
|
28
39
|
- MIT-LICENSE
|
|
29
40
|
- Rakefile
|
|
@@ -53,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
64
|
version: 1.3.4
|
|
54
65
|
requirements: []
|
|
55
66
|
|
|
56
|
-
rubyforge_project:
|
|
67
|
+
rubyforge_project:
|
|
57
68
|
rubygems_version: 1.6.2
|
|
58
69
|
signing_key:
|
|
59
70
|
specification_version: 3
|