amazing_print 1.0.0

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