ruby2xlsx 0.0.2 → 0.0.3
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/lib/ruby2xlsx/document.rb +1 -1
- data/lib/ruby2xlsx/version.rb +1 -1
- metadata +80 -64
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -309
data/lib/ruby2xlsx/document.rb
CHANGED
data/lib/ruby2xlsx/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby2xlsx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-04-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: writeexcel
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
@@ -21,10 +21,15 @@ dependencies:
|
|
|
21
21
|
version: 0.6.12
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ~>
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 0.6.12
|
|
25
30
|
- !ruby/object:Gem::Dependency
|
|
26
31
|
name: activemodel
|
|
27
|
-
requirement:
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
28
33
|
none: false
|
|
29
34
|
requirements:
|
|
30
35
|
- - ! '>='
|
|
@@ -32,10 +37,15 @@ dependencies:
|
|
|
32
37
|
version: '0'
|
|
33
38
|
type: :runtime
|
|
34
39
|
prerelease: false
|
|
35
|
-
version_requirements:
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
36
46
|
- !ruby/object:Gem::Dependency
|
|
37
47
|
name: sqlite3
|
|
38
|
-
requirement:
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
39
49
|
none: false
|
|
40
50
|
requirements:
|
|
41
51
|
- - ! '>='
|
|
@@ -43,10 +53,15 @@ dependencies:
|
|
|
43
53
|
version: '0'
|
|
44
54
|
type: :development
|
|
45
55
|
prerelease: false
|
|
46
|
-
version_requirements:
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
58
|
+
requirements:
|
|
59
|
+
- - ! '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
47
62
|
- !ruby/object:Gem::Dependency
|
|
48
63
|
name: capybara
|
|
49
|
-
requirement:
|
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
65
|
none: false
|
|
51
66
|
requirements:
|
|
52
67
|
- - ~>
|
|
@@ -54,7 +69,12 @@ dependencies:
|
|
|
54
69
|
version: 1.1.2
|
|
55
70
|
type: :development
|
|
56
71
|
prerelease: false
|
|
57
|
-
version_requirements:
|
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
74
|
+
requirements:
|
|
75
|
+
- - ~>
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: 1.1.2
|
|
58
78
|
description: Another gem for exporting data to Excel
|
|
59
79
|
email:
|
|
60
80
|
- galeta.igor@gmail.com
|
|
@@ -62,64 +82,62 @@ executables: []
|
|
|
62
82
|
extensions: []
|
|
63
83
|
extra_rdoc_files: []
|
|
64
84
|
files:
|
|
65
|
-
- lib/ruby2xlsx.rb
|
|
66
85
|
- lib/tasks/ruby2xlsx_tasks.rake
|
|
86
|
+
- lib/ruby2xlsx/base.rb
|
|
87
|
+
- lib/ruby2xlsx/template.rb
|
|
88
|
+
- lib/ruby2xlsx/document.rb
|
|
67
89
|
- lib/ruby2xlsx/default.rb
|
|
90
|
+
- lib/ruby2xlsx/version.rb
|
|
68
91
|
- lib/ruby2xlsx/engine.rb
|
|
69
|
-
- lib/ruby2xlsx/document.rb
|
|
70
|
-
- lib/ruby2xlsx/base.rb
|
|
71
92
|
- lib/ruby2xlsx/xrb.rb
|
|
72
|
-
- lib/ruby2xlsx
|
|
73
|
-
- lib/ruby2xlsx/template.rb
|
|
93
|
+
- lib/ruby2xlsx.rb
|
|
74
94
|
- MIT-LICENSE
|
|
75
95
|
- Rakefile
|
|
76
96
|
- README.rdoc
|
|
77
|
-
- test/
|
|
78
|
-
- test/
|
|
97
|
+
- test/support/integration_case.rb
|
|
98
|
+
- test/test_helper.rb
|
|
99
|
+
- test/dummy/config.ru
|
|
100
|
+
- test/dummy/Rakefile
|
|
79
101
|
- test/dummy/public/500.html
|
|
80
|
-
- test/dummy/public/404.html
|
|
81
102
|
- test/dummy/public/favicon.ico
|
|
103
|
+
- test/dummy/public/404.html
|
|
82
104
|
- test/dummy/public/422.html
|
|
83
105
|
- test/dummy/app/views/layouts/application.html.erb
|
|
84
|
-
- test/dummy/app/views/articles/
|
|
106
|
+
- test/dummy/app/views/articles/_form.html.erb
|
|
107
|
+
- test/dummy/app/views/articles/index.html.erb
|
|
85
108
|
- test/dummy/app/views/articles/another.xlsx.xrb
|
|
109
|
+
- test/dummy/app/views/articles/new.html.erb
|
|
86
110
|
- test/dummy/app/views/articles/edit.html.erb
|
|
87
|
-
- test/dummy/app/views/articles/_form.html.erb
|
|
88
111
|
- test/dummy/app/views/articles/show.html.erb
|
|
89
|
-
- test/dummy/app/views/articles/index.html.erb
|
|
90
|
-
- test/dummy/app/helpers/application_helper.rb
|
|
91
|
-
- test/dummy/app/helpers/articles_helper.rb
|
|
92
112
|
- test/dummy/app/models/article.rb
|
|
93
113
|
- test/dummy/app/assets/stylesheets/articles.css
|
|
94
114
|
- test/dummy/app/assets/stylesheets/scaffold.css
|
|
95
115
|
- test/dummy/app/assets/stylesheets/application.css
|
|
96
116
|
- test/dummy/app/assets/javascripts/articles.js
|
|
97
117
|
- test/dummy/app/assets/javascripts/application.js
|
|
98
|
-
- test/dummy/app/
|
|
118
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
119
|
+
- test/dummy/app/helpers/articles_helper.rb
|
|
99
120
|
- test/dummy/app/controllers/articles_controller.rb
|
|
100
|
-
- test/dummy/
|
|
101
|
-
- test/dummy/
|
|
102
|
-
- test/dummy/script/rails
|
|
121
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
122
|
+
- test/dummy/config/database.yml
|
|
103
123
|
- test/dummy/config/routes.rb
|
|
124
|
+
- test/dummy/config/application.rb
|
|
125
|
+
- test/dummy/config/locales/en.yml
|
|
126
|
+
- test/dummy/config/environment.rb
|
|
127
|
+
- test/dummy/config/boot.rb
|
|
104
128
|
- test/dummy/config/environments/production.rb
|
|
105
129
|
- test/dummy/config/environments/test.rb
|
|
106
130
|
- test/dummy/config/environments/development.rb
|
|
107
|
-
- test/dummy/config/
|
|
108
|
-
- test/dummy/config/application.rb
|
|
109
|
-
- test/dummy/config/database.yml
|
|
110
|
-
- test/dummy/config/initializers/session_store.rb
|
|
131
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
111
132
|
- test/dummy/config/initializers/inflections.rb
|
|
112
|
-
- test/dummy/config/initializers/mime_types.rb
|
|
113
133
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
114
|
-
- test/dummy/config/initializers/secret_token.rb
|
|
115
134
|
- test/dummy/config/initializers/wrap_parameters.rb
|
|
116
|
-
- test/dummy/config/
|
|
117
|
-
- test/dummy/config/
|
|
135
|
+
- test/dummy/config/initializers/session_store.rb
|
|
136
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
118
137
|
- test/dummy/db/migrate/20120116125427_create_articles.rb
|
|
119
|
-
- test/dummy/
|
|
120
|
-
- test/
|
|
121
|
-
- test/
|
|
122
|
-
- test/test_helper.rb
|
|
138
|
+
- test/dummy/script/rails
|
|
139
|
+
- test/ruby2xlsx_test.rb
|
|
140
|
+
- test/integration/navigation_test.rb
|
|
123
141
|
homepage: https://github.com/galetahub/ruby2xlsx
|
|
124
142
|
licenses: []
|
|
125
143
|
post_install_message:
|
|
@@ -140,55 +158,53 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
158
|
version: '0'
|
|
141
159
|
requirements: []
|
|
142
160
|
rubyforge_project:
|
|
143
|
-
rubygems_version: 1.8.
|
|
161
|
+
rubygems_version: 1.8.25
|
|
144
162
|
signing_key:
|
|
145
163
|
specification_version: 3
|
|
146
164
|
summary: ! 'Export your data to Excel. Provide two ways for export data: template
|
|
147
165
|
or renderer.'
|
|
148
166
|
test_files:
|
|
149
|
-
- test/
|
|
150
|
-
- test/
|
|
167
|
+
- test/support/integration_case.rb
|
|
168
|
+
- test/test_helper.rb
|
|
169
|
+
- test/dummy/config.ru
|
|
170
|
+
- test/dummy/Rakefile
|
|
151
171
|
- test/dummy/public/500.html
|
|
152
|
-
- test/dummy/public/404.html
|
|
153
172
|
- test/dummy/public/favicon.ico
|
|
173
|
+
- test/dummy/public/404.html
|
|
154
174
|
- test/dummy/public/422.html
|
|
155
175
|
- test/dummy/app/views/layouts/application.html.erb
|
|
156
|
-
- test/dummy/app/views/articles/
|
|
176
|
+
- test/dummy/app/views/articles/_form.html.erb
|
|
177
|
+
- test/dummy/app/views/articles/index.html.erb
|
|
157
178
|
- test/dummy/app/views/articles/another.xlsx.xrb
|
|
179
|
+
- test/dummy/app/views/articles/new.html.erb
|
|
158
180
|
- test/dummy/app/views/articles/edit.html.erb
|
|
159
|
-
- test/dummy/app/views/articles/_form.html.erb
|
|
160
181
|
- test/dummy/app/views/articles/show.html.erb
|
|
161
|
-
- test/dummy/app/views/articles/index.html.erb
|
|
162
|
-
- test/dummy/app/helpers/application_helper.rb
|
|
163
|
-
- test/dummy/app/helpers/articles_helper.rb
|
|
164
182
|
- test/dummy/app/models/article.rb
|
|
165
183
|
- test/dummy/app/assets/stylesheets/articles.css
|
|
166
184
|
- test/dummy/app/assets/stylesheets/scaffold.css
|
|
167
185
|
- test/dummy/app/assets/stylesheets/application.css
|
|
168
186
|
- test/dummy/app/assets/javascripts/articles.js
|
|
169
187
|
- test/dummy/app/assets/javascripts/application.js
|
|
170
|
-
- test/dummy/app/
|
|
188
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
189
|
+
- test/dummy/app/helpers/articles_helper.rb
|
|
171
190
|
- test/dummy/app/controllers/articles_controller.rb
|
|
172
|
-
- test/dummy/
|
|
173
|
-
- test/dummy/
|
|
174
|
-
- test/dummy/script/rails
|
|
191
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
192
|
+
- test/dummy/config/database.yml
|
|
175
193
|
- test/dummy/config/routes.rb
|
|
194
|
+
- test/dummy/config/application.rb
|
|
195
|
+
- test/dummy/config/locales/en.yml
|
|
196
|
+
- test/dummy/config/environment.rb
|
|
197
|
+
- test/dummy/config/boot.rb
|
|
176
198
|
- test/dummy/config/environments/production.rb
|
|
177
199
|
- test/dummy/config/environments/test.rb
|
|
178
200
|
- test/dummy/config/environments/development.rb
|
|
179
|
-
- test/dummy/config/
|
|
180
|
-
- test/dummy/config/application.rb
|
|
181
|
-
- test/dummy/config/database.yml
|
|
182
|
-
- test/dummy/config/initializers/session_store.rb
|
|
201
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
183
202
|
- test/dummy/config/initializers/inflections.rb
|
|
184
|
-
- test/dummy/config/initializers/mime_types.rb
|
|
185
203
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
186
|
-
- test/dummy/config/initializers/secret_token.rb
|
|
187
204
|
- test/dummy/config/initializers/wrap_parameters.rb
|
|
188
|
-
- test/dummy/config/
|
|
189
|
-
- test/dummy/config/
|
|
205
|
+
- test/dummy/config/initializers/session_store.rb
|
|
206
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
190
207
|
- test/dummy/db/migrate/20120116125427_create_articles.rb
|
|
191
|
-
- test/dummy/
|
|
192
|
-
- test/
|
|
193
|
-
- test/
|
|
194
|
-
- test/test_helper.rb
|
|
208
|
+
- test/dummy/script/rails
|
|
209
|
+
- test/ruby2xlsx_test.rb
|
|
210
|
+
- test/integration/navigation_test.rb
|
data/test/dummy/db/test.sqlite3
DELETED
|
Binary file
|
data/test/dummy/log/test.log
DELETED
|
@@ -1,309 +0,0 @@
|
|
|
1
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
2
|
-
Migrating to CreateArticles (20120116125427)
|
|
3
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
4
|
-
[1m[36mSQL (50.5ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
5
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
6
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
7
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
8
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
9
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
10
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
11
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
12
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
13
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
14
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
15
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
16
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
17
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
18
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
19
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
20
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
21
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
22
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
23
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
24
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
25
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
26
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
27
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
28
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
29
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:14:38 UTC +00:00]]
|
|
32
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
Started GET "/another.xlsx" for 127.0.0.1 at 2012-03-27 12:14:39 +0300
|
|
36
|
-
Processing by ArticlesController#another as XLSX
|
|
37
|
-
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" ORDER BY id DESC
|
|
38
|
-
Rendered text template (0.0ms)
|
|
39
|
-
Sent data another.xls (19.1ms)
|
|
40
|
-
Rendered articles/another.xlsx.xrb (355.3ms)
|
|
41
|
-
Completed 200 OK in 446ms (Views: 445.8ms | ActiveRecord: 0.0ms)
|
|
42
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
43
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00]]
|
|
44
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
45
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
46
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00]]
|
|
47
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
48
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
49
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00]]
|
|
50
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00]]
|
|
53
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
54
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
55
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:14:39 UTC +00:00]]
|
|
56
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
Started GET "/articles" for 127.0.0.1 at 2012-03-27 12:14:39 +0300
|
|
60
|
-
Processing by ArticlesController#index as HTML
|
|
61
|
-
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" ORDER BY id DESC
|
|
62
|
-
Rendered articles/index.html.erb within layouts/application (71.9ms)
|
|
63
|
-
Completed 200 OK in 131ms (Views: 130.6ms | ActiveRecord: 0.2ms)
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
Started GET "/articles.xlsx" for 127.0.0.1 at 2012-03-27 12:14:40 +0300
|
|
67
|
-
Processing by ArticlesController#index as XLSX
|
|
68
|
-
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
|
69
|
-
[1m[36mArticle Load (0.2ms)[0m [1mSELECT "articles".* FROM "articles" WHERE ("articles"."id" >= 0) ORDER BY "articles"."id" ASC LIMIT 1000[0m
|
|
70
|
-
Rendered text template (0.0ms)
|
|
71
|
-
Sent data articles.xls (0.5ms)
|
|
72
|
-
Completed 200 OK in 41ms (Views: 41.1ms | ActiveRecord: 0.0ms)
|
|
73
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
74
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00]]
|
|
75
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
76
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
77
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00]]
|
|
78
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
79
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
80
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00]]
|
|
81
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
82
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
83
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00]]
|
|
84
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
85
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
86
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:14:40 UTC +00:00]]
|
|
87
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
Started GET "/empty.xlsx" for 127.0.0.1 at 2012-03-27 12:14:40 +0300
|
|
91
|
-
Processing by ArticlesController#empty as XLSX
|
|
92
|
-
Rendered text template (0.0ms)
|
|
93
|
-
Sent data ruby2xlsx_defaults.xls (0.6ms)
|
|
94
|
-
Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms)
|
|
95
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
96
|
-
Migrating to CreateArticles (20120116125427)
|
|
97
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
98
|
-
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
99
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
100
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
101
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
102
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
104
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
105
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
106
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
107
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
108
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
109
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
110
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
111
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
112
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
113
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
114
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
115
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
116
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
117
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
118
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
119
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
120
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
121
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
122
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
123
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
124
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
125
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
126
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
Started GET "/another.xlsx" for 127.0.0.1 at 2012-03-27 12:17:09 +0300
|
|
130
|
-
Processing by ArticlesController#another as XLSX
|
|
131
|
-
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" ORDER BY id DESC
|
|
132
|
-
Rendered text template (0.0ms)
|
|
133
|
-
Sent data another.xls (2.0ms)
|
|
134
|
-
Rendered articles/another.xlsx.xrb (208.0ms)
|
|
135
|
-
Completed 200 OK in 247ms (Views: 246.8ms | ActiveRecord: 0.0ms)
|
|
136
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
137
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
138
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
139
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
140
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
141
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
142
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
143
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
144
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
145
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
146
|
-
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
147
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
148
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
149
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:17:09 UTC +00:00]]
|
|
150
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
Started GET "/articles" for 127.0.0.1 at 2012-03-27 12:17:09 +0300
|
|
154
|
-
Processing by ArticlesController#index as HTML
|
|
155
|
-
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" ORDER BY id DESC
|
|
156
|
-
Rendered articles/index.html.erb within layouts/application (44.0ms)
|
|
157
|
-
Completed 200 OK in 47ms (Views: 46.2ms | ActiveRecord: 0.2ms)
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
Started GET "/articles.xlsx" for 127.0.0.1 at 2012-03-27 12:17:10 +0300
|
|
161
|
-
Processing by ArticlesController#index as XLSX
|
|
162
|
-
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
|
163
|
-
[1m[36mArticle Load (0.2ms)[0m [1mSELECT "articles".* FROM "articles" WHERE ("articles"."id" >= 0) ORDER BY "articles"."id" ASC LIMIT 1000[0m
|
|
164
|
-
Rendered text template (0.0ms)
|
|
165
|
-
Sent data articles.xls (0.5ms)
|
|
166
|
-
Completed 200 OK in 41ms (Views: 41.2ms | ActiveRecord: 0.0ms)
|
|
167
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
168
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00]]
|
|
169
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
170
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
171
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00]]
|
|
172
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
173
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
174
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00]]
|
|
175
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
176
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
177
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00]]
|
|
178
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
179
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
180
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:17:10 UTC +00:00]]
|
|
181
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
Started GET "/empty.xlsx" for 127.0.0.1 at 2012-03-27 12:17:10 +0300
|
|
185
|
-
Processing by ArticlesController#empty as XLSX
|
|
186
|
-
Rendered text template (0.0ms)
|
|
187
|
-
Sent data ruby2xlsx_defaults.xls (0.5ms)
|
|
188
|
-
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
|
189
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
190
|
-
Migrating to CreateArticles (20120116125427)
|
|
191
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
192
|
-
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00]]
|
|
193
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
194
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
195
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00]]
|
|
196
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
197
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
198
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00]]
|
|
199
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
200
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
201
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00]]
|
|
202
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
203
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
204
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00]]
|
|
205
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
206
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
207
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00], ["title", "(\")\")"], ["updated_at", Tue, 27 Mar 2012 09:20:03 UTC +00:00]]
|
|
208
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
Started GET "/articles.xlsx" for 127.0.0.1 at 2012-03-27 12:20:04 +0300
|
|
212
|
-
Processing by ArticlesController#index as XLSX
|
|
213
|
-
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
|
214
|
-
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" WHERE ("articles"."id" >= 0) ORDER BY "articles"."id" ASC LIMIT 1000
|
|
215
|
-
Rendered text template (0.0ms)
|
|
216
|
-
Sent data articles.xls (39.3ms)
|
|
217
|
-
Completed 200 OK in 239ms (Views: 238.5ms | ActiveRecord: 0.0ms)
|
|
218
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
219
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
220
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
221
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
222
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
223
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
224
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
225
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
226
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
227
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
228
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
229
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
230
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
231
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
232
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
233
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
234
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
235
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
236
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
237
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
238
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
239
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
240
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
241
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
242
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
243
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
244
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
245
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
246
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
247
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
Started GET "/another.xlsx" for 127.0.0.1 at 2012-03-27 12:20:04 +0300
|
|
251
|
-
Processing by ArticlesController#another as XLSX
|
|
252
|
-
[1m[36mArticle Load (0.2ms)[0m [1mSELECT "articles".* FROM "articles" ORDER BY id DESC[0m
|
|
253
|
-
Rendered text template (0.0ms)
|
|
254
|
-
Sent data another.xls (0.6ms)
|
|
255
|
-
Rendered articles/another.xlsx.xrb (46.0ms)
|
|
256
|
-
Completed 200 OK in 47ms (Views: 46.8ms | ActiveRecord: 0.0ms)
|
|
257
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
258
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
259
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
260
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
261
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
262
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
263
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
264
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
265
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
266
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
267
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
268
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
269
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
270
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
271
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
Started GET "/articles" for 127.0.0.1 at 2012-03-27 12:20:04 +0300
|
|
275
|
-
Processing by ArticlesController#index as HTML
|
|
276
|
-
[1m[36mArticle Load (0.2ms)[0m [1mSELECT "articles".* FROM "articles" ORDER BY id DESC[0m
|
|
277
|
-
Rendered articles/index.html.erb within layouts/application (12.3ms)
|
|
278
|
-
Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms)
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
Started GET "/articles.xlsx" for 127.0.0.1 at 2012-03-27 12:20:04 +0300
|
|
282
|
-
Processing by ArticlesController#index as XLSX
|
|
283
|
-
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
|
284
|
-
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" WHERE ("articles"."id" >= 0) ORDER BY "articles"."id" ASC LIMIT 1000
|
|
285
|
-
Rendered text template (0.0ms)
|
|
286
|
-
Sent data articles.xls (0.5ms)
|
|
287
|
-
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
|
288
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
289
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 1"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
290
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
291
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
292
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 2"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
293
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
294
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
295
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 3"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
296
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
297
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
298
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 4"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
299
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
300
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
301
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00], ["title", "Some article 5"], ["updated_at", Tue, 27 Mar 2012 09:20:04 UTC +00:00]]
|
|
302
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
Started GET "/empty.xlsx" for 127.0.0.1 at 2012-03-27 12:20:04 +0300
|
|
306
|
-
Processing by ArticlesController#empty as XLSX
|
|
307
|
-
Rendered text template (0.0ms)
|
|
308
|
-
Sent data ruby2xlsx_defaults.xls (0.6ms)
|
|
309
|
-
Completed 200 OK in 38ms (Views: 38.0ms | ActiveRecord: 0.0ms)
|