awesome_print 1.9.2 → 2.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +1 -1
- data/Appraisals +2 -33
- data/CHANGELOG.md +6 -15
- data/CONTRIBUTING.md +0 -1
- data/README.md +7 -49
- data/lib/ap.rb +1 -5
- data/lib/awesome_print.rb +7 -29
- data/lib/awesome_print/colorize.rb +2 -0
- data/lib/awesome_print/core_ext/active_support.rb +7 -0
- data/lib/awesome_print/core_ext/awesome_method_array.rb +0 -6
- data/lib/awesome_print/core_ext/class.rb +0 -5
- data/lib/awesome_print/core_ext/kernel.rb +0 -5
- data/lib/awesome_print/core_ext/logger.rb +0 -5
- data/lib/awesome_print/core_ext/object.rb +0 -5
- data/lib/awesome_print/core_ext/string.rb +0 -5
- data/lib/awesome_print/custom_defaults.rb +1 -1
- data/lib/awesome_print/formatter.rb +38 -106
- data/lib/awesome_print/formatters/array_formatter.rb +11 -8
- data/lib/awesome_print/formatters/base_formatter.rb +20 -53
- data/lib/awesome_print/formatters/bigdecimal_formatter.rb +20 -0
- data/lib/awesome_print/formatters/class_formatter.rb +5 -6
- data/lib/awesome_print/formatters/dir_formatter.rb +4 -6
- data/lib/awesome_print/formatters/ext/active_model_error_formatter.rb +44 -0
- data/lib/awesome_print/formatters/ext/active_record_attributeset_formatter.rb +27 -0
- data/lib/awesome_print/formatters/ext/active_record_class_formatter.rb +43 -0
- data/lib/awesome_print/formatters/ext/active_record_instance_formatter.rb +48 -0
- data/lib/awesome_print/formatters/ext/active_record_relation_formatter.rb +19 -0
- data/lib/awesome_print/formatters/ext/bson_objectid_formatter.rb +20 -0
- data/lib/awesome_print/formatters/ext/hash_with_indifferent_access_formatter.rb +20 -0
- data/lib/awesome_print/formatters/ext/mongoid_document_formatter.rb +59 -0
- data/lib/awesome_print/formatters/ext/nokogiri_document_formatter.rb +30 -0
- data/lib/awesome_print/formatters/ext/nokogiri_node_formatter.rb +29 -0
- data/lib/awesome_print/formatters/ext/nokogiri_nodeset_formatter.rb +32 -0
- data/lib/awesome_print/formatters/ext/sequel_dataset_formatter.rb +20 -0
- data/lib/awesome_print/formatters/ext/sequel_model_class_formatter.rb +25 -0
- data/lib/awesome_print/formatters/ext/sequel_model_formatter.rb +26 -0
- data/lib/awesome_print/formatters/ext/time_with_zone_formatter.rb +24 -0
- data/lib/awesome_print/formatters/fallback_formatter.rb +55 -0
- data/lib/awesome_print/formatters/false_class_formatter.rb +15 -0
- data/lib/awesome_print/formatters/file_formatter.rb +4 -6
- data/lib/awesome_print/formatters/hash_formatter.rb +12 -7
- data/lib/awesome_print/formatters/integer_formatter.rb +11 -0
- data/lib/awesome_print/formatters/method_formatter.rb +8 -6
- data/lib/awesome_print/formatters/module_formatter.rb +18 -0
- data/lib/awesome_print/formatters/nil_class_formatter.rb +19 -0
- data/lib/awesome_print/formatters/object_formatter.rb +19 -9
- data/lib/awesome_print/formatters/open_struct.rb +19 -0
- data/lib/awesome_print/formatters/range_formatter.rb +11 -0
- data/lib/awesome_print/formatters/rational_formatter.rb +15 -0
- data/lib/awesome_print/formatters/set_formatter.rb +19 -0
- data/lib/awesome_print/formatters/simple_formatter.rb +10 -8
- data/lib/awesome_print/formatters/string_formatter.rb +14 -0
- data/lib/awesome_print/formatters/struct_formatter.rb +8 -6
- data/lib/awesome_print/formatters/symbol_formatter.rb +18 -0
- data/lib/awesome_print/formatters/true_class_formatter.rb +15 -0
- data/lib/awesome_print/formatters/unbound_method_formatter.rb +15 -0
- data/lib/awesome_print/inspector.rb +18 -17
- data/lib/awesome_print/limiter.rb +63 -0
- data/lib/awesome_print/registrar.rb +20 -0
- data/lib/awesome_print/version.rb +6 -6
- data/spec/formatters/array_spec.rb +251 -0
- data/spec/formatters/big_decimal_spec.rb +28 -0
- data/spec/formatters/class_spec.rb +91 -0
- data/spec/formatters/dir_file_spec.rb +43 -0
- data/spec/{ext → formatters/ext}/active_record_spec.rb +14 -58
- data/spec/{ext → formatters/ext}/active_support_spec.rb +7 -11
- data/spec/{ext → formatters/ext}/mongoid_spec.rb +2 -2
- data/spec/{ext → formatters/ext}/nokogiri_spec.rb +0 -0
- data/spec/formatters/hash_spec.rb +284 -0
- data/spec/{methods_spec.rb → formatters/methods_spec.rb} +3 -5
- data/spec/{objects_spec.rb → formatters/objects_spec.rb} +0 -0
- data/spec/{ext → formatters}/ostruct_spec.rb +1 -0
- data/spec/formatters/set_spec.rb +49 -0
- data/spec/formatters/struct_spec.rb +61 -0
- data/spec/merge_options_spec.rb +13 -0
- data/spec/misc_spec.rb +3 -10
- data/spec/spec_helper.rb +2 -9
- data/spec/support/ext_verifier.rb +0 -15
- data/spec/support/mongoid_versions.rb +4 -8
- data/spec/support/rails_versions.rb +2 -32
- metadata +100 -78
- data/awesome_print.gemspec +0 -33
- data/init.rb +0 -1
- data/lib/awesome_print/core_ext/method.rb +0 -21
- data/lib/awesome_print/ext/action_view.rb +0 -22
- data/lib/awesome_print/ext/active_record.rb +0 -103
- data/lib/awesome_print/ext/active_support.rb +0 -47
- data/lib/awesome_print/ext/mongo_mapper.rb +0 -124
- data/lib/awesome_print/ext/mongoid.rb +0 -67
- data/lib/awesome_print/ext/nobrainer.rb +0 -52
- data/lib/awesome_print/ext/nokogiri.rb +0 -45
- data/lib/awesome_print/ext/ostruct.rb +0 -27
- data/lib/awesome_print/ext/ripple.rb +0 -71
- data/lib/awesome_print/ext/sequel.rb +0 -58
- data/spec/ext/action_view_spec.rb +0 -21
- data/spec/ext/mongo_mapper_spec.rb +0 -261
- data/spec/ext/nobrainer_spec.rb +0 -59
- data/spec/ext/ripple_spec.rb +0 -48
- data/spec/formats_spec.rb +0 -779
- data/spec/support/active_record_data/3_2_diana.txt +0 -24
- data/spec/support/active_record_data/3_2_diana_legacy.txt +0 -24
- data/spec/support/active_record_data/3_2_multi.txt +0 -50
- data/spec/support/active_record_data/3_2_multi_legacy.txt +0 -50
- data/spec/support/active_record_data/4_0_diana.txt +0 -98
- data/spec/support/active_record_data/4_0_multi.txt +0 -198
- data/spec/support/active_record_data/4_1_diana.txt +0 -97
- data/spec/support/active_record_data/4_1_multi.txt +0 -196
- data/spec/support/active_record_data/4_2_diana.txt +0 -109
- data/spec/support/active_record_data/4_2_diana_legacy.txt +0 -109
- data/spec/support/active_record_data/4_2_multi.txt +0 -220
- data/spec/support/active_record_data/4_2_multi_legacy.txt +0 -220
- data/spec/support/active_record_data/6_0_diana.txt +0 -104
- data/spec/support/active_record_data/6_0_multi.txt +0 -210
- data/spec/support/active_record_data/6_1_diana.txt +0 -109
- data/spec/support/active_record_data/6_1_multi.txt +0 -220
@@ -1,24 +0,0 @@
|
|
1
|
-
#<User:placeholder_id
|
2
|
-
@aggregation_cache = {},
|
3
|
-
@attributes_cache = {},
|
4
|
-
@destroyed = false,
|
5
|
-
@marked_for_destruction = false,
|
6
|
-
@mass_assignment_options = nil,
|
7
|
-
@new_record = true,
|
8
|
-
@previously_changed = {},
|
9
|
-
@readonly = false,
|
10
|
-
attr_accessor :attributes = {
|
11
|
-
"admin" => false,
|
12
|
-
"created_at" => "1992-10-10 12:30:00",
|
13
|
-
"id" => nil,
|
14
|
-
"name" => "Diana",
|
15
|
-
"rank" => 1
|
16
|
-
},
|
17
|
-
attr_reader :association_cache = {},
|
18
|
-
attr_reader :changed_attributes = {
|
19
|
-
"admin" => nil,
|
20
|
-
"created_at" => nil,
|
21
|
-
"name" => nil,
|
22
|
-
"rank" => nil
|
23
|
-
}
|
24
|
-
>
|
@@ -1,24 +0,0 @@
|
|
1
|
-
#<User:placeholder_id
|
2
|
-
@aggregation_cache = {},
|
3
|
-
@attributes_cache = {},
|
4
|
-
@destroyed = false,
|
5
|
-
@marked_for_destruction = false,
|
6
|
-
@new_record = true,
|
7
|
-
@previously_changed = {},
|
8
|
-
@readonly = false,
|
9
|
-
attr_accessor :attributes = {
|
10
|
-
"admin" => false,
|
11
|
-
"created_at" => "1992-10-10 12:30:00",
|
12
|
-
"id" => nil,
|
13
|
-
"name" => "Diana",
|
14
|
-
"rank" => 1
|
15
|
-
},
|
16
|
-
attr_reader :association_cache = {},
|
17
|
-
attr_reader :changed_attributes = {
|
18
|
-
"admin" => nil,
|
19
|
-
"created_at" => nil,
|
20
|
-
"name" => nil,
|
21
|
-
"rank" => nil
|
22
|
-
},
|
23
|
-
attr_reader :mass_assignment_options = nil
|
24
|
-
>
|
@@ -1,50 +0,0 @@
|
|
1
|
-
[
|
2
|
-
[0] #<User:placeholder_id
|
3
|
-
@aggregation_cache = {},
|
4
|
-
@attributes_cache = {},
|
5
|
-
@destroyed = false,
|
6
|
-
@marked_for_destruction = false,
|
7
|
-
@mass_assignment_options = nil,
|
8
|
-
@new_record = true,
|
9
|
-
@previously_changed = {},
|
10
|
-
@readonly = false,
|
11
|
-
attr_accessor :attributes = {
|
12
|
-
"admin" => false,
|
13
|
-
"created_at" => "1992-10-10 12:30:00",
|
14
|
-
"id" => nil,
|
15
|
-
"name" => "Diana",
|
16
|
-
"rank" => 1
|
17
|
-
},
|
18
|
-
attr_reader :association_cache = {},
|
19
|
-
attr_reader :changed_attributes = {
|
20
|
-
"admin" => nil,
|
21
|
-
"created_at" => nil,
|
22
|
-
"name" => nil,
|
23
|
-
"rank" => nil
|
24
|
-
}
|
25
|
-
>,
|
26
|
-
[1] #<User:placeholder_id
|
27
|
-
@aggregation_cache = {},
|
28
|
-
@attributes_cache = {},
|
29
|
-
@destroyed = false,
|
30
|
-
@marked_for_destruction = false,
|
31
|
-
@mass_assignment_options = nil,
|
32
|
-
@new_record = true,
|
33
|
-
@previously_changed = {},
|
34
|
-
@readonly = false,
|
35
|
-
attr_accessor :attributes = {
|
36
|
-
"admin" => true,
|
37
|
-
"created_at" => "2003-05-26 14:15:00",
|
38
|
-
"id" => nil,
|
39
|
-
"name" => "Laura",
|
40
|
-
"rank" => 2
|
41
|
-
},
|
42
|
-
attr_reader :association_cache = {},
|
43
|
-
attr_reader :changed_attributes = {
|
44
|
-
"admin" => nil,
|
45
|
-
"created_at" => nil,
|
46
|
-
"name" => nil,
|
47
|
-
"rank" => nil
|
48
|
-
}
|
49
|
-
>
|
50
|
-
]
|
@@ -1,50 +0,0 @@
|
|
1
|
-
[
|
2
|
-
[0] #<User:placeholder_id
|
3
|
-
@aggregation_cache = {},
|
4
|
-
@attributes_cache = {},
|
5
|
-
@destroyed = false,
|
6
|
-
@marked_for_destruction = false,
|
7
|
-
@new_record = true,
|
8
|
-
@previously_changed = {},
|
9
|
-
@readonly = false,
|
10
|
-
attr_accessor :attributes = {
|
11
|
-
"admin" => false,
|
12
|
-
"created_at" => "1992-10-10 12:30:00",
|
13
|
-
"id" => nil,
|
14
|
-
"name" => "Diana",
|
15
|
-
"rank" => 1
|
16
|
-
},
|
17
|
-
attr_reader :association_cache = {},
|
18
|
-
attr_reader :changed_attributes = {
|
19
|
-
"admin" => nil,
|
20
|
-
"created_at" => nil,
|
21
|
-
"name" => nil,
|
22
|
-
"rank" => nil
|
23
|
-
},
|
24
|
-
attr_reader :mass_assignment_options = nil
|
25
|
-
>,
|
26
|
-
[1] #<User:placeholder_id
|
27
|
-
@aggregation_cache = {},
|
28
|
-
@attributes_cache = {},
|
29
|
-
@destroyed = false,
|
30
|
-
@marked_for_destruction = false,
|
31
|
-
@new_record = true,
|
32
|
-
@previously_changed = {},
|
33
|
-
@readonly = false,
|
34
|
-
attr_accessor :attributes = {
|
35
|
-
"admin" => true,
|
36
|
-
"created_at" => "2003-05-26 14:15:00",
|
37
|
-
"id" => nil,
|
38
|
-
"name" => "Laura",
|
39
|
-
"rank" => 2
|
40
|
-
},
|
41
|
-
attr_reader :association_cache = {},
|
42
|
-
attr_reader :changed_attributes = {
|
43
|
-
"admin" => nil,
|
44
|
-
"created_at" => nil,
|
45
|
-
"name" => nil,
|
46
|
-
"rank" => nil
|
47
|
-
},
|
48
|
-
attr_reader :mass_assignment_options = nil
|
49
|
-
>
|
50
|
-
]
|
@@ -1,98 +0,0 @@
|
|
1
|
-
#<User:placeholder_id
|
2
|
-
@_start_transaction_state = {},
|
3
|
-
@aggregation_cache = {},
|
4
|
-
@attributes_cache = {},
|
5
|
-
@column_types = {
|
6
|
-
"admin" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
7
|
-
attr_accessor :coder = nil,
|
8
|
-
attr_accessor :primary = false,
|
9
|
-
attr_reader :default = nil,
|
10
|
-
attr_reader :default_function = nil,
|
11
|
-
attr_reader :limit = nil,
|
12
|
-
attr_reader :name = "admin",
|
13
|
-
attr_reader :null = true,
|
14
|
-
attr_reader :precision = nil,
|
15
|
-
attr_reader :scale = nil,
|
16
|
-
attr_reader :sql_type = "boolean",
|
17
|
-
attr_reader :type = :boolean
|
18
|
-
>,
|
19
|
-
"created_at" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
20
|
-
attr_accessor :coder = nil,
|
21
|
-
attr_accessor :primary = false,
|
22
|
-
attr_reader :default = nil,
|
23
|
-
attr_reader :default_function = nil,
|
24
|
-
attr_reader :limit = nil,
|
25
|
-
attr_reader :name = "created_at",
|
26
|
-
attr_reader :null = true,
|
27
|
-
attr_reader :precision = nil,
|
28
|
-
attr_reader :scale = nil,
|
29
|
-
attr_reader :sql_type = "datetime",
|
30
|
-
attr_reader :type = :datetime
|
31
|
-
>,
|
32
|
-
"id" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
33
|
-
attr_accessor :coder = nil,
|
34
|
-
attr_accessor :primary = true,
|
35
|
-
attr_reader :default = nil,
|
36
|
-
attr_reader :default_function = nil,
|
37
|
-
attr_reader :limit = nil,
|
38
|
-
attr_reader :name = "id",
|
39
|
-
attr_reader :null = false,
|
40
|
-
attr_reader :precision = nil,
|
41
|
-
attr_reader :scale = nil,
|
42
|
-
attr_reader :sql_type = "INTEGER",
|
43
|
-
attr_reader :type = :integer
|
44
|
-
>,
|
45
|
-
"name" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
46
|
-
attr_accessor :coder = nil,
|
47
|
-
attr_accessor :primary = false,
|
48
|
-
attr_reader :default = nil,
|
49
|
-
attr_reader :default_function = nil,
|
50
|
-
attr_reader :limit = 255,
|
51
|
-
attr_reader :name = "name",
|
52
|
-
attr_reader :null = true,
|
53
|
-
attr_reader :precision = nil,
|
54
|
-
attr_reader :scale = nil,
|
55
|
-
attr_reader :sql_type = "varchar(255)",
|
56
|
-
attr_reader :type = :string
|
57
|
-
>,
|
58
|
-
"rank" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
59
|
-
attr_accessor :coder = nil,
|
60
|
-
attr_accessor :primary = false,
|
61
|
-
attr_reader :default = nil,
|
62
|
-
attr_reader :default_function = nil,
|
63
|
-
attr_reader :limit = nil,
|
64
|
-
attr_reader :name = "rank",
|
65
|
-
attr_reader :null = true,
|
66
|
-
attr_reader :precision = nil,
|
67
|
-
attr_reader :scale = nil,
|
68
|
-
attr_reader :sql_type = "integer",
|
69
|
-
attr_reader :type = :integer
|
70
|
-
>
|
71
|
-
},
|
72
|
-
@column_types_override = nil,
|
73
|
-
@destroyed = false,
|
74
|
-
@marked_for_destruction = false,
|
75
|
-
@new_record = true,
|
76
|
-
@previously_changed = {},
|
77
|
-
@readonly = false,
|
78
|
-
@reflects_state = [
|
79
|
-
[0] false
|
80
|
-
],
|
81
|
-
@transaction_state = nil,
|
82
|
-
@txn = nil,
|
83
|
-
attr_accessor :attributes = {
|
84
|
-
"admin" => false,
|
85
|
-
"created_at" => "1992-10-10 12:30:00",
|
86
|
-
"id" => nil,
|
87
|
-
"name" => "Diana",
|
88
|
-
"rank" => 1
|
89
|
-
},
|
90
|
-
attr_accessor :destroyed_by_association = nil,
|
91
|
-
attr_reader :association_cache = {},
|
92
|
-
attr_reader :changed_attributes = {
|
93
|
-
"admin" => nil,
|
94
|
-
"created_at" => nil,
|
95
|
-
"name" => nil,
|
96
|
-
"rank" => nil
|
97
|
-
}
|
98
|
-
>
|
@@ -1,198 +0,0 @@
|
|
1
|
-
[
|
2
|
-
[0] #<User:placeholder_id
|
3
|
-
@_start_transaction_state = {},
|
4
|
-
@aggregation_cache = {},
|
5
|
-
@attributes_cache = {},
|
6
|
-
@column_types = {
|
7
|
-
"admin" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
8
|
-
attr_accessor :coder = nil,
|
9
|
-
attr_accessor :primary = false,
|
10
|
-
attr_reader :default = nil,
|
11
|
-
attr_reader :default_function = nil,
|
12
|
-
attr_reader :limit = nil,
|
13
|
-
attr_reader :name = "admin",
|
14
|
-
attr_reader :null = true,
|
15
|
-
attr_reader :precision = nil,
|
16
|
-
attr_reader :scale = nil,
|
17
|
-
attr_reader :sql_type = "boolean",
|
18
|
-
attr_reader :type = :boolean
|
19
|
-
>,
|
20
|
-
"created_at" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
21
|
-
attr_accessor :coder = nil,
|
22
|
-
attr_accessor :primary = false,
|
23
|
-
attr_reader :default = nil,
|
24
|
-
attr_reader :default_function = nil,
|
25
|
-
attr_reader :limit = nil,
|
26
|
-
attr_reader :name = "created_at",
|
27
|
-
attr_reader :null = true,
|
28
|
-
attr_reader :precision = nil,
|
29
|
-
attr_reader :scale = nil,
|
30
|
-
attr_reader :sql_type = "datetime",
|
31
|
-
attr_reader :type = :datetime
|
32
|
-
>,
|
33
|
-
"id" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
34
|
-
attr_accessor :coder = nil,
|
35
|
-
attr_accessor :primary = true,
|
36
|
-
attr_reader :default = nil,
|
37
|
-
attr_reader :default_function = nil,
|
38
|
-
attr_reader :limit = nil,
|
39
|
-
attr_reader :name = "id",
|
40
|
-
attr_reader :null = false,
|
41
|
-
attr_reader :precision = nil,
|
42
|
-
attr_reader :scale = nil,
|
43
|
-
attr_reader :sql_type = "INTEGER",
|
44
|
-
attr_reader :type = :integer
|
45
|
-
>,
|
46
|
-
"name" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
47
|
-
attr_accessor :coder = nil,
|
48
|
-
attr_accessor :primary = false,
|
49
|
-
attr_reader :default = nil,
|
50
|
-
attr_reader :default_function = nil,
|
51
|
-
attr_reader :limit = 255,
|
52
|
-
attr_reader :name = "name",
|
53
|
-
attr_reader :null = true,
|
54
|
-
attr_reader :precision = nil,
|
55
|
-
attr_reader :scale = nil,
|
56
|
-
attr_reader :sql_type = "varchar(255)",
|
57
|
-
attr_reader :type = :string
|
58
|
-
>,
|
59
|
-
"rank" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
60
|
-
attr_accessor :coder = nil,
|
61
|
-
attr_accessor :primary = false,
|
62
|
-
attr_reader :default = nil,
|
63
|
-
attr_reader :default_function = nil,
|
64
|
-
attr_reader :limit = nil,
|
65
|
-
attr_reader :name = "rank",
|
66
|
-
attr_reader :null = true,
|
67
|
-
attr_reader :precision = nil,
|
68
|
-
attr_reader :scale = nil,
|
69
|
-
attr_reader :sql_type = "integer",
|
70
|
-
attr_reader :type = :integer
|
71
|
-
>
|
72
|
-
},
|
73
|
-
@column_types_override = nil,
|
74
|
-
@destroyed = false,
|
75
|
-
@marked_for_destruction = false,
|
76
|
-
@new_record = true,
|
77
|
-
@previously_changed = {},
|
78
|
-
@readonly = false,
|
79
|
-
@reflects_state = [
|
80
|
-
[0] false
|
81
|
-
],
|
82
|
-
@transaction_state = nil,
|
83
|
-
@txn = nil,
|
84
|
-
attr_accessor :attributes = {
|
85
|
-
"admin" => false,
|
86
|
-
"created_at" => "1992-10-10 12:30:00",
|
87
|
-
"id" => nil,
|
88
|
-
"name" => "Diana",
|
89
|
-
"rank" => 1
|
90
|
-
},
|
91
|
-
attr_accessor :destroyed_by_association = nil,
|
92
|
-
attr_reader :association_cache = {},
|
93
|
-
attr_reader :changed_attributes = {
|
94
|
-
"admin" => nil,
|
95
|
-
"created_at" => nil,
|
96
|
-
"name" => nil,
|
97
|
-
"rank" => nil
|
98
|
-
}
|
99
|
-
>,
|
100
|
-
[1] #<User:placeholder_id
|
101
|
-
@_start_transaction_state = {},
|
102
|
-
@aggregation_cache = {},
|
103
|
-
@attributes_cache = {},
|
104
|
-
@column_types = {
|
105
|
-
"admin" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
106
|
-
attr_accessor :coder = nil,
|
107
|
-
attr_accessor :primary = false,
|
108
|
-
attr_reader :default = nil,
|
109
|
-
attr_reader :default_function = nil,
|
110
|
-
attr_reader :limit = nil,
|
111
|
-
attr_reader :name = "admin",
|
112
|
-
attr_reader :null = true,
|
113
|
-
attr_reader :precision = nil,
|
114
|
-
attr_reader :scale = nil,
|
115
|
-
attr_reader :sql_type = "boolean",
|
116
|
-
attr_reader :type = :boolean
|
117
|
-
>,
|
118
|
-
"created_at" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
119
|
-
attr_accessor :coder = nil,
|
120
|
-
attr_accessor :primary = false,
|
121
|
-
attr_reader :default = nil,
|
122
|
-
attr_reader :default_function = nil,
|
123
|
-
attr_reader :limit = nil,
|
124
|
-
attr_reader :name = "created_at",
|
125
|
-
attr_reader :null = true,
|
126
|
-
attr_reader :precision = nil,
|
127
|
-
attr_reader :scale = nil,
|
128
|
-
attr_reader :sql_type = "datetime",
|
129
|
-
attr_reader :type = :datetime
|
130
|
-
>,
|
131
|
-
"id" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
132
|
-
attr_accessor :coder = nil,
|
133
|
-
attr_accessor :primary = true,
|
134
|
-
attr_reader :default = nil,
|
135
|
-
attr_reader :default_function = nil,
|
136
|
-
attr_reader :limit = nil,
|
137
|
-
attr_reader :name = "id",
|
138
|
-
attr_reader :null = false,
|
139
|
-
attr_reader :precision = nil,
|
140
|
-
attr_reader :scale = nil,
|
141
|
-
attr_reader :sql_type = "INTEGER",
|
142
|
-
attr_reader :type = :integer
|
143
|
-
>,
|
144
|
-
"name" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
145
|
-
attr_accessor :coder = nil,
|
146
|
-
attr_accessor :primary = false,
|
147
|
-
attr_reader :default = nil,
|
148
|
-
attr_reader :default_function = nil,
|
149
|
-
attr_reader :limit = 255,
|
150
|
-
attr_reader :name = "name",
|
151
|
-
attr_reader :null = true,
|
152
|
-
attr_reader :precision = nil,
|
153
|
-
attr_reader :scale = nil,
|
154
|
-
attr_reader :sql_type = "varchar(255)",
|
155
|
-
attr_reader :type = :string
|
156
|
-
>,
|
157
|
-
"rank" => #<ActiveRecord::ConnectionAdapters::SQLite3Column:placeholder_id
|
158
|
-
attr_accessor :coder = nil,
|
159
|
-
attr_accessor :primary = false,
|
160
|
-
attr_reader :default = nil,
|
161
|
-
attr_reader :default_function = nil,
|
162
|
-
attr_reader :limit = nil,
|
163
|
-
attr_reader :name = "rank",
|
164
|
-
attr_reader :null = true,
|
165
|
-
attr_reader :precision = nil,
|
166
|
-
attr_reader :scale = nil,
|
167
|
-
attr_reader :sql_type = "integer",
|
168
|
-
attr_reader :type = :integer
|
169
|
-
>
|
170
|
-
},
|
171
|
-
@column_types_override = nil,
|
172
|
-
@destroyed = false,
|
173
|
-
@marked_for_destruction = false,
|
174
|
-
@new_record = true,
|
175
|
-
@previously_changed = {},
|
176
|
-
@readonly = false,
|
177
|
-
@reflects_state = [
|
178
|
-
[0] false
|
179
|
-
],
|
180
|
-
@transaction_state = nil,
|
181
|
-
@txn = nil,
|
182
|
-
attr_accessor :attributes = {
|
183
|
-
"admin" => true,
|
184
|
-
"created_at" => "2003-05-26 14:15:00",
|
185
|
-
"id" => nil,
|
186
|
-
"name" => "Laura",
|
187
|
-
"rank" => 2
|
188
|
-
},
|
189
|
-
attr_accessor :destroyed_by_association = nil,
|
190
|
-
attr_reader :association_cache = {},
|
191
|
-
attr_reader :changed_attributes = {
|
192
|
-
"admin" => nil,
|
193
|
-
"created_at" => nil,
|
194
|
-
"name" => nil,
|
195
|
-
"rank" => nil
|
196
|
-
}
|
197
|
-
>
|
198
|
-
]
|