# HG changeset patch # User Michael Granger # Date 1630433234 25200 # Tue Aug 31 11:07:14 2021 -0700 # Node ID 5c4d850a8b22907ee14fbd8b0af9a8673e62e172 # Parent f27c4fcd1d1eb0371f5a4ced85f52e4d6af37da3 Fix header of spec files diff --git a/functional/simple_spec.rb b/functional/simple_spec.rb --- a/functional/simple_spec.rb +++ b/functional/simple_spec.rb @@ -1,4 +1,5 @@ -#!/usr/bin/env rspec -cfd +# -*- ruby -*- +# frozen_string_literal: true require_relative 'spec_helper' diff --git a/spec/pushdown/automaton_spec.rb b/spec/pushdown/automaton_spec.rb --- a/spec/pushdown/automaton_spec.rb +++ b/spec/pushdown/automaton_spec.rb @@ -1,4 +1,5 @@ -#!/usr/bin/env rspec -cfd +# -*- ruby -*- +# frozen_string_literal: true require_relative '../spec_helper' diff --git a/spec/pushdown/transition/pop_spec.rb b/spec/pushdown/transition/pop_spec.rb --- a/spec/pushdown/transition/pop_spec.rb +++ b/spec/pushdown/transition/pop_spec.rb @@ -1,4 +1,5 @@ -#!/usr/bin/env rspec -cfd +# -*- ruby -*- +# frozen_string_literal: true require_relative '../../spec_helper' diff --git a/spec/pushdown/transition/push_spec.rb b/spec/pushdown/transition/push_spec.rb --- a/spec/pushdown/transition/push_spec.rb +++ b/spec/pushdown/transition/push_spec.rb @@ -1,4 +1,5 @@ -#!/usr/bin/env rspec -cfd +# -*- ruby -*- +# frozen_string_literal: true require_relative '../../spec_helper' diff --git a/spec/pushdown/transition/replace_spec.rb b/spec/pushdown/transition/replace_spec.rb --- a/spec/pushdown/transition/replace_spec.rb +++ b/spec/pushdown/transition/replace_spec.rb @@ -1,4 +1,5 @@ -#!/usr/bin/env rspec -cfd +# -*- ruby -*- +# frozen_string_literal: true require_relative '../../spec_helper' diff --git a/spec/pushdown/transition/switch_spec.rb b/spec/pushdown/transition/switch_spec.rb --- a/spec/pushdown/transition/switch_spec.rb +++ b/spec/pushdown/transition/switch_spec.rb @@ -1,4 +1,5 @@ -#!/usr/bin/env rspec -cfd +# -*- ruby -*- +# frozen_string_literal: true require_relative '../../spec_helper' diff --git a/spec/pushdown/transition_spec.rb b/spec/pushdown/transition_spec.rb --- a/spec/pushdown/transition_spec.rb +++ b/spec/pushdown/transition_spec.rb @@ -1,4 +1,5 @@ -#!/usr/bin/env rspec -cfd +# -*- ruby -*- +# frozen_string_literal: true require_relative '../spec_helper'