lib/string.rb in iqvoc-4.3.3 vs lib/string.rb in iqvoc-4.4.0
- old
+ new
@@ -13,11 +13,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
class String
-
def to_relation_name
- underscore.gsub("/", "_").pluralize.intern
+ underscore.gsub('/', '_').pluralize.intern
end
-
end