awesome_print 1.8.0 → 1.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +1 -0
- data/Appraisals +43 -44
- data/CHANGELOG.md +20 -2
- data/CONTRIBUTING.md +1 -0
- data/LICENSE +16 -19
- data/README.md +43 -8
- data/awesome_print.gemspec +33 -0
- data/init.rb +1 -0
- data/lib/awesome_print/custom_defaults.rb +1 -1
- data/lib/awesome_print/ext/active_record.rb +26 -1
- data/lib/awesome_print/formatter.rb +20 -12
- data/lib/awesome_print/formatters/array_formatter.rb +2 -2
- data/lib/awesome_print/formatters/base_formatter.rb +3 -3
- data/lib/awesome_print/formatters/hash_formatter.rb +2 -2
- data/lib/awesome_print/formatters/object_formatter.rb +5 -2
- data/lib/awesome_print/inspector.rb +6 -3
- data/lib/awesome_print/version.rb +1 -1
- data/spec/ext/action_view_spec.rb +5 -2
- data/spec/ext/active_record_spec.rb +57 -49
- data/spec/ext/active_support_spec.rb +5 -1
- data/spec/ext/mongoid_spec.rb +2 -39
- data/spec/formats_spec.rb +4 -4
- data/spec/methods_spec.rb +10 -2
- data/spec/misc_spec.rb +25 -18
- data/spec/objects_spec.rb +49 -0
- data/spec/spec_helper.rb +4 -2
- data/spec/support/active_record_data/5_1_diana.txt +104 -0
- data/spec/support/active_record_data/5_1_multi.txt +210 -0
- data/spec/support/active_record_data/5_2_diana.txt +104 -0
- data/spec/support/active_record_data/5_2_multi.txt +210 -0
- data/spec/support/active_record_data/6_0_diana.txt +104 -0
- data/spec/support/active_record_data/6_0_multi.txt +210 -0
- data/spec/support/active_record_data/6_1_diana.txt +109 -0
- data/spec/support/active_record_data/6_1_multi.txt +220 -0
- data/spec/support/mongoid_versions.rb +10 -6
- data/spec/support/rails_versions.rb +20 -0
- metadata +45 -56
@@ -0,0 +1,104 @@
|
|
1
|
+
#<User:placeholder_id
|
2
|
+
@_start_transaction_state = {},
|
3
|
+
@aggregation_cache = {},
|
4
|
+
@association_cache = {},
|
5
|
+
@destroyed = false,
|
6
|
+
@marked_for_destruction = false,
|
7
|
+
@new_record = true,
|
8
|
+
@readonly = false,
|
9
|
+
@transaction_state = nil,
|
10
|
+
attr_accessor :attributes = #<ActiveModel::AttributeSet:placeholder_id
|
11
|
+
@attributes = {
|
12
|
+
"admin" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
13
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
14
|
+
@original_attribute = nil,
|
15
|
+
attr_reader :name = "admin",
|
16
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
17
|
+
attr_reader :limit = nil,
|
18
|
+
attr_reader :precision = nil,
|
19
|
+
attr_reader :scale = nil
|
20
|
+
>,
|
21
|
+
attr_reader :value_before_type_cast = nil
|
22
|
+
>,
|
23
|
+
attr_reader :name = "admin",
|
24
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
25
|
+
attr_reader :limit = nil,
|
26
|
+
attr_reader :precision = nil,
|
27
|
+
attr_reader :scale = nil
|
28
|
+
>,
|
29
|
+
attr_reader :value_before_type_cast = false
|
30
|
+
>,
|
31
|
+
"created_at" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
32
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
33
|
+
@original_attribute = nil,
|
34
|
+
attr_reader :name = "created_at",
|
35
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
36
|
+
attr_reader :limit = nil,
|
37
|
+
attr_reader :precision = nil,
|
38
|
+
attr_reader :scale = nil
|
39
|
+
>,
|
40
|
+
attr_reader :value_before_type_cast = nil
|
41
|
+
>,
|
42
|
+
attr_reader :name = "created_at",
|
43
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
44
|
+
attr_reader :limit = nil,
|
45
|
+
attr_reader :precision = nil,
|
46
|
+
attr_reader :scale = nil
|
47
|
+
>,
|
48
|
+
attr_reader :value_before_type_cast = "1992-10-10 12:30:00"
|
49
|
+
>,
|
50
|
+
"id" => #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
51
|
+
@original_attribute = nil,
|
52
|
+
attr_reader :name = "id",
|
53
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
54
|
+
@range = -9223372036854775808...9223372036854775808,
|
55
|
+
attr_reader :limit = nil,
|
56
|
+
attr_reader :precision = nil,
|
57
|
+
attr_reader :scale = nil
|
58
|
+
>,
|
59
|
+
attr_reader :value_before_type_cast = nil
|
60
|
+
>,
|
61
|
+
"name" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
62
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
63
|
+
@original_attribute = nil,
|
64
|
+
attr_reader :name = "name",
|
65
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
66
|
+
attr_reader :limit = nil,
|
67
|
+
attr_reader :precision = nil,
|
68
|
+
attr_reader :scale = nil
|
69
|
+
>,
|
70
|
+
attr_reader :value_before_type_cast = nil
|
71
|
+
>,
|
72
|
+
attr_reader :name = "name",
|
73
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
74
|
+
attr_reader :limit = nil,
|
75
|
+
attr_reader :precision = nil,
|
76
|
+
attr_reader :scale = nil
|
77
|
+
>,
|
78
|
+
attr_reader :value_before_type_cast = "Diana"
|
79
|
+
>,
|
80
|
+
"rank" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
81
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
82
|
+
@original_attribute = nil,
|
83
|
+
attr_reader :name = "rank",
|
84
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
85
|
+
@range = -9223372036854775808...9223372036854775808,
|
86
|
+
attr_reader :limit = nil,
|
87
|
+
attr_reader :precision = nil,
|
88
|
+
attr_reader :scale = nil
|
89
|
+
>,
|
90
|
+
attr_reader :value_before_type_cast = nil
|
91
|
+
>,
|
92
|
+
attr_reader :name = "rank",
|
93
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
94
|
+
@range = -9223372036854775808...9223372036854775808,
|
95
|
+
attr_reader :limit = nil,
|
96
|
+
attr_reader :precision = nil,
|
97
|
+
attr_reader :scale = nil
|
98
|
+
>,
|
99
|
+
attr_reader :value_before_type_cast = 1
|
100
|
+
>
|
101
|
+
}
|
102
|
+
>,
|
103
|
+
attr_accessor :destroyed_by_association = nil
|
104
|
+
>
|
@@ -0,0 +1,210 @@
|
|
1
|
+
[
|
2
|
+
[0] #<User:placeholder_id
|
3
|
+
@_start_transaction_state = {},
|
4
|
+
@aggregation_cache = {},
|
5
|
+
@association_cache = {},
|
6
|
+
@destroyed = false,
|
7
|
+
@marked_for_destruction = false,
|
8
|
+
@new_record = true,
|
9
|
+
@readonly = false,
|
10
|
+
@transaction_state = nil,
|
11
|
+
attr_accessor :attributes = #<ActiveModel::AttributeSet:placeholder_id
|
12
|
+
@attributes = {
|
13
|
+
"admin" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
14
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
15
|
+
@original_attribute = nil,
|
16
|
+
attr_reader :name = "admin",
|
17
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
18
|
+
attr_reader :limit = nil,
|
19
|
+
attr_reader :precision = nil,
|
20
|
+
attr_reader :scale = nil
|
21
|
+
>,
|
22
|
+
attr_reader :value_before_type_cast = nil
|
23
|
+
>,
|
24
|
+
attr_reader :name = "admin",
|
25
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
26
|
+
attr_reader :limit = nil,
|
27
|
+
attr_reader :precision = nil,
|
28
|
+
attr_reader :scale = nil
|
29
|
+
>,
|
30
|
+
attr_reader :value_before_type_cast = false
|
31
|
+
>,
|
32
|
+
"created_at" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
33
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
34
|
+
@original_attribute = nil,
|
35
|
+
attr_reader :name = "created_at",
|
36
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
37
|
+
attr_reader :limit = nil,
|
38
|
+
attr_reader :precision = nil,
|
39
|
+
attr_reader :scale = nil
|
40
|
+
>,
|
41
|
+
attr_reader :value_before_type_cast = nil
|
42
|
+
>,
|
43
|
+
attr_reader :name = "created_at",
|
44
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
45
|
+
attr_reader :limit = nil,
|
46
|
+
attr_reader :precision = nil,
|
47
|
+
attr_reader :scale = nil
|
48
|
+
>,
|
49
|
+
attr_reader :value_before_type_cast = "1992-10-10 12:30:00"
|
50
|
+
>,
|
51
|
+
"id" => #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
52
|
+
@original_attribute = nil,
|
53
|
+
attr_reader :name = "id",
|
54
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
55
|
+
@range = -9223372036854775808...9223372036854775808,
|
56
|
+
attr_reader :limit = nil,
|
57
|
+
attr_reader :precision = nil,
|
58
|
+
attr_reader :scale = nil
|
59
|
+
>,
|
60
|
+
attr_reader :value_before_type_cast = nil
|
61
|
+
>,
|
62
|
+
"name" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
63
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
64
|
+
@original_attribute = nil,
|
65
|
+
attr_reader :name = "name",
|
66
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
67
|
+
attr_reader :limit = nil,
|
68
|
+
attr_reader :precision = nil,
|
69
|
+
attr_reader :scale = nil
|
70
|
+
>,
|
71
|
+
attr_reader :value_before_type_cast = nil
|
72
|
+
>,
|
73
|
+
attr_reader :name = "name",
|
74
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
75
|
+
attr_reader :limit = nil,
|
76
|
+
attr_reader :precision = nil,
|
77
|
+
attr_reader :scale = nil
|
78
|
+
>,
|
79
|
+
attr_reader :value_before_type_cast = "Diana"
|
80
|
+
>,
|
81
|
+
"rank" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
82
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
83
|
+
@original_attribute = nil,
|
84
|
+
attr_reader :name = "rank",
|
85
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
86
|
+
@range = -9223372036854775808...9223372036854775808,
|
87
|
+
attr_reader :limit = nil,
|
88
|
+
attr_reader :precision = nil,
|
89
|
+
attr_reader :scale = nil
|
90
|
+
>,
|
91
|
+
attr_reader :value_before_type_cast = nil
|
92
|
+
>,
|
93
|
+
attr_reader :name = "rank",
|
94
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
95
|
+
@range = -9223372036854775808...9223372036854775808,
|
96
|
+
attr_reader :limit = nil,
|
97
|
+
attr_reader :precision = nil,
|
98
|
+
attr_reader :scale = nil
|
99
|
+
>,
|
100
|
+
attr_reader :value_before_type_cast = 1
|
101
|
+
>
|
102
|
+
}
|
103
|
+
>,
|
104
|
+
attr_accessor :destroyed_by_association = nil
|
105
|
+
>,
|
106
|
+
[1] #<User:placeholder_id
|
107
|
+
@_start_transaction_state = {},
|
108
|
+
@aggregation_cache = {},
|
109
|
+
@association_cache = {},
|
110
|
+
@destroyed = false,
|
111
|
+
@marked_for_destruction = false,
|
112
|
+
@new_record = true,
|
113
|
+
@readonly = false,
|
114
|
+
@transaction_state = nil,
|
115
|
+
attr_accessor :attributes = #<ActiveModel::AttributeSet:placeholder_id
|
116
|
+
@attributes = {
|
117
|
+
"admin" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
118
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
119
|
+
@original_attribute = nil,
|
120
|
+
attr_reader :name = "admin",
|
121
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
122
|
+
attr_reader :limit = nil,
|
123
|
+
attr_reader :precision = nil,
|
124
|
+
attr_reader :scale = nil
|
125
|
+
>,
|
126
|
+
attr_reader :value_before_type_cast = nil
|
127
|
+
>,
|
128
|
+
attr_reader :name = "admin",
|
129
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
130
|
+
attr_reader :limit = nil,
|
131
|
+
attr_reader :precision = nil,
|
132
|
+
attr_reader :scale = nil
|
133
|
+
>,
|
134
|
+
attr_reader :value_before_type_cast = true
|
135
|
+
>,
|
136
|
+
"created_at" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
137
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
138
|
+
@original_attribute = nil,
|
139
|
+
attr_reader :name = "created_at",
|
140
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
141
|
+
attr_reader :limit = nil,
|
142
|
+
attr_reader :precision = nil,
|
143
|
+
attr_reader :scale = nil
|
144
|
+
>,
|
145
|
+
attr_reader :value_before_type_cast = nil
|
146
|
+
>,
|
147
|
+
attr_reader :name = "created_at",
|
148
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
149
|
+
attr_reader :limit = nil,
|
150
|
+
attr_reader :precision = nil,
|
151
|
+
attr_reader :scale = nil
|
152
|
+
>,
|
153
|
+
attr_reader :value_before_type_cast = "2003-05-26 14:15:00"
|
154
|
+
>,
|
155
|
+
"id" => #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
156
|
+
@original_attribute = nil,
|
157
|
+
attr_reader :name = "id",
|
158
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
159
|
+
@range = -9223372036854775808...9223372036854775808,
|
160
|
+
attr_reader :limit = nil,
|
161
|
+
attr_reader :precision = nil,
|
162
|
+
attr_reader :scale = nil
|
163
|
+
>,
|
164
|
+
attr_reader :value_before_type_cast = nil
|
165
|
+
>,
|
166
|
+
"name" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
167
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
168
|
+
@original_attribute = nil,
|
169
|
+
attr_reader :name = "name",
|
170
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
171
|
+
attr_reader :limit = nil,
|
172
|
+
attr_reader :precision = nil,
|
173
|
+
attr_reader :scale = nil
|
174
|
+
>,
|
175
|
+
attr_reader :value_before_type_cast = nil
|
176
|
+
>,
|
177
|
+
attr_reader :name = "name",
|
178
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
179
|
+
attr_reader :limit = nil,
|
180
|
+
attr_reader :precision = nil,
|
181
|
+
attr_reader :scale = nil
|
182
|
+
>,
|
183
|
+
attr_reader :value_before_type_cast = "Laura"
|
184
|
+
>,
|
185
|
+
"rank" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
186
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
187
|
+
@original_attribute = nil,
|
188
|
+
attr_reader :name = "rank",
|
189
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
190
|
+
@range = -9223372036854775808...9223372036854775808,
|
191
|
+
attr_reader :limit = nil,
|
192
|
+
attr_reader :precision = nil,
|
193
|
+
attr_reader :scale = nil
|
194
|
+
>,
|
195
|
+
attr_reader :value_before_type_cast = nil
|
196
|
+
>,
|
197
|
+
attr_reader :name = "rank",
|
198
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
199
|
+
@range = -9223372036854775808...9223372036854775808,
|
200
|
+
attr_reader :limit = nil,
|
201
|
+
attr_reader :precision = nil,
|
202
|
+
attr_reader :scale = nil
|
203
|
+
>,
|
204
|
+
attr_reader :value_before_type_cast = 2
|
205
|
+
>
|
206
|
+
}
|
207
|
+
>,
|
208
|
+
attr_accessor :destroyed_by_association = nil
|
209
|
+
>
|
210
|
+
]
|
@@ -0,0 +1,104 @@
|
|
1
|
+
#<User:placeholder_id
|
2
|
+
@_start_transaction_state = nil,
|
3
|
+
@association_cache = {},
|
4
|
+
@destroyed = false,
|
5
|
+
@marked_for_destruction = false,
|
6
|
+
@new_record = true,
|
7
|
+
@primary_key = "id",
|
8
|
+
@readonly = false,
|
9
|
+
@transaction_state = nil,
|
10
|
+
attr_accessor :attributes = #<ActiveModel::AttributeSet:placeholder_id
|
11
|
+
@attributes = {
|
12
|
+
"admin" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
13
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
14
|
+
@original_attribute = nil,
|
15
|
+
attr_reader :name = "admin",
|
16
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
17
|
+
attr_reader :limit = nil,
|
18
|
+
attr_reader :precision = nil,
|
19
|
+
attr_reader :scale = nil
|
20
|
+
>,
|
21
|
+
attr_reader :value_before_type_cast = nil
|
22
|
+
>,
|
23
|
+
attr_reader :name = "admin",
|
24
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
25
|
+
attr_reader :limit = nil,
|
26
|
+
attr_reader :precision = nil,
|
27
|
+
attr_reader :scale = nil
|
28
|
+
>,
|
29
|
+
attr_reader :value_before_type_cast = false
|
30
|
+
>,
|
31
|
+
"created_at" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
32
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
33
|
+
@original_attribute = nil,
|
34
|
+
attr_reader :name = "created_at",
|
35
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
36
|
+
attr_reader :limit = nil,
|
37
|
+
attr_reader :precision = nil,
|
38
|
+
attr_reader :scale = nil
|
39
|
+
>,
|
40
|
+
attr_reader :value_before_type_cast = nil
|
41
|
+
>,
|
42
|
+
attr_reader :name = "created_at",
|
43
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
44
|
+
attr_reader :limit = nil,
|
45
|
+
attr_reader :precision = nil,
|
46
|
+
attr_reader :scale = nil
|
47
|
+
>,
|
48
|
+
attr_reader :value_before_type_cast = "1992-10-10 12:30:00"
|
49
|
+
>,
|
50
|
+
"id" => #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
51
|
+
@original_attribute = nil,
|
52
|
+
attr_reader :name = "id",
|
53
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
54
|
+
@range = -9223372036854775808...9223372036854775808,
|
55
|
+
attr_reader :limit = nil,
|
56
|
+
attr_reader :precision = nil,
|
57
|
+
attr_reader :scale = nil
|
58
|
+
>,
|
59
|
+
attr_reader :value_before_type_cast = nil
|
60
|
+
>,
|
61
|
+
"name" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
62
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
63
|
+
@original_attribute = nil,
|
64
|
+
attr_reader :name = "name",
|
65
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
66
|
+
attr_reader :limit = nil,
|
67
|
+
attr_reader :precision = nil,
|
68
|
+
attr_reader :scale = nil
|
69
|
+
>,
|
70
|
+
attr_reader :value_before_type_cast = nil
|
71
|
+
>,
|
72
|
+
attr_reader :name = "name",
|
73
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
74
|
+
attr_reader :limit = nil,
|
75
|
+
attr_reader :precision = nil,
|
76
|
+
attr_reader :scale = nil
|
77
|
+
>,
|
78
|
+
attr_reader :value_before_type_cast = "Diana"
|
79
|
+
>,
|
80
|
+
"rank" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
81
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
82
|
+
@original_attribute = nil,
|
83
|
+
attr_reader :name = "rank",
|
84
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
85
|
+
@range = -9223372036854775808...9223372036854775808,
|
86
|
+
attr_reader :limit = nil,
|
87
|
+
attr_reader :precision = nil,
|
88
|
+
attr_reader :scale = nil
|
89
|
+
>,
|
90
|
+
attr_reader :value_before_type_cast = nil
|
91
|
+
>,
|
92
|
+
attr_reader :name = "rank",
|
93
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
94
|
+
@range = -9223372036854775808...9223372036854775808,
|
95
|
+
attr_reader :limit = nil,
|
96
|
+
attr_reader :precision = nil,
|
97
|
+
attr_reader :scale = nil
|
98
|
+
>,
|
99
|
+
attr_reader :value_before_type_cast = 1
|
100
|
+
>
|
101
|
+
}
|
102
|
+
>,
|
103
|
+
attr_accessor :destroyed_by_association = nil
|
104
|
+
>
|
@@ -0,0 +1,210 @@
|
|
1
|
+
[
|
2
|
+
[0] #<User:placeholder_id
|
3
|
+
@_start_transaction_state = nil,
|
4
|
+
@association_cache = {},
|
5
|
+
@destroyed = false,
|
6
|
+
@marked_for_destruction = false,
|
7
|
+
@new_record = true,
|
8
|
+
@primary_key = "id",
|
9
|
+
@readonly = false,
|
10
|
+
@transaction_state = nil,
|
11
|
+
attr_accessor :attributes = #<ActiveModel::AttributeSet:placeholder_id
|
12
|
+
@attributes = {
|
13
|
+
"admin" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
14
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
15
|
+
@original_attribute = nil,
|
16
|
+
attr_reader :name = "admin",
|
17
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
18
|
+
attr_reader :limit = nil,
|
19
|
+
attr_reader :precision = nil,
|
20
|
+
attr_reader :scale = nil
|
21
|
+
>,
|
22
|
+
attr_reader :value_before_type_cast = nil
|
23
|
+
>,
|
24
|
+
attr_reader :name = "admin",
|
25
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
26
|
+
attr_reader :limit = nil,
|
27
|
+
attr_reader :precision = nil,
|
28
|
+
attr_reader :scale = nil
|
29
|
+
>,
|
30
|
+
attr_reader :value_before_type_cast = false
|
31
|
+
>,
|
32
|
+
"created_at" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
33
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
34
|
+
@original_attribute = nil,
|
35
|
+
attr_reader :name = "created_at",
|
36
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
37
|
+
attr_reader :limit = nil,
|
38
|
+
attr_reader :precision = nil,
|
39
|
+
attr_reader :scale = nil
|
40
|
+
>,
|
41
|
+
attr_reader :value_before_type_cast = nil
|
42
|
+
>,
|
43
|
+
attr_reader :name = "created_at",
|
44
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
45
|
+
attr_reader :limit = nil,
|
46
|
+
attr_reader :precision = nil,
|
47
|
+
attr_reader :scale = nil
|
48
|
+
>,
|
49
|
+
attr_reader :value_before_type_cast = "1992-10-10 12:30:00"
|
50
|
+
>,
|
51
|
+
"id" => #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
52
|
+
@original_attribute = nil,
|
53
|
+
attr_reader :name = "id",
|
54
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
55
|
+
@range = -9223372036854775808...9223372036854775808,
|
56
|
+
attr_reader :limit = nil,
|
57
|
+
attr_reader :precision = nil,
|
58
|
+
attr_reader :scale = nil
|
59
|
+
>,
|
60
|
+
attr_reader :value_before_type_cast = nil
|
61
|
+
>,
|
62
|
+
"name" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
63
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
64
|
+
@original_attribute = nil,
|
65
|
+
attr_reader :name = "name",
|
66
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
67
|
+
attr_reader :limit = nil,
|
68
|
+
attr_reader :precision = nil,
|
69
|
+
attr_reader :scale = nil
|
70
|
+
>,
|
71
|
+
attr_reader :value_before_type_cast = nil
|
72
|
+
>,
|
73
|
+
attr_reader :name = "name",
|
74
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
75
|
+
attr_reader :limit = nil,
|
76
|
+
attr_reader :precision = nil,
|
77
|
+
attr_reader :scale = nil
|
78
|
+
>,
|
79
|
+
attr_reader :value_before_type_cast = "Diana"
|
80
|
+
>,
|
81
|
+
"rank" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
82
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
83
|
+
@original_attribute = nil,
|
84
|
+
attr_reader :name = "rank",
|
85
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
86
|
+
@range = -9223372036854775808...9223372036854775808,
|
87
|
+
attr_reader :limit = nil,
|
88
|
+
attr_reader :precision = nil,
|
89
|
+
attr_reader :scale = nil
|
90
|
+
>,
|
91
|
+
attr_reader :value_before_type_cast = nil
|
92
|
+
>,
|
93
|
+
attr_reader :name = "rank",
|
94
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
95
|
+
@range = -9223372036854775808...9223372036854775808,
|
96
|
+
attr_reader :limit = nil,
|
97
|
+
attr_reader :precision = nil,
|
98
|
+
attr_reader :scale = nil
|
99
|
+
>,
|
100
|
+
attr_reader :value_before_type_cast = 1
|
101
|
+
>
|
102
|
+
}
|
103
|
+
>,
|
104
|
+
attr_accessor :destroyed_by_association = nil
|
105
|
+
>,
|
106
|
+
[1] #<User:placeholder_id
|
107
|
+
@_start_transaction_state = nil,
|
108
|
+
@association_cache = {},
|
109
|
+
@destroyed = false,
|
110
|
+
@marked_for_destruction = false,
|
111
|
+
@new_record = true,
|
112
|
+
@primary_key = "id",
|
113
|
+
@readonly = false,
|
114
|
+
@transaction_state = nil,
|
115
|
+
attr_accessor :attributes = #<ActiveModel::AttributeSet:placeholder_id
|
116
|
+
@attributes = {
|
117
|
+
"admin" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
118
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
119
|
+
@original_attribute = nil,
|
120
|
+
attr_reader :name = "admin",
|
121
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
122
|
+
attr_reader :limit = nil,
|
123
|
+
attr_reader :precision = nil,
|
124
|
+
attr_reader :scale = nil
|
125
|
+
>,
|
126
|
+
attr_reader :value_before_type_cast = nil
|
127
|
+
>,
|
128
|
+
attr_reader :name = "admin",
|
129
|
+
attr_reader :type = #<ActiveModel::Type::Boolean:placeholder_id
|
130
|
+
attr_reader :limit = nil,
|
131
|
+
attr_reader :precision = nil,
|
132
|
+
attr_reader :scale = nil
|
133
|
+
>,
|
134
|
+
attr_reader :value_before_type_cast = true
|
135
|
+
>,
|
136
|
+
"created_at" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
137
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
138
|
+
@original_attribute = nil,
|
139
|
+
attr_reader :name = "created_at",
|
140
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
141
|
+
attr_reader :limit = nil,
|
142
|
+
attr_reader :precision = nil,
|
143
|
+
attr_reader :scale = nil
|
144
|
+
>,
|
145
|
+
attr_reader :value_before_type_cast = nil
|
146
|
+
>,
|
147
|
+
attr_reader :name = "created_at",
|
148
|
+
attr_reader :type = #<ActiveRecord::Type::DateTime:placeholder_id
|
149
|
+
attr_reader :limit = nil,
|
150
|
+
attr_reader :precision = nil,
|
151
|
+
attr_reader :scale = nil
|
152
|
+
>,
|
153
|
+
attr_reader :value_before_type_cast = "2003-05-26 14:15:00"
|
154
|
+
>,
|
155
|
+
"id" => #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
156
|
+
@original_attribute = nil,
|
157
|
+
attr_reader :name = "id",
|
158
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
159
|
+
@range = -9223372036854775808...9223372036854775808,
|
160
|
+
attr_reader :limit = nil,
|
161
|
+
attr_reader :precision = nil,
|
162
|
+
attr_reader :scale = nil
|
163
|
+
>,
|
164
|
+
attr_reader :value_before_type_cast = nil
|
165
|
+
>,
|
166
|
+
"name" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
167
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
168
|
+
@original_attribute = nil,
|
169
|
+
attr_reader :name = "name",
|
170
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
171
|
+
attr_reader :limit = nil,
|
172
|
+
attr_reader :precision = nil,
|
173
|
+
attr_reader :scale = nil
|
174
|
+
>,
|
175
|
+
attr_reader :value_before_type_cast = nil
|
176
|
+
>,
|
177
|
+
attr_reader :name = "name",
|
178
|
+
attr_reader :type = #<ActiveModel::Type::String:placeholder_id
|
179
|
+
attr_reader :limit = nil,
|
180
|
+
attr_reader :precision = nil,
|
181
|
+
attr_reader :scale = nil
|
182
|
+
>,
|
183
|
+
attr_reader :value_before_type_cast = "Laura"
|
184
|
+
>,
|
185
|
+
"rank" => #<ActiveModel::Attribute::FromUser:placeholder_id
|
186
|
+
@original_attribute = #<ActiveModel::Attribute::FromDatabase:placeholder_id
|
187
|
+
@original_attribute = nil,
|
188
|
+
attr_reader :name = "rank",
|
189
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
190
|
+
@range = -9223372036854775808...9223372036854775808,
|
191
|
+
attr_reader :limit = nil,
|
192
|
+
attr_reader :precision = nil,
|
193
|
+
attr_reader :scale = nil
|
194
|
+
>,
|
195
|
+
attr_reader :value_before_type_cast = nil
|
196
|
+
>,
|
197
|
+
attr_reader :name = "rank",
|
198
|
+
attr_reader :type = #<ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer:placeholder_id
|
199
|
+
@range = -9223372036854775808...9223372036854775808,
|
200
|
+
attr_reader :limit = nil,
|
201
|
+
attr_reader :precision = nil,
|
202
|
+
attr_reader :scale = nil
|
203
|
+
>,
|
204
|
+
attr_reader :value_before_type_cast = 2
|
205
|
+
>
|
206
|
+
}
|
207
|
+
>,
|
208
|
+
attr_accessor :destroyed_by_association = nil
|
209
|
+
>
|
210
|
+
]
|