# File lib/bundler/vendor/thor/lib/thor/util.rb, line 104
      def camel_case(str)
        return str if str !~ /_/ && str =~ /[A-Z]+.*/
        str.split("_").map { |i| i.capitalize }.join
      end