summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-14 07:43:23 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-14 07:43:23 +0000
commit1ec544695fa02d714180ef9c34e755027b6a2103 (patch)
tree05098239e177981231e5d391d78bfcec23a465a0
parent8aa3ac137350a70b65037bfdbe8f0f0564e0133e (diff)
* lib/open3.rb: Specify frozen_string_literal: true.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/open3.rb2
-rw-r--r--test/test_open3.rb2
3 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4db628d44e..14728051ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Nov 14 16:43:02 2015 Tanaka Akira <akr@fsij.org>
+
+ * lib/open3.rb: Specify frozen_string_literal: true.
+
Sat Nov 14 05:04:09 2015 Koichi Sasada <ko1@atdot.net>
* node.h: remove old comments.
diff --git a/lib/open3.rb b/lib/open3.rb
index 58245100b4..3c9d450737 100644
--- a/lib/open3.rb
+++ b/lib/open3.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
#
# = open3.rb: Popen, but with stderr, too
#
diff --git a/test/test_open3.rb b/test/test_open3.rb
index ca710bc0ba..d52ab6a9bf 100644
--- a/test/test_open3.rb
+++ b/test/test_open3.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'test/unit'
require 'open3'