diff options
Diffstat (limited to 'ext/psych/lib/psych/nodes')
-rw-r--r-- | ext/psych/lib/psych/nodes/alias.rb | 1 | ||||
-rw-r--r-- | ext/psych/lib/psych/nodes/document.rb | 1 | ||||
-rw-r--r-- | ext/psych/lib/psych/nodes/mapping.rb | 1 | ||||
-rw-r--r-- | ext/psych/lib/psych/nodes/node.rb | 1 | ||||
-rw-r--r-- | ext/psych/lib/psych/nodes/scalar.rb | 1 | ||||
-rw-r--r-- | ext/psych/lib/psych/nodes/sequence.rb | 1 | ||||
-rw-r--r-- | ext/psych/lib/psych/nodes/stream.rb | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/ext/psych/lib/psych/nodes/alias.rb b/ext/psych/lib/psych/nodes/alias.rb index 5bd4df1..716a00d 100644 --- a/ext/psych/lib/psych/nodes/alias.rb +++ b/ext/psych/lib/psych/nodes/alias.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/document.rb b/ext/psych/lib/psych/nodes/document.rb index 32014d6..7234fef 100644 --- a/ext/psych/lib/psych/nodes/document.rb +++ b/ext/psych/lib/psych/nodes/document.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/mapping.rb b/ext/psych/lib/psych/nodes/mapping.rb index 5ba95ce..4c11df8 100644 --- a/ext/psych/lib/psych/nodes/mapping.rb +++ b/ext/psych/lib/psych/nodes/mapping.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/node.rb b/ext/psych/lib/psych/nodes/node.rb index 83233a6..e3621dc 100644 --- a/ext/psych/lib/psych/nodes/node.rb +++ b/ext/psych/lib/psych/nodes/node.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false require 'stringio' require 'psych/class_loader' require 'psych/scalar_scanner' diff --git a/ext/psych/lib/psych/nodes/scalar.rb b/ext/psych/lib/psych/nodes/scalar.rb index 1b1b25b..ee55705 100644 --- a/ext/psych/lib/psych/nodes/scalar.rb +++ b/ext/psych/lib/psych/nodes/scalar.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/sequence.rb b/ext/psych/lib/psych/nodes/sequence.rb index 7e907fe..1096469 100644 --- a/ext/psych/lib/psych/nodes/sequence.rb +++ b/ext/psych/lib/psych/nodes/sequence.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### diff --git a/ext/psych/lib/psych/nodes/stream.rb b/ext/psych/lib/psych/nodes/stream.rb index 7cf5e03..559b084 100644 --- a/ext/psych/lib/psych/nodes/stream.rb +++ b/ext/psych/lib/psych/nodes/stream.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false module Psych module Nodes ### |