# File lib/fog/planning/openstack/models/plans.rb, line 19
        def method_missing(method_sym, *arguments, &block)
          if method_sym.to_s =~ /^find_by_(.*)$/
            all.find do |plan|
              plan.send($1) == arguments.first
            end
          else
            super
          end
        end