to_csv-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 +2 -2
- data/VERSION +1 -1
- data/to_csv-rails.gemspec +3 -3
- metadata +7 -8
data/README.rdoc
CHANGED
|
@@ -41,8 +41,8 @@ This simple plugin gives you the ability to call to_csv to a collection of activ
|
|
|
41
41
|
gem 'to_csv-rails'
|
|
42
42
|
bundle install
|
|
43
43
|
|
|
44
|
-
git clone http://github.com/
|
|
44
|
+
git clone http://github.com/liangwenke/to_csv-rails.git
|
|
45
45
|
|
|
46
46
|
== Note
|
|
47
47
|
|
|
48
|
-
Copyright (c) 2010
|
|
48
|
+
Copyright (c) 2010 liangwenke.com@gmail.com, released under the MIT license
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/to_csv-rails.gemspec
CHANGED
|
@@ -6,14 +6,14 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.name = 'to_csv-rails'
|
|
7
7
|
s.version = version
|
|
8
8
|
s.author = "LiangWenKe"
|
|
9
|
-
s.email = "
|
|
10
|
-
s.homepage = "http://github.com/
|
|
9
|
+
s.email = "liangwenke.com@gmail.com"
|
|
10
|
+
s.homepage = "http://github.com/liangwenke/to_csv-rails"
|
|
11
11
|
s.summary = "Export data to csv on Rails"
|
|
12
12
|
s.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."
|
|
13
13
|
|
|
14
14
|
s.files = Dir["lib/**/*", "[a-zA-Z]*", "init.rb"] - ["Gemfile.lock"]
|
|
15
15
|
s.require_path = "lib"
|
|
16
16
|
|
|
17
|
-
s.
|
|
17
|
+
s.platform = Gem::Platform::RUBY
|
|
18
18
|
s.required_rubygems_version = ">= 1.3.4"
|
|
19
19
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: to_csv-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
|
|
@@ -10,12 +10,11 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
14
|
-
default_executable:
|
|
13
|
+
date: 2011-06-01 00:00:00 Z
|
|
15
14
|
dependencies: []
|
|
16
15
|
|
|
17
16
|
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
|
-
email:
|
|
17
|
+
email: liangwenke.com@gmail.com
|
|
19
18
|
executables: []
|
|
20
19
|
|
|
21
20
|
extensions: []
|
|
@@ -24,14 +23,14 @@ extra_rdoc_files: []
|
|
|
24
23
|
|
|
25
24
|
files:
|
|
26
25
|
- lib/to_csv-rails.rb
|
|
26
|
+
- CHANGELOG
|
|
27
27
|
- init.rb
|
|
28
28
|
- MIT-LICENSE
|
|
29
29
|
- Rakefile
|
|
30
30
|
- README.rdoc
|
|
31
31
|
- to_csv-rails.gemspec
|
|
32
32
|
- VERSION
|
|
33
|
-
|
|
34
|
-
homepage: http://github.com/wenke/to_csv-rails
|
|
33
|
+
homepage: http://github.com/liangwenke/to_csv-rails
|
|
35
34
|
licenses: []
|
|
36
35
|
|
|
37
36
|
post_install_message:
|
|
@@ -53,8 +52,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
52
|
version: 1.3.4
|
|
54
53
|
requirements: []
|
|
55
54
|
|
|
56
|
-
rubyforge_project:
|
|
57
|
-
rubygems_version: 1.
|
|
55
|
+
rubyforge_project:
|
|
56
|
+
rubygems_version: 1.8.5
|
|
58
57
|
signing_key:
|
|
59
58
|
specification_version: 3
|
|
60
59
|
summary: Export data to csv on Rails
|