Merge tag 'v0.2.4'

Conflicts:
	Changelog.md
This commit is contained in:
Markus Schirp 2012-12-12 18:26:32 +01:00
commit cb3a480fb5
3 changed files with 19 additions and 4 deletions

View file

@ -1,4 +1,4 @@
# v0.2.4 2012-12-08 # v0.2.5 xxxx
* [feature] Add --debug flag for showing killer output and mutation * [feature] Add --debug flag for showing killer output and mutation
* [feature] Run noop mutation per subject to guard against initial failing specs * [feature] Run noop mutation per subject to guard against initial failing specs
@ -11,13 +11,19 @@
* [fixed] Crash on mutating yield, added a noop for now * [fixed] Crash on mutating yield, added a noop for now
* [fixed] Crash on singleton methods defined on other than constants or self * [fixed] Crash on singleton methods defined on other than constants or self
[Compare v0.2.3..v0.2.4](https://github.com/mbj/mutant/compare/v0.2.1...v0.2.2) [Compare v0.2.4..v0.2.5](https://github.com/mbj/mutant/compare/v0.2.4...v0.2.5)
# v0.2.4 2012-12-12
* [fixed] Correctly vendor inflector
[Compare v0.2.3..v0.2.4](https://github.com/mbj/mutant/compare/v0.2.3...v0.2.4)
# v0.2.3 2012-12-08 # v0.2.3 2012-12-08
* [fixed] Prepend extra elements to hash and array instead of append. This fixes unkillable mutators in parallel assignments! * [fixed] Prepend extra elements to hash and array instead of append. This fixes unkillable mutators in parallel assignments!
[Compare v0.2.2..v0.2.3](https://github.com/mbj/mutant/compare/v0.2.1...v0.2.2) [Compare v0.2.2..v0.2.3](https://github.com/mbj/mutant/compare/v0.2.2...v0.2.3)
# v0.2.2 2012-12-07 # v0.2.2 2012-12-07

View file

@ -7,7 +7,6 @@ require 'securerandom'
require 'equalizer' require 'equalizer'
require 'digest/sha1' require 'digest/sha1'
require 'to_source' require 'to_source'
require 'inflector'
require 'ice_nine' require 'ice_nine'
require 'diff/lcs' require 'diff/lcs'
require 'diff/lcs/hunk' require 'diff/lcs/hunk'

10
lib/mutant/inflector.rb Normal file
View file

@ -0,0 +1,10 @@
module Mutant
# Library namespace of vendored inflector
module Inflector
end
end
require 'mutant/inflector/inflections'
require 'mutant/inflector/defaults'
require 'mutant/inflector/methods'