csv_rails 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,13 +19,11 @@ module ActiveRecord
19
19
  else
20
20
  new.attribute_names
21
21
  end
22
- CSV.generate do |csv|
23
- csv << fields.map{|f|
24
- name = human_attribute_name(f)
25
- opts[:encoding] ? name.encode(opts[:encoding]) : name
26
- } unless opts[:without_header]
27
- all.each{|row| csv << row.to_csv_ary(fields) }
22
+ csv = CSV.generate do |_csv|
23
+ _csv << fields.map{|f| human_attribute_name(f) } unless opts[:without_header]
24
+ all.each{|row| _csv << row.to_csv_ary(fields) }
28
25
  end
26
+ opts[:encoding] ? csv.encode(opts[:encoding]) : csv
29
27
  end
30
28
  end
31
29
 
@@ -35,8 +33,7 @@ module ActiveRecord
35
33
  fields.map{|field|
36
34
  convert_method = "#{field}_as_csv"
37
35
  method = respond_to?(convert_method) ? convert_method : field
38
- value = send(method)
39
- opts[:encoding] ? value.to_s.encode(opts[:encoding]) : value
36
+ send(method)
40
37
  }
41
38
  end
42
39
  end
@@ -11,18 +11,19 @@ module CsvRails
11
11
  return "" if length < 1
12
12
  first = self.first
13
13
  fields = opts.delete(:fields) || first.class.attribute_names
14
- CSV.generate do |csv|
14
+ csv = CSV.generate do |_csv|
15
15
  unless opts[:without_header]
16
- csv << if first.class.respond_to?(:human_attribute_name)
16
+ _csv << if first.class.respond_to?(:human_attribute_name)
17
17
  fields.map{|f| first.class.human_attribute_name(f) }
18
18
  else
19
19
  fields
20
20
  end
21
21
  end
22
22
  each do |element|
23
- csv << element.to_csv_ary(fields, opts)
23
+ _csv << element.to_csv_ary(fields, opts)
24
24
  end
25
25
  end
26
+ opts[:encoding] ? csv.encode(opts[:encoding]) : csv
26
27
  end
27
28
  end
28
29
  end
@@ -1,3 +1,3 @@
1
1
  module CsvRails
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
@@ -726,3 +726,818 @@ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 5.4ms)
726
726
  User Load (0.3ms) SELECT "users".* FROM "users"
727
727
  Sent data (0.3ms)
728
728
  Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms)
729
+ SQL (0.3ms)  SELECT name
730
+ FROM sqlite_master
731
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
732
+ 
733
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.616198', '2012-03-25 04:29:26.616198')
734
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 04:29:26.625635', '2012-03-25 04:29:26.625635')
735
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.627137', '2012-03-25 04:29:26.627137')
736
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.628434', '2012-03-25 04:29:26.628434')
737
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.629686', '2012-03-25 04:29:26.629686')
738
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.631634', '2012-03-25 04:29:26.631634')
739
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.633293', '2012-03-25 04:29:26.633293')
740
+ User Load (0.2ms) SELECT "users".* FROM "users"
741
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.640150', '2012-03-25 04:29:26.640150')
742
+ User Load (0.1ms) SELECT "users".* FROM "users"
743
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.643001', '2012-03-25 04:29:26.643001')
744
+ User Load (0.1ms) SELECT "users".* FROM "users"
745
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.646240', '2012-03-25 04:29:26.646240')
746
+ User Load (0.1ms) SELECT "users".* FROM "users"
747
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.648668', '2012-03-25 04:29:26.648668')
748
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 04:29:26.650479', '2012-03-25 04:29:26.650479')
749
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (age > 39)
750
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 04:29:26.654149', '2012-03-25 04:29:26.654149')
751
+ User Load (0.1ms) SELECT "users".* FROM "users"
752
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 04:29:26.659422', '2012-03-25 04:29:26.659422')
753
+ User Load (0.1ms) SELECT "users".* FROM "users"
754
+ Processing by UsersController#index as CSV
755
+ User Load (0.2ms) SELECT "users".* FROM "users"
756
+ Rendered text template (0.0ms)
757
+ Sent data (2.0ms)
758
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 4.7ms)
759
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 04:29:26.698664', '2012-03-25 04:29:26.698664')
760
+ User Load (0.2ms) SELECT "users".* FROM "users"
761
+ Processing by UsersController#sjis as CSV
762
+ User Load (0.2ms) SELECT "users".* FROM "users"
763
+ Sent data (0.3ms)
764
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.8ms)
765
+ SQL (0.2ms)  SELECT name
766
+ FROM sqlite_master
767
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
768
+ 
769
+ AREL (0.6ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.854997', '2012-03-25 07:27:21.854997')
770
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 07:27:21.895659', '2012-03-25 07:27:21.895659')
771
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.897736', '2012-03-25 07:27:21.897736')
772
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.899197', '2012-03-25 07:27:21.899197')
773
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.900703', '2012-03-25 07:27:21.900703')
774
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.902693', '2012-03-25 07:27:21.902693')
775
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.904029', '2012-03-25 07:27:21.904029')
776
+ User Load (0.3ms) SELECT "users".* FROM "users"
777
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.916614', '2012-03-25 07:27:21.916614')
778
+ User Load (0.2ms) SELECT "users".* FROM "users"
779
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.920813', '2012-03-25 07:27:21.920813')
780
+ User Load (0.1ms) SELECT "users".* FROM "users"
781
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.924444', '2012-03-25 07:27:21.924444')
782
+ User Load (0.1ms) SELECT "users".* FROM "users"
783
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.926861', '2012-03-25 07:27:21.926861')
784
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 07:27:21.927733', '2012-03-25 07:27:21.927733')
785
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
786
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:21.929919', '2012-03-25 07:27:21.929919')
787
+ User Load (0.1ms) SELECT "users".* FROM "users"
788
+ SQL (0.2ms)  SELECT name
789
+ FROM sqlite_master
790
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
791
+ 
792
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.938673', '2012-03-25 07:27:39.938673')
793
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 07:27:39.967762', '2012-03-25 07:27:39.967762')
794
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.969414', '2012-03-25 07:27:39.969414')
795
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.970791', '2012-03-25 07:27:39.970791')
796
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.972119', '2012-03-25 07:27:39.972119')
797
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.974300', '2012-03-25 07:27:39.974300')
798
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.975657', '2012-03-25 07:27:39.975657')
799
+ User Load (0.2ms) SELECT "users".* FROM "users"
800
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.982470', '2012-03-25 07:27:39.982470')
801
+ User Load (0.2ms) SELECT "users".* FROM "users"
802
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.985906', '2012-03-25 07:27:39.985906')
803
+ User Load (0.1ms) SELECT "users".* FROM "users"
804
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.989833', '2012-03-25 07:27:39.989833')
805
+ User Load (0.2ms) SELECT "users".* FROM "users"
806
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.993992', '2012-03-25 07:27:39.993992')
807
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 07:27:39.995031', '2012-03-25 07:27:39.995031')
808
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
809
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:27:39.997355', '2012-03-25 07:27:39.997355')
810
+ User Load (0.1ms) SELECT "users".* FROM "users"
811
+ SQL (0.2ms)  SELECT name
812
+ FROM sqlite_master
813
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
814
+ 
815
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.307402', '2012-03-25 07:28:05.307402')
816
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 07:28:05.336750', '2012-03-25 07:28:05.336750')
817
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.338386', '2012-03-25 07:28:05.338386')
818
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.339728', '2012-03-25 07:28:05.339728')
819
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.341189', '2012-03-25 07:28:05.341189')
820
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.343302', '2012-03-25 07:28:05.343302')
821
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.344580', '2012-03-25 07:28:05.344580')
822
+ User Load (0.2ms) SELECT "users".* FROM "users"
823
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.350729', '2012-03-25 07:28:05.350729')
824
+ User Load (0.1ms) SELECT "users".* FROM "users"
825
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.353369', '2012-03-25 07:28:05.353369')
826
+ User Load (0.1ms) SELECT "users".* FROM "users"
827
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.356312', '2012-03-25 07:28:05.356312')
828
+ User Load (0.1ms) SELECT "users".* FROM "users"
829
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.358987', '2012-03-25 07:28:05.358987')
830
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 07:28:05.359920', '2012-03-25 07:28:05.359920')
831
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
832
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:05.362086', '2012-03-25 07:28:05.362086')
833
+ User Load (0.1ms) SELECT "users".* FROM "users"
834
+ SQL (0.2ms)  SELECT name
835
+ FROM sqlite_master
836
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
837
+ 
838
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.345619', '2012-03-25 07:28:26.345619')
839
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 07:28:26.374177', '2012-03-25 07:28:26.374177')
840
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.375883', '2012-03-25 07:28:26.375883')
841
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.377362', '2012-03-25 07:28:26.377362')
842
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.378888', '2012-03-25 07:28:26.378888')
843
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.380975', '2012-03-25 07:28:26.380975')
844
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.382369', '2012-03-25 07:28:26.382369')
845
+ User Load (0.2ms) SELECT "users".* FROM "users"
846
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.389417', '2012-03-25 07:28:26.389417')
847
+ User Load (0.1ms) SELECT "users".* FROM "users"
848
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.392299', '2012-03-25 07:28:26.392299')
849
+ User Load (0.2ms) SELECT "users".* FROM "users"
850
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.396450', '2012-03-25 07:28:26.396450')
851
+ User Load (0.1ms) SELECT "users".* FROM "users"
852
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.399526', '2012-03-25 07:28:26.399526')
853
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 07:28:26.400593', '2012-03-25 07:28:26.400593')
854
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
855
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:28:26.403454', '2012-03-25 07:28:26.403454')
856
+ User Load (0.1ms) SELECT "users".* FROM "users"
857
+ SQL (0.2ms)  SELECT name
858
+ FROM sqlite_master
859
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
860
+ 
861
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.897549', '2012-03-25 07:31:10.897549')
862
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 07:31:10.926956', '2012-03-25 07:31:10.926956')
863
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.928679', '2012-03-25 07:31:10.928679')
864
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.930071', '2012-03-25 07:31:10.930071')
865
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.931450', '2012-03-25 07:31:10.931450')
866
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.933421', '2012-03-25 07:31:10.933421')
867
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.934942', '2012-03-25 07:31:10.934942')
868
+ User Load (0.2ms) SELECT "users".* FROM "users"
869
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.941396', '2012-03-25 07:31:10.941396')
870
+ User Load (0.1ms) SELECT "users".* FROM "users"
871
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.944138', '2012-03-25 07:31:10.944138')
872
+ User Load (0.1ms) SELECT "users".* FROM "users"
873
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.947673', '2012-03-25 07:31:10.947673')
874
+ User Load (0.1ms) SELECT "users".* FROM "users"
875
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.950080', '2012-03-25 07:31:10.950080')
876
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 07:31:10.950968', '2012-03-25 07:31:10.950968')
877
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
878
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 07:31:10.953219', '2012-03-25 07:31:10.953219')
879
+ User Load (0.1ms) SELECT "users".* FROM "users"
880
+ SQL (0.2ms)  SELECT name
881
+ FROM sqlite_master
882
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
883
+ 
884
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:31:17.676166', '2012-03-25 07:31:17.676166')
885
+ User Load (0.1ms) SELECT "users".* FROM "users"
886
+ Processing by UsersController#index as CSV
887
+ User Load (0.4ms) SELECT "users".* FROM "users"
888
+ Rendered text template (0.0ms)
889
+ Sent data (3.7ms)
890
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.7ms)
891
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:31:17.738268', '2012-03-25 07:31:17.738268')
892
+ User Load (0.3ms) SELECT "users".* FROM "users"
893
+ Processing by UsersController#sjis as CSV
894
+ User Load (0.2ms) SELECT "users".* FROM "users"
895
+ Sent data (0.3ms)
896
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.9ms)
897
+ SQL (0.2ms)  SELECT name
898
+ FROM sqlite_master
899
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
900
+ 
901
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:31:45.136743', '2012-03-25 07:31:45.136743')
902
+ User Load (0.1ms) SELECT "users".* FROM "users"
903
+ Processing by UsersController#index as CSV
904
+ User Load (0.2ms) SELECT "users".* FROM "users"
905
+ Rendered text template (0.0ms)
906
+ Sent data (1.7ms)
907
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.7ms)
908
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:31:45.182622', '2012-03-25 07:31:45.182622')
909
+ User Load (0.1ms) SELECT "users".* FROM "users"
910
+ Processing by UsersController#sjis as CSV
911
+ User Load (0.2ms) SELECT "users".* FROM "users"
912
+ Sent data (0.3ms)
913
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.6ms)
914
+ SQL (0.2ms)  SELECT name
915
+ FROM sqlite_master
916
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
917
+ 
918
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:32:39.193169', '2012-03-25 07:32:39.193169')
919
+ User Load (0.1ms) SELECT "users".* FROM "users"
920
+ Processing by UsersController#index as CSV
921
+ User Load (0.2ms) SELECT "users".* FROM "users"
922
+ Rendered text template (0.0ms)
923
+ Sent data (1.9ms)
924
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.7ms)
925
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:32:39.240955', '2012-03-25 07:32:39.240955')
926
+ User Load (0.1ms) SELECT "users".* FROM "users"
927
+ Processing by UsersController#sjis as CSV
928
+ User Load (0.2ms) SELECT "users".* FROM "users"
929
+ Sent data (0.3ms)
930
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
931
+ SQL (0.2ms)  SELECT name
932
+ FROM sqlite_master
933
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
934
+ 
935
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:32:47.833792', '2012-03-25 07:32:47.833792')
936
+ User Load (0.2ms) SELECT "users".* FROM "users"
937
+ Processing by UsersController#index as CSV
938
+ User Load (0.2ms) SELECT "users".* FROM "users"
939
+ Rendered text template (0.0ms)
940
+ Sent data (2.0ms)
941
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.7ms)
942
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:32:47.880070', '2012-03-25 07:32:47.880070')
943
+ User Load (0.1ms) SELECT "users".* FROM "users"
944
+ Processing by UsersController#sjis as CSV
945
+ User Load (0.2ms) SELECT "users".* FROM "users"
946
+ Sent data (0.3ms)
947
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.6ms)
948
+ SQL (0.2ms)  SELECT name
949
+ FROM sqlite_master
950
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
951
+ 
952
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:33:15.887483', '2012-03-25 07:33:15.887483')
953
+ User Load (0.2ms) SELECT "users".* FROM "users"
954
+ Processing by UsersController#index as CSV
955
+ User Load (0.2ms) SELECT "users".* FROM "users"
956
+ Rendered text template (0.0ms)
957
+ Sent data (1.8ms)
958
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.7ms)
959
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:33:15.937622', '2012-03-25 07:33:15.937622')
960
+ User Load (0.2ms) SELECT "users".* FROM "users"
961
+ Processing by UsersController#sjis as CSV
962
+ User Load (0.2ms) SELECT "users".* FROM "users"
963
+ Sent data (0.3ms)
964
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.6ms)
965
+ SQL (0.2ms)  SELECT name
966
+ FROM sqlite_master
967
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
968
+ 
969
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:34:37.695610', '2012-03-25 07:34:37.695610')
970
+ User Load (0.2ms) SELECT "users".* FROM "users"
971
+ Processing by UsersController#index as CSV
972
+ User Load (0.4ms) SELECT "users".* FROM "users"
973
+ Rendered text template (0.0ms)
974
+ Sent data (3.6ms)
975
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.7ms)
976
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 07:34:37.747848', '2012-03-25 07:34:37.747848')
977
+ User Load (0.1ms) SELECT "users".* FROM "users"
978
+ Processing by UsersController#sjis as CSV
979
+ User Load (0.2ms) SELECT "users".* FROM "users"
980
+ Sent data (0.3ms)
981
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.6ms)
982
+ SQL (0.2ms)  SELECT name
983
+ FROM sqlite_master
984
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
985
+ 
986
+ AREL (0.6ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.818822', '2012-03-26 12:42:20.818822')
987
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.839142', '2012-03-26 12:42:20.839142')
988
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.842055', '2012-03-26 12:42:20.842055')
989
+ AREL (0.6ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.846034', '2012-03-26 12:42:20.846034')
990
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.849361', '2012-03-26 12:42:20.849361')
991
+ User Load (0.2ms) SELECT "users".* FROM "users"
992
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.890563', '2012-03-26 12:42:20.890563')
993
+ User Load (0.1ms) SELECT "users".* FROM "users"
994
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.893497', '2012-03-26 12:42:20.893497')
995
+ User Load (0.1ms) SELECT "users".* FROM "users"
996
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.896835', '2012-03-26 12:42:20.896835')
997
+ User Load (0.1ms) SELECT "users".* FROM "users"
998
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.899584', '2012-03-26 12:42:20.899584')
999
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:42:20.901125', '2012-03-26 12:42:20.901125')
1000
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (age > 39)
1001
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:42:20.904299', '2012-03-26 12:42:20.904299')
1002
+ User Load (0.1ms) SELECT "users".* FROM "users"
1003
+ SQL (0.2ms)  SELECT name
1004
+ FROM sqlite_master
1005
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1006
+ 
1007
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.747752', '2012-03-26 12:43:21.747752')
1008
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.758059', '2012-03-26 12:43:21.758059')
1009
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.759669', '2012-03-26 12:43:21.759669')
1010
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.763213', '2012-03-26 12:43:21.763213')
1011
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.764786', '2012-03-26 12:43:21.764786')
1012
+ User Load (0.2ms) SELECT "users".* FROM "users"
1013
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.794967', '2012-03-26 12:43:21.794967')
1014
+ User Load (0.1ms) SELECT "users".* FROM "users"
1015
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.798022', '2012-03-26 12:43:21.798022')
1016
+ User Load (0.1ms) SELECT "users".* FROM "users"
1017
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.802390', '2012-03-26 12:43:21.802390')
1018
+ User Load (0.1ms) SELECT "users".* FROM "users"
1019
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.806005', '2012-03-26 12:43:21.806005')
1020
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:43:21.806975', '2012-03-26 12:43:21.806975')
1021
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1022
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.809294', '2012-03-26 12:43:21.809294')
1023
+ User Load (0.1ms) SELECT "users".* FROM "users"
1024
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:43:21.813332', '2012-03-26 12:43:21.813332')
1025
+ User Load (0.1ms) SELECT "users".* FROM "users"
1026
+ SQL (0.2ms)  SELECT name
1027
+ FROM sqlite_master
1028
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1029
+ 
1030
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.437659', '2012-03-26 12:44:06.437659')
1031
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.445587', '2012-03-26 12:44:06.445587')
1032
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.447056', '2012-03-26 12:44:06.447056')
1033
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.448944', '2012-03-26 12:44:06.448944')
1034
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.451047', '2012-03-26 12:44:06.451047')
1035
+ User Load (0.2ms) SELECT "users".* FROM "users"
1036
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.480371', '2012-03-26 12:44:06.480371')
1037
+ User Load (0.1ms) SELECT "users".* FROM "users"
1038
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.482925', '2012-03-26 12:44:06.482925')
1039
+ User Load (0.2ms) SELECT "users".* FROM "users"
1040
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.486420', '2012-03-26 12:44:06.486420')
1041
+ User Load (0.1ms) SELECT "users".* FROM "users"
1042
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.488738', '2012-03-26 12:44:06.488738')
1043
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:44:06.489685', '2012-03-26 12:44:06.489685')
1044
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1045
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.491912', '2012-03-26 12:44:06.491912')
1046
+ User Load (0.2ms) SELECT "users".* FROM "users"
1047
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:44:06.496662', '2012-03-26 12:44:06.496662')
1048
+ User Load (0.1ms) SELECT "users".* FROM "users"
1049
+ SQL (0.2ms)  SELECT name
1050
+ FROM sqlite_master
1051
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1052
+ 
1053
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.561764', '2012-03-26 12:45:34.561764')
1054
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.569856', '2012-03-26 12:45:34.569856')
1055
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.571318', '2012-03-26 12:45:34.571318')
1056
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.573666', '2012-03-26 12:45:34.573666')
1057
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.575431', '2012-03-26 12:45:34.575431')
1058
+ User Load (0.2ms) SELECT "users".* FROM "users"
1059
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.604761', '2012-03-26 12:45:34.604761')
1060
+ User Load (0.1ms) SELECT "users".* FROM "users"
1061
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.607674', '2012-03-26 12:45:34.607674')
1062
+ User Load (0.1ms) SELECT "users".* FROM "users"
1063
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.611174', '2012-03-26 12:45:34.611174')
1064
+ User Load (0.1ms) SELECT "users".* FROM "users"
1065
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.613635', '2012-03-26 12:45:34.613635')
1066
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:45:34.614741', '2012-03-26 12:45:34.614741')
1067
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (age > 39)
1068
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.617911', '2012-03-26 12:45:34.617911')
1069
+ User Load (0.1ms) SELECT "users".* FROM "users"
1070
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:45:34.621970', '2012-03-26 12:45:34.621970')
1071
+ User Load (0.1ms) SELECT "users".* FROM "users"
1072
+ SQL (0.2ms)  SELECT name
1073
+ FROM sqlite_master
1074
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1075
+ 
1076
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.752327', '2012-03-26 12:48:02.752327')
1077
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.760307', '2012-03-26 12:48:02.760307')
1078
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.761919', '2012-03-26 12:48:02.761919')
1079
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.763918', '2012-03-26 12:48:02.763918')
1080
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.765258', '2012-03-26 12:48:02.765258')
1081
+ User Load (0.2ms) SELECT "users".* FROM "users"
1082
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.794817', '2012-03-26 12:48:02.794817')
1083
+ User Load (0.3ms) SELECT "users".* FROM "users"
1084
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.799604', '2012-03-26 12:48:02.799604')
1085
+ User Load (0.1ms) SELECT "users".* FROM "users"
1086
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.803410', '2012-03-26 12:48:02.803410')
1087
+ User Load (0.1ms) SELECT "users".* FROM "users"
1088
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.805834', '2012-03-26 12:48:02.805834')
1089
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:48:02.806717', '2012-03-26 12:48:02.806717')
1090
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1091
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:48:02.809032', '2012-03-26 12:48:02.809032')
1092
+ User Load (0.1ms) SELECT "users".* FROM "users"
1093
+ SQL (0.2ms)  SELECT name
1094
+ FROM sqlite_master
1095
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1096
+ 
1097
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.842611', '2012-03-26 12:50:52.842611')
1098
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.850530', '2012-03-26 12:50:52.850530')
1099
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.851963', '2012-03-26 12:50:52.851963')
1100
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.853844', '2012-03-26 12:50:52.853844')
1101
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.855093', '2012-03-26 12:50:52.855093')
1102
+ User Load (0.2ms) SELECT "users".* FROM "users"
1103
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.884781', '2012-03-26 12:50:52.884781')
1104
+ User Load (0.1ms) SELECT "users".* FROM "users"
1105
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.887647', '2012-03-26 12:50:52.887647')
1106
+ User Load (0.1ms) SELECT "users".* FROM "users"
1107
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.890964', '2012-03-26 12:50:52.890964')
1108
+ User Load (0.2ms) SELECT "users".* FROM "users"
1109
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.894423', '2012-03-26 12:50:52.894423')
1110
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:50:52.895600', '2012-03-26 12:50:52.895600')
1111
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1112
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:50:52.897931', '2012-03-26 12:50:52.897931')
1113
+ User Load (0.1ms) SELECT "users".* FROM "users"
1114
+ SQL (0.2ms)  SELECT name
1115
+ FROM sqlite_master
1116
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1117
+ 
1118
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.540459', '2012-03-26 12:51:04.540459')
1119
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.548368', '2012-03-26 12:51:04.548368')
1120
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.549911', '2012-03-26 12:51:04.549911')
1121
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.551845', '2012-03-26 12:51:04.551845')
1122
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.553722', '2012-03-26 12:51:04.553722')
1123
+ User Load (0.3ms) SELECT "users".* FROM "users"
1124
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.583445', '2012-03-26 12:51:04.583445')
1125
+ User Load (0.2ms) SELECT "users".* FROM "users"
1126
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.586333', '2012-03-26 12:51:04.586333')
1127
+ User Load (0.1ms) SELECT "users".* FROM "users"
1128
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.589402', '2012-03-26 12:51:04.589402')
1129
+ User Load (0.1ms) SELECT "users".* FROM "users"
1130
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.591624', '2012-03-26 12:51:04.591624')
1131
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:51:04.592518', '2012-03-26 12:51:04.592518')
1132
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1133
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:04.595519', '2012-03-26 12:51:04.595519')
1134
+ User Load (0.1ms) SELECT "users".* FROM "users"
1135
+ SQL (0.2ms)  SELECT name
1136
+ FROM sqlite_master
1137
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1138
+ 
1139
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.624901', '2012-03-26 12:51:10.624901')
1140
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.632998', '2012-03-26 12:51:10.632998')
1141
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.634520', '2012-03-26 12:51:10.634520')
1142
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.636424', '2012-03-26 12:51:10.636424')
1143
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.637740', '2012-03-26 12:51:10.637740')
1144
+ User Load (0.2ms) SELECT "users".* FROM "users"
1145
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.666218', '2012-03-26 12:51:10.666218')
1146
+ User Load (0.1ms) SELECT "users".* FROM "users"
1147
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.669199', '2012-03-26 12:51:10.669199')
1148
+ User Load (0.1ms) SELECT "users".* FROM "users"
1149
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.672767', '2012-03-26 12:51:10.672767')
1150
+ User Load (0.1ms) SELECT "users".* FROM "users"
1151
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.675875', '2012-03-26 12:51:10.675875')
1152
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:51:10.677271', '2012-03-26 12:51:10.677271')
1153
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1154
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:51:10.679725', '2012-03-26 12:51:10.679725')
1155
+ User Load (0.1ms) SELECT "users".* FROM "users"
1156
+ SQL (0.2ms)  SELECT name
1157
+ FROM sqlite_master
1158
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1159
+ 
1160
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.094250', '2012-03-26 12:53:33.094250')
1161
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.102132', '2012-03-26 12:53:33.102132')
1162
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.103568', '2012-03-26 12:53:33.103568')
1163
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.106148', '2012-03-26 12:53:33.106148')
1164
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.107774', '2012-03-26 12:53:33.107774')
1165
+ User Load (0.2ms) SELECT "users".* FROM "users"
1166
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.137227', '2012-03-26 12:53:33.137227')
1167
+ User Load (0.1ms) SELECT "users".* FROM "users"
1168
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.140060', '2012-03-26 12:53:33.140060')
1169
+ User Load (0.1ms) SELECT "users".* FROM "users"
1170
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.143842', '2012-03-26 12:53:33.143842')
1171
+ User Load (0.2ms) SELECT "users".* FROM "users"
1172
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.147030', '2012-03-26 12:53:33.147030')
1173
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:53:33.148016', '2012-03-26 12:53:33.148016')
1174
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1175
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.150357', '2012-03-26 12:53:33.150357')
1176
+ User Load (0.1ms) SELECT "users".* FROM "users"
1177
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:53:33.154361', '2012-03-26 12:53:33.154361')
1178
+ User Load (0.1ms) SELECT "users".* FROM "users"
1179
+ SQL (0.2ms)  SELECT name
1180
+ FROM sqlite_master
1181
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1182
+ 
1183
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.260908', '2012-03-26 12:54:26.260908')
1184
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.268814', '2012-03-26 12:54:26.268814')
1185
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.270269', '2012-03-26 12:54:26.270269')
1186
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.272128', '2012-03-26 12:54:26.272128')
1187
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.273471', '2012-03-26 12:54:26.273471')
1188
+ User Load (0.2ms) SELECT "users".* FROM "users"
1189
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.302142', '2012-03-26 12:54:26.302142')
1190
+ User Load (0.1ms) SELECT "users".* FROM "users"
1191
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.305147', '2012-03-26 12:54:26.305147')
1192
+ User Load (0.1ms) SELECT "users".* FROM "users"
1193
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.308547', '2012-03-26 12:54:26.308547')
1194
+ User Load (0.2ms) SELECT "users".* FROM "users"
1195
+ AREL (0.5ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.311876', '2012-03-26 12:54:26.311876')
1196
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:54:26.313496', '2012-03-26 12:54:26.313496')
1197
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1198
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.316010', '2012-03-26 12:54:26.316010')
1199
+ User Load (0.1ms) SELECT "users".* FROM "users"
1200
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:26.320165', '2012-03-26 12:54:26.320165')
1201
+ User Load (0.1ms) SELECT "users".* FROM "users"
1202
+ SQL (0.2ms)  SELECT name
1203
+ FROM sqlite_master
1204
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1205
+ 
1206
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.529237', '2012-03-26 12:54:31.529237')
1207
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.538124', '2012-03-26 12:54:31.538124')
1208
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.539881', '2012-03-26 12:54:31.539881')
1209
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.541839', '2012-03-26 12:54:31.541839')
1210
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.543090', '2012-03-26 12:54:31.543090')
1211
+ User Load (0.2ms) SELECT "users".* FROM "users"
1212
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.550973', '2012-03-26 12:54:31.550973')
1213
+ User Load (0.2ms) SELECT "users".* FROM "users"
1214
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.554646', '2012-03-26 12:54:31.554646')
1215
+ User Load (0.1ms) SELECT "users".* FROM "users"
1216
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.558034', '2012-03-26 12:54:31.558034')
1217
+ User Load (0.1ms) SELECT "users".* FROM "users"
1218
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.560424', '2012-03-26 12:54:31.560424')
1219
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:54:31.561302', '2012-03-26 12:54:31.561302')
1220
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1221
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.563522', '2012-03-26 12:54:31.563522')
1222
+ User Load (0.2ms) SELECT "users".* FROM "users"
1223
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:54:31.588523', '2012-03-26 12:54:31.588523')
1224
+ User Load (0.2ms) SELECT "users".* FROM "users"
1225
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:54:31.592233', '2012-03-26 12:54:31.592233')
1226
+ User Load (0.2ms) SELECT "users".* FROM "users"
1227
+ Processing by UsersController#index as CSV
1228
+ User Load (0.2ms) SELECT "users".* FROM "users"
1229
+ Rendered text template (0.0ms)
1230
+ Sent data (3.1ms)
1231
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 4.8ms)
1232
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:54:31.621670', '2012-03-26 12:54:31.621670')
1233
+ User Load (0.3ms) SELECT "users".* FROM "users"
1234
+ Processing by UsersController#sjis as CSV
1235
+ User Load (0.3ms) SELECT "users".* FROM "users"
1236
+ Sent data (0.3ms)
1237
+ Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.0ms)
1238
+ SQL (0.2ms)  SELECT name
1239
+ FROM sqlite_master
1240
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1241
+ 
1242
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.684105', '2012-03-26 12:55:02.684105')
1243
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.692412', '2012-03-26 12:55:02.692412')
1244
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.693886', '2012-03-26 12:55:02.693886')
1245
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.695719', '2012-03-26 12:55:02.695719')
1246
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.696981', '2012-03-26 12:55:02.696981')
1247
+ User Load (0.2ms) SELECT "users".* FROM "users"
1248
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.705210', '2012-03-26 12:55:02.705210')
1249
+ User Load (0.1ms) SELECT "users".* FROM "users"
1250
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.707877', '2012-03-26 12:55:02.707877')
1251
+ User Load (0.2ms) SELECT "users".* FROM "users"
1252
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.711682', '2012-03-26 12:55:02.711682')
1253
+ User Load (0.2ms) SELECT "users".* FROM "users"
1254
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.714428', '2012-03-26 12:55:02.714428')
1255
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:55:02.715568', '2012-03-26 12:55:02.715568')
1256
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1257
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.718117', '2012-03-26 12:55:02.718117')
1258
+ User Load (0.4ms) SELECT "users".* FROM "users"
1259
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:02.743367', '2012-03-26 12:55:02.743367')
1260
+ User Load (0.1ms) SELECT "users".* FROM "users"
1261
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:55:02.746950', '2012-03-26 12:55:02.746950')
1262
+ User Load (0.1ms) SELECT "users".* FROM "users"
1263
+ Processing by UsersController#index as CSV
1264
+ User Load (0.2ms) SELECT "users".* FROM "users"
1265
+ Rendered text template (0.0ms)
1266
+ Sent data (1.8ms)
1267
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 4.7ms)
1268
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:55:02.763220', '2012-03-26 12:55:02.763220')
1269
+ User Load (0.1ms) SELECT "users".* FROM "users"
1270
+ Processing by UsersController#sjis as CSV
1271
+ User Load (0.2ms) SELECT "users".* FROM "users"
1272
+ Sent data (0.3ms)
1273
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
1274
+ SQL (0.2ms)  SELECT name
1275
+ FROM sqlite_master
1276
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1277
+ 
1278
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.288506', '2012-03-26 12:55:27.288506')
1279
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.297747', '2012-03-26 12:55:27.297747')
1280
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.299254', '2012-03-26 12:55:27.299254')
1281
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.301250', '2012-03-26 12:55:27.301250')
1282
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.302562', '2012-03-26 12:55:27.302562')
1283
+ User Load (0.2ms) SELECT "users".* FROM "users"
1284
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.311387', '2012-03-26 12:55:27.311387')
1285
+ User Load (0.1ms) SELECT "users".* FROM "users"
1286
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.314423', '2012-03-26 12:55:27.314423')
1287
+ User Load (0.1ms) SELECT "users".* FROM "users"
1288
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.317730', '2012-03-26 12:55:27.317730')
1289
+ User Load (0.2ms) SELECT "users".* FROM "users"
1290
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.321213', '2012-03-26 12:55:27.321213')
1291
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:55:27.322284', '2012-03-26 12:55:27.322284')
1292
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1293
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.324577', '2012-03-26 12:55:27.324577')
1294
+ User Load (0.2ms) SELECT "users".* FROM "users"
1295
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:27.349535', '2012-03-26 12:55:27.349535')
1296
+ User Load (0.2ms) SELECT "users".* FROM "users"
1297
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:55:27.353253', '2012-03-26 12:55:27.353253')
1298
+ User Load (0.2ms) SELECT "users".* FROM "users"
1299
+ Processing by UsersController#index as CSV
1300
+ User Load (0.2ms) SELECT "users".* FROM "users"
1301
+ Rendered text template (0.0ms)
1302
+ Sent data (1.9ms)
1303
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 4.6ms)
1304
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:55:27.369725', '2012-03-26 12:55:27.369725')
1305
+ User Load (0.1ms) SELECT "users".* FROM "users"
1306
+ Processing by UsersController#sjis as CSV
1307
+ User Load (0.2ms) SELECT "users".* FROM "users"
1308
+ Sent data (0.4ms)
1309
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.6ms)
1310
+ SQL (0.2ms)  SELECT name
1311
+ FROM sqlite_master
1312
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1313
+ 
1314
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.627302', '2012-03-26 12:55:35.627302')
1315
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.635818', '2012-03-26 12:55:35.635818')
1316
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.637984', '2012-03-26 12:55:35.637984')
1317
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.640301', '2012-03-26 12:55:35.640301')
1318
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.641545', '2012-03-26 12:55:35.641545')
1319
+ User Load (0.2ms) SELECT "users".* FROM "users"
1320
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.649101', '2012-03-26 12:55:35.649101')
1321
+ User Load (0.1ms) SELECT "users".* FROM "users"
1322
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.651809', '2012-03-26 12:55:35.651809')
1323
+ User Load (0.1ms) SELECT "users".* FROM "users"
1324
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.655021', '2012-03-26 12:55:35.655021')
1325
+ User Load (0.1ms) SELECT "users".* FROM "users"
1326
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.657485', '2012-03-26 12:55:35.657485')
1327
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:55:35.658371', '2012-03-26 12:55:35.658371')
1328
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1329
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.661282', '2012-03-26 12:55:35.661282')
1330
+ User Load (0.2ms) SELECT "users".* FROM "users"
1331
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:55:35.686819', '2012-03-26 12:55:35.686819')
1332
+ User Load (0.2ms) SELECT "users".* FROM "users"
1333
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:55:35.691190', '2012-03-26 12:55:35.691190')
1334
+ User Load (0.2ms) SELECT "users".* FROM "users"
1335
+ Processing by UsersController#index as CSV
1336
+ User Load (0.2ms) SELECT "users".* FROM "users"
1337
+ Rendered text template (0.0ms)
1338
+ Sent data (2.5ms)
1339
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 4.7ms)
1340
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:55:35.707940', '2012-03-26 12:55:35.707940')
1341
+ User Load (0.2ms) SELECT "users".* FROM "users"
1342
+ Processing by UsersController#sjis as CSV
1343
+ User Load (0.2ms) SELECT "users".* FROM "users"
1344
+ Sent data (0.3ms)
1345
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
1346
+ SQL (0.2ms)  SELECT name
1347
+ FROM sqlite_master
1348
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1349
+ 
1350
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.521931', '2012-03-26 12:56:25.521931')
1351
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.530501', '2012-03-26 12:56:25.530501')
1352
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.531902', '2012-03-26 12:56:25.531902')
1353
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.534460', '2012-03-26 12:56:25.534460')
1354
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.536037', '2012-03-26 12:56:25.536037')
1355
+ User Load (0.2ms) SELECT "users".* FROM "users"
1356
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.543711', '2012-03-26 12:56:25.543711')
1357
+ User Load (0.1ms) SELECT "users".* FROM "users"
1358
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.546376', '2012-03-26 12:56:25.546376')
1359
+ User Load (0.2ms) SELECT "users".* FROM "users"
1360
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.550474', '2012-03-26 12:56:25.550474')
1361
+ User Load (0.1ms) SELECT "users".* FROM "users"
1362
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.552991', '2012-03-26 12:56:25.552991')
1363
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:56:25.553871', '2012-03-26 12:56:25.553871')
1364
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1365
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.556027', '2012-03-26 12:56:25.556027')
1366
+ User Load (0.2ms) SELECT "users".* FROM "users"
1367
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:56:25.581162', '2012-03-26 12:56:25.581162')
1368
+ User Load (0.2ms) SELECT "users".* FROM "users"
1369
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:56:25.584632', '2012-03-26 12:56:25.584632')
1370
+ User Load (0.2ms) SELECT "users".* FROM "users"
1371
+ Processing by UsersController#index as CSV
1372
+ User Load (0.2ms) SELECT "users".* FROM "users"
1373
+ Rendered text template (0.0ms)
1374
+ Sent data (1.8ms)
1375
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 4.6ms)
1376
+ SQL (0.2ms)  SELECT name
1377
+ FROM sqlite_master
1378
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1379
+ 
1380
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.522155', '2012-03-26 12:57:08.522155')
1381
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.530532', '2012-03-26 12:57:08.530532')
1382
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.531992', '2012-03-26 12:57:08.531992')
1383
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.533896', '2012-03-26 12:57:08.533896')
1384
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.535155', '2012-03-26 12:57:08.535155')
1385
+ User Load (0.2ms) SELECT "users".* FROM "users"
1386
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.543512', '2012-03-26 12:57:08.543512')
1387
+ User Load (0.1ms) SELECT "users".* FROM "users"
1388
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.546222', '2012-03-26 12:57:08.546222')
1389
+ User Load (0.1ms) SELECT "users".* FROM "users"
1390
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.549442', '2012-03-26 12:57:08.549442')
1391
+ User Load (0.1ms) SELECT "users".* FROM "users"
1392
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.551848', '2012-03-26 12:57:08.551848')
1393
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:57:08.552760', '2012-03-26 12:57:08.552760')
1394
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1395
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.555088', '2012-03-26 12:57:08.555088')
1396
+ User Load (0.2ms) SELECT "users".* FROM "users"
1397
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:08.580630', '2012-03-26 12:57:08.580630')
1398
+ User Load (0.1ms) SELECT "users".* FROM "users"
1399
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:57:08.584167', '2012-03-26 12:57:08.584167')
1400
+ User Load (0.2ms) SELECT "users".* FROM "users"
1401
+ Processing by UsersController#index as CSV
1402
+ User Load (0.2ms) SELECT "users".* FROM "users"
1403
+ Rendered text template (0.0ms)
1404
+ Sent data (1.7ms)
1405
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 4.3ms)
1406
+ SQL (0.3ms)  SELECT name
1407
+ FROM sqlite_master
1408
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1409
+ 
1410
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.303927', '2012-03-26 12:57:42.303927')
1411
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.312939', '2012-03-26 12:57:42.312939')
1412
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.315011', '2012-03-26 12:57:42.315011')
1413
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.317459', '2012-03-26 12:57:42.317459')
1414
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.318725', '2012-03-26 12:57:42.318725')
1415
+ User Load (0.2ms) SELECT "users".* FROM "users"
1416
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.326576', '2012-03-26 12:57:42.326576')
1417
+ User Load (0.2ms) SELECT "users".* FROM "users"
1418
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.330249', '2012-03-26 12:57:42.330249')
1419
+ User Load (0.1ms) SELECT "users".* FROM "users"
1420
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.333897', '2012-03-26 12:57:42.333897')
1421
+ User Load (0.1ms) SELECT "users".* FROM "users"
1422
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.336363', '2012-03-26 12:57:42.336363')
1423
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:57:42.337562', '2012-03-26 12:57:42.337562')
1424
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1425
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.339823', '2012-03-26 12:57:42.339823')
1426
+ User Load (0.2ms) SELECT "users".* FROM "users"
1427
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:42.364838', '2012-03-26 12:57:42.364838')
1428
+ User Load (0.2ms) SELECT "users".* FROM "users"
1429
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:57:42.368354', '2012-03-26 12:57:42.368354')
1430
+ User Load (0.1ms) SELECT "users".* FROM "users"
1431
+ Processing by UsersController#index as CSV
1432
+ User Load (0.2ms) SELECT "users".* FROM "users"
1433
+ Rendered text template (0.0ms)
1434
+ Sent data (1.8ms)
1435
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 4.9ms)
1436
+ SQL (0.2ms)  SELECT name
1437
+ FROM sqlite_master
1438
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1439
+ 
1440
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.673315', '2012-03-26 12:57:58.673315')
1441
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.682359', '2012-03-26 12:57:58.682359')
1442
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.683793', '2012-03-26 12:57:58.683793')
1443
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.685669', '2012-03-26 12:57:58.685669')
1444
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.686874', '2012-03-26 12:57:58.686874')
1445
+ User Load (0.2ms) SELECT "users".* FROM "users"
1446
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.694479', '2012-03-26 12:57:58.694479')
1447
+ User Load (0.2ms) SELECT "users".* FROM "users"
1448
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.698036', '2012-03-26 12:57:58.698036')
1449
+ User Load (0.1ms) SELECT "users".* FROM "users"
1450
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.701581', '2012-03-26 12:57:58.701581')
1451
+ User Load (0.1ms) SELECT "users".* FROM "users"
1452
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.703946', '2012-03-26 12:57:58.703946')
1453
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:57:58.704828', '2012-03-26 12:57:58.704828')
1454
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1455
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.706978', '2012-03-26 12:57:58.706978')
1456
+ User Load (0.2ms) SELECT "users".* FROM "users"
1457
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:57:58.732173', '2012-03-26 12:57:58.732173')
1458
+ User Load (0.2ms) SELECT "users".* FROM "users"
1459
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:57:58.735936', '2012-03-26 12:57:58.735936')
1460
+ User Load (0.2ms) SELECT "users".* FROM "users"
1461
+ Processing by UsersController#index as CSV
1462
+ User Load (0.2ms) SELECT "users".* FROM "users"
1463
+ Rendered text template (0.0ms)
1464
+ Sent data (2.6ms)
1465
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 4.6ms)
1466
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:57:58.753154', '2012-03-26 12:57:58.753154')
1467
+ User Load (0.1ms) SELECT "users".* FROM "users"
1468
+ Processing by UsersController#sjis as CSV
1469
+ User Load (0.2ms) SELECT "users".* FROM "users"
1470
+ Sent data (0.3ms)
1471
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms)
1472
+ SQL (0.2ms)  SELECT name
1473
+ FROM sqlite_master
1474
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1475
+ 
1476
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.874930', '2012-03-26 12:59:07.874930')
1477
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.884143', '2012-03-26 12:59:07.884143')
1478
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.885649', '2012-03-26 12:59:07.885649')
1479
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.887551', '2012-03-26 12:59:07.887551')
1480
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.888812', '2012-03-26 12:59:07.888812')
1481
+ User Load (0.2ms) SELECT "users".* FROM "users"
1482
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.896981', '2012-03-26 12:59:07.896981')
1483
+ User Load (0.1ms) SELECT "users".* FROM "users"
1484
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.899741', '2012-03-26 12:59:07.899741')
1485
+ User Load (0.1ms) SELECT "users".* FROM "users"
1486
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.902884', '2012-03-26 12:59:07.902884')
1487
+ User Load (0.1ms) SELECT "users".* FROM "users"
1488
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.905234', '2012-03-26 12:59:07.905234')
1489
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 12:59:07.906145', '2012-03-26 12:59:07.906145')
1490
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1491
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.908888', '2012-03-26 12:59:07.908888')
1492
+ User Load (0.2ms) SELECT "users".* FROM "users"
1493
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 12:59:07.934221', '2012-03-26 12:59:07.934221')
1494
+ User Load (0.1ms) SELECT "users".* FROM "users"
1495
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:59:07.937671', '2012-03-26 12:59:07.937671')
1496
+ User Load (0.1ms) SELECT "users".* FROM "users"
1497
+ Processing by UsersController#index as CSV
1498
+ User Load (0.2ms) SELECT "users".* FROM "users"
1499
+ Rendered text template (0.0ms)
1500
+ Sent data (1.7ms)
1501
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 4.3ms)
1502
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 12:59:07.954007', '2012-03-26 12:59:07.954007')
1503
+ User Load (0.1ms) SELECT "users".* FROM "users"
1504
+ Processing by UsersController#sjis as CSV
1505
+ User Load (0.2ms) SELECT "users".* FROM "users"
1506
+ Sent data (0.3ms)
1507
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
1508
+ SQL (0.2ms)  SELECT name
1509
+ FROM sqlite_master
1510
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1511
+ 
1512
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.939204', '2012-03-26 13:00:01.939204')
1513
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.947603', '2012-03-26 13:00:01.947603')
1514
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.949109', '2012-03-26 13:00:01.949109')
1515
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.951012', '2012-03-26 13:00:01.951012')
1516
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.952394', '2012-03-26 13:00:01.952394')
1517
+ User Load (0.2ms) SELECT "users".* FROM "users"
1518
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.960841', '2012-03-26 13:00:01.960841')
1519
+ User Load (0.1ms) SELECT "users".* FROM "users"
1520
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.963680', '2012-03-26 13:00:01.963680')
1521
+ User Load (0.1ms) SELECT "users".* FROM "users"
1522
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.966981', '2012-03-26 13:00:01.966981')
1523
+ User Load (0.1ms) SELECT "users".* FROM "users"
1524
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.969455', '2012-03-26 13:00:01.969455')
1525
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-26 13:00:01.970348', '2012-03-26 13:00:01.970348')
1526
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1527
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.972654', '2012-03-26 13:00:01.972654')
1528
+ User Load (0.4ms) SELECT "users".* FROM "users"
1529
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-26 13:00:01.998736', '2012-03-26 13:00:01.998736')
1530
+ User Load (0.2ms) SELECT "users".* FROM "users"
1531
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 13:00:02.002362', '2012-03-26 13:00:02.002362')
1532
+ User Load (0.1ms) SELECT "users".* FROM "users"
1533
+ Processing by UsersController#index as CSV
1534
+ User Load (0.2ms) SELECT "users".* FROM "users"
1535
+ Rendered text template (0.0ms)
1536
+ Sent data (2.0ms)
1537
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 4.4ms)
1538
+ AREL (0.4ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-26 13:00:02.018770', '2012-03-26 13:00:02.018770')
1539
+ User Load (0.2ms) SELECT "users".* FROM "users"
1540
+ Processing by UsersController#sjis as CSV
1541
+ User Load (0.2ms) SELECT "users".* FROM "users"
1542
+ Sent data (0.3ms)
1543
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.8ms)
@@ -5,7 +5,7 @@ class UsersControllerTest < ActionController::TestCase
5
5
  setup do
6
6
  User.create(:name => 'yalab', :age => '4', :secret => 'secret')
7
7
  I18n.locale = :ja
8
- @csv = User.all.to_csv(:encoding => 'SJIS', :fields => [:id, :name, :age])
8
+ @csv = User.all.to_csv(:fields => [:id, :name, :age])
9
9
  end
10
10
  test "should get index" do
11
11
  get :index, :format => 'csv'
@@ -14,7 +14,7 @@ class UsersControllerTest < ActionController::TestCase
14
14
 
15
15
  test "should get sjis" do
16
16
  get :sjis, :format => 'csv'
17
- assert_equal @csv, response.body
17
+ assert_equal @csv.encode('SJIS'), response.body
18
18
  end
19
19
  teardown do
20
20
  I18n.locale = :en
@@ -20,11 +20,6 @@ class UserTest < ActiveSupport::TestCase
20
20
  assert_equal [@user.one], @user.to_csv_ary([:one])
21
21
  end
22
22
 
23
- test "#to_csv_ary accept encoding" do
24
- name = 'よしだ'
25
- assert_equal name.encode('SJIS'), User.create(:name => name).to_csv_ary([:name], :encoding => 'SJIS').first
26
- end
27
-
28
23
  test "#updated_at_as_csv" do
29
24
  assert_equal @user.updated_at.strftime("%F %H:%M"), @user.updated_at_as_csv
30
25
  end
@@ -68,4 +63,9 @@ class UserTest < ActiveSupport::TestCase
68
63
  I18n.locale = :en
69
64
  end
70
65
 
66
+ test "Array.to_csv accept encoding" do
67
+ I18n.locale = :ja
68
+ assert_equal "名前".encode('SJIS'), CSV.parse(User.all.to_csv(:fields => [:name], :encoding => 'SJIS')).first.first
69
+ I18n.locale = :en
70
+ end
71
71
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
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: 2012-03-25 00:00:00.000000000 Z
12
+ date: 2012-03-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &78480590 !ruby/object:Gem::Requirement
16
+ requirement: &82167080 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 3.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *78480590
24
+ version_requirements: *82167080
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: sqlite3
27
- requirement: &78479980 !ruby/object:Gem::Requirement
27
+ requirement: &82166240 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *78479980
35
+ version_requirements: *82166240
36
36
  description: The csv_rails gem provides a download csv file with rails.
37
37
  email:
38
38
  - rudeboyjet@gmail.com