Add missing encoding tags
This commit is contained in:
parent
911e8756ee
commit
b64ff4e6a8
6 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
module Mutant
|
module Mutant
|
||||||
class CLI
|
class CLI
|
||||||
# Abstract base class for strategy builders
|
# Abstract base class for strategy builders
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
module Mutant
|
module Mutant
|
||||||
class Matcher
|
class Matcher
|
||||||
# Matcher filter
|
# Matcher filter
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
module Mutant
|
module Mutant
|
||||||
# Abstract base class for predicates used to filter subjects / mutations
|
# Abstract base class for predicates used to filter subjects / mutations
|
||||||
class Predicate
|
class Predicate
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe Mutant::CLI::Builder::Rspec do
|
describe Mutant::CLI::Builder::Rspec do
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe Mutant::Matcher::Filter do
|
describe Mutant::Matcher::Filter do
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
filter_helpers = proc do
|
filter_helpers = proc do
|
||||||
|
|
Loading…
Reference in a new issue