diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/securerandom.rb | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Sun Oct 18 12:58:15 2015 Tanaka Akira <[email protected]> + + * lib/securerandom.rb: Specify frozen_string_literal: true. + Sun Oct 18 11:22:52 2015 KOSAKI Motohiro <[email protected]> * dln.c: remove defined(__WATCOMC__). diff --git a/lib/securerandom.rb b/lib/securerandom.rb index 2f34e78374..49995d9eb3 100644 --- a/lib/securerandom.rb +++ b/lib/securerandom.rb @@ -1,4 +1,5 @@ # -*- coding: us-ascii -*- +# -*- frozen_string_literal: true -*- begin require 'openssl' rescue LoadError |