In \"Agile Web Development with Rails\" (third edition) page 537 - 541 it has \"Custom Form Builders\" code as follows:
class TaggedBuilder < Actio
The super above passed all parameters (see this recent question).
super
As the error message states, you must here "specify all arguments explicitly". Replace super with super(label, *args).
super(label, *args)