aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-10 00:32:53 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-10 00:32:53 +0000
commit01c432169f53bfc83a001baac91a890dfbf5af35 (patch)
tree5cba120b7d0d90052af88fe46fc47d4ce181513b
parentf8a720477cdfc3fe4d3818c6d8fb4622bdc724a1 (diff)
downloadruby-01c432169f53bfc83a001baac91a890dfbf5af35.tar.gz
disable frozen-string-literal
* lib/mkmf.rb, lib/shellwords.rb: disable frozen-string-literal. [ruby-core:72011] [Bug #11800] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/mkmf.rb1
-rw-r--r--lib/shellwords.rb1
3 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6293fa5395..577b810064 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Dec 10 09:32:51 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * lib/mkmf.rb, lib/shellwords.rb: disable frozen-string-literal.
+ [ruby-core:72011] [Bug #11800]
+
Thu Dec 10 06:33:39 2015 Eric Wong <e@80x24.org>
* marshal.c (memsize_dump_arg): remove NULL check
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index d515382c17..d8bc1b525d 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -1,4 +1,5 @@
# -*- coding: us-ascii -*-
+# frozen-string-literal: false
# module to create Makefile for extension modules
# invoke like: ruby -r mkmf extconf.rb
diff --git a/lib/shellwords.rb b/lib/shellwords.rb
index 2b72750a6b..ccc1c31060 100644
--- a/lib/shellwords.rb
+++ b/lib/shellwords.rb
@@ -1,3 +1,4 @@
+# frozen-string-literal: false
##
# == Manipulates strings like the UNIX Bourne shell
#