forked from mainmatter/excellent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
History.txt
92 lines (55 loc) · 1.9 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
=======
= 1.7.1
* fixed excellent for Ruby 2.0
* some internal cleanup
* support -v switch on command line
= 1.7.0
* fixed issue #24
* updated ruby_parser and sexp_processor dependencies
* fixed some wrong line number reports
= 1.6.0
* added Gemfile
* internal refactoring/cleanups
= 1.5.5
* better option parsing in the executable, (thanks trans, http://github.com/trans)
* added line count parser (not yet used), (thanks trans, http://github.com/trans)
= 1.5.4
* fixed handling of parser errors
= 1.5.3
* added missing dependency to facets gem
= 1.5.2
* added GlobalVariableCheck
* added Rails::CustomInitializeMethodCheck
* added Rails::ParamsHashInViewCheck
* added Rails::SessionHashInViewCheck
= 1.5.1
* removed duplication checks (they are just too coarse for dynamic languages like Ruby and especially Rails apps where you would call e.g. params all over the place)
* added Rails::ValidationsCheck to the default checks
= 1.5.0
* new check Rails::ValidationsCheck that reports ActiveRecord models that do not validate anything
* added DuplicationCheck to default checks
* split DuplicationCheck up into MethodDuplicationCheck and BlockDuplicationCheck
= 1.4.1
* added Rake Task (see Rakefile for example)
= 1.4.0
* Excellent not parses *.erb files
* added new check InstanceVarInPartialCheck
= 1.3.1
* FIX (forgot files in gemspec on 1.3.0)
= 1.3.0
* added formatters (currently text and HTML formatting is supported, see README)
= 1.2.2
* fixed specs
= 1.2.1
* renamed Error to Warning
* added documentation
= 1.2.0
* cleanup
* added 2 Rails specific checks, AttrAccessibleCheck and AttrProtectedCheck
= 1.1.0
* completely restructured, made everything running in the flow of the SexpProcessor
* added most tests from reek (except for UtilityFunction and FeatureEnvy)
= 1.0.1
* fixed some errors
= 1.0.0
* this is basically just a custom version of roodi, converted to ruby_parser to be 1.9 safe