spec/support/naming_cases.rb in tailor-1.4.0 vs spec/support/naming_cases.rb in tailor-1.4.1
- old
+ new
@@ -1,26 +1,26 @@
NAMING_OK = {}
NAMING_OK['single_word_method'] =
- %Q{def thing
-end}
+ %(def thing
+end)
NAMING_OK['two_word_method'] =
- %Q{def thing_one
-end}
+ %(def thing_one
+end)
#-------------------------------------------------------------------------------
NAMING_OK['single_word_class'] =
- %Q{class Thing
-end}
+ %(class Thing
+end)
NAMING_OK['single_word_module'] =
- %Q{module Thing
-end}
+ %(module Thing
+end)
NAMING_OK['two_word_class'] =
- %Q{class ThingOne
-end}
+ %(class ThingOne
+end)
NAMING_OK['two_word_module'] =
- %Q{module ThingOne
-end}
+ %(module ThingOne
+end)