forked from seattlerb/flay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHistory.txt
219 lines (134 loc) · 5.68 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
=== 2.8.1 / 2016-08-24
* 1 bug fix:
* Accidentally removed require from flay_task.rb. (ajacques)
=== 2.8.0 / 2016-05-16
* 1 minor enhancement:
* Switched to path_expander to deal with cmdline args. See path_expander for details.
* 2 bug fixes:
* Added dev deps and bundler plugin to make flavorjones happy. (flavorjones)
* Explictly require rake/tasklib in flay_task.rb. (jasonkarns)
=== 2.7.0 / 2016-01-21
* 1 minor enhancement:
* Switched to erubis to make more compatible w/ rails usage.
=== 2.6.1 / 2015-01-30
* 1 bug fix:
* Fixed frozen string modification error on ruby 2.0+. (apiology)
=== 2.6.0 / 2015-01-09
* 2 minor enhancements:
* Added support for .flayignore files. (kcdragon)
* Added Flay.filter_files(files, ignore_path_or_io).
=== 2.5.0 / 2014-05-29
* 6 minor enhancements:
* Added Flay::Item and Flay::Location to encapsulate analysis.
* Added `--only nodetype` filter flag.
* Flay#analyze now returns a nice data structure you can walk over.
* Flay#report is now much more dumb. :)
* Flay#report now takes an optional IO object.
* Removed unused prune arg in Flay#report.
=== 2.4.0 / 2013-07-24
* 1 minor enhancement:
* Allow plugins to provide sexp to source converters for --diff. (UncleGene)
=== 2.3.1 / 2013-07-11
* 1 bug fix:
* Fixed --diff outputting twice if there are no comments. (kalenkov)
=== 2.3.0 / 2013-05-10
* 2 minor enhancements:
* Refactored n_way_diff into split_and_group, collapse_and_label, and pad_with_empty_strings.
* n_way_diff now does leading comments separately from the code, to better align diffs.
* 1 bug fix:
* Fixed code/home urls in readme/gem.
=== 2.2.0 / 2013-04-09
Semantic versioning doesn't take into account how AWESOME a release
is. In this case, it severely falls short. I'd jump to 4.0 if I could.
* 2 major enhancements:
* Added --fuzzy (ie copy, paste, & modify) duplication detection.
* Added --liberal, which changes the way prune works to identify more duplication.
* 12 minor enhancements:
* Added -# to turn off item numbering. Helps with diffs to compare runs over time.
* Added Sexp#+.
* Added Sexp#code_index to specify where *code starts in some sexps.
* Added Sexp#has_code?.
* Added Sexp#initalize_copy to propagate file/line/modified info.
* Added Sexp#modified, #modified=, and #modified?.
* Added Sexp#split_at(n). (Something I've wanted in Array for ages).
* Added Sexp#split_code.
* Added mass and diff options to rake debug.
* Added rake run task w/ mass, diff, and liberal options
* Made report's sort more stable, so I can do better comparison runs.
* Wrapped Sexp#[] to propagate file/line/modified info.
=== 2.1.0 / 2013-02-13
* 5 minor enhancements:
* Added --timeout option. Defaults to 10 seconds.
* Added ability for plugins to define options_<pluginname> method to extend options.
* Flay no longer defaults to '.' if no args given. Allows plugins to do more
* Moved #analyze down to #report. #process only processes, nothing more.
* Sort output for more stable reporting. Better for diffing against, my dear.
=== 2.0.1 / 2012-12-18
* 2 bug fixes:
* Avoid redefined warning for File::RUBY19. (svendahlstrand)
* Relaxed the ruby_parser dependency.
=== 2.0.0 / 2012-11-02
* 1 minor enhancement:
* Added a timeout handler to skip when RubyParser times out on a large file
=== 2.0.0.b1 / 2012-08-07
* 2 major enhancements:
* Parses ruby 1.9! (still in beta)
* Moved Sexp#deep_each and Sexp#each_sexp to sexp_processor
* 1 minor enhancements:
* Use File.binread (File.read in 1.8) to bypass encoding errors
* 1 bug fix:
* Fixed failing tests against ruby_parser 3
=== 1.4.3 / 2011-08-10
* 1 bug fix:
* Fixes for 1.9 with --diff. (mmullis)
=== 1.4.2 / 2011-02-18
* 2 bug fixes:
* Added flay require in flay_task
* Switched to minitest. (doh)
=== 1.4.1 / 2010-09-01
* 2 minor enhancements:
* Added extra error handling for ERB flay to deal with tons of bad ERB
* Skip plugin if another version already loaded (eg local vs gem).
* 1 bug fix:
* Fixed all tests that were having problems on 1.9 due to unstable hashes
=== 1.4.0 / 2009-08-14
* 4 minor enhancements:
* Pushed Sexp#mass up to sexp_processor.
* Removed #similarity #compare_to, #intersection, #triangle, and other cruft.
* Renamed all_subhashes to all_structural_subhashes.
* Renamed fuzzy_hash to structural_hash.
=== 1.3.0 / 2009-06-23
* 5 minor enhancements:
* Added --summary to display flay scores per file.
* Added --verbose to display processing progress.
* Protect against syntax errors in bad code and continue flaying.
* Removed fuzzy matching. Never got it to feel right. Slow. Broken on 1.9
* Renamed --verbose to --diff.
=== 1.2.1 / 2009-03-16
* 3 minor enhancements:
* Added gauntlet_flay.rb
* Cached value of plugins loaded.
* Refactored and separated analysis phase from process phase
* 1 bug fix:
* Added bin dir to default dirs list in FlayTask
=== 1.2.0 / 2009-03-09
* 2 major enhancements:
* Added flay_task.rb
* Added plugin system (any flay_(c,java,js,etc).rb files).
* 4 minor enhancements:
* Added expand_dirs_to_files and made dirs valid arguments.
* Added flay_erb.rb plugin.
* Added optparse option processing.
* Refactored to make using w/in rake and other CI systems clean and easy.
=== 1.1.0 / 2009-01-20
* 7 minor enhancement:
* Added -v verbose mode to print out N-way diff of the detected code.
* Added identical node scoring and reporting.
* Added the start of copy/paste+edit detection, not even close yet.
* Added more tests.
* Added rcov tasks
* Clarified output a bit
* Refactored process_sexps to make doing other languages/systems easier.
=== 1.0.0 / 2008-11-06
* 1 major enhancement
* Birthday!