aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/string_questioneer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/string_questioneer.rb')
-rw-r--r--activesupport/lib/active_support/string_questioneer.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/activesupport/lib/active_support/string_questioneer.rb b/activesupport/lib/active_support/string_questioneer.rb
deleted file mode 100644
index 7732f8b401..0000000000
--- a/activesupport/lib/active_support/string_questioneer.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-class StringQuestioneer < String
- def method_missing(method_name, *arguments)
- if method_name.to_s.ends_with?("?")
- self == method_name.to_s[0..-2]
- else
- super
- end
- end
-end \ No newline at end of file