Changelog for
ruby2.3-rubygem-flog-4.3.2-34.1.x86_64.rpm :
Mon Feb 9 13:00:00 2015 cooloAATTsuse.com
- updated to version 4.3.2
* 1 bug fix:
* Fixed rdoc url (phiggins)
* Fixed to_proc_normal scoring on ruby 2.2+. (teoljungberg)
Wed Oct 15 14:00:00 2014 cooloAATTsuse.com
- updated to version 4.3.0
* 1 minor enhancement:
* Added methods_only param to FlogTask. (jocranford)
* 2 bug fixes:
* Fixed grouping by class name. (guilhermesimoes)
* Removed dead rubyforge setting in Rakefile
Sun Oct 12 14:00:00 2014 adrianAATTsuse.de
- adapt to new rubygem packaging style
Wed Sep 10 14:00:00 2014 mrueckertAATTsuse.de
- added gem2rpm.yml as source
Wed Sep 10 14:00:00 2014 mrueckertAATTsuse.de
- added a small scriptlet to fix the shebang line of the wrapper
script in the gem dir. the installed copy has it overwritten
but our she bang line checks the not installed copy too.
- also added a gem2rpm.yml for later, but did not regenerate the
specfile just yet.
Sun Oct 20 14:00:00 2013 cooloAATTsuse.com
- updated to version 4.2.0
* 3 minor enhancements:
* Added --extended / -e to put file:line output on next line (for rubymine & friends)
* Extracted MethodBasedSexpProcessor and pushed up to sexp_processor gem.
* Updated dependency on sexp_processor to ~> 4.4.
Sat Sep 7 14:00:00 2013 cooloAATTsuse.com
- updated to version 4.1.2
* 2 bug fixes:
* Don\'t even record a score if method stack is empty and user used --methods-only.
* Fixed Flog task\'s default method. (jasonrobertfox)
Fri Jul 12 14:00:00 2013 cooloAATTsuse.com
- updated to version 4.1.1
* 1 minor enhancement:
* Added max_method to delegators.
* 1 bug fix:
* Fixed FlogTask to use FlogCLI. (envygeeks)
Mon May 13 14:00:00 2013 cooloAATTsuse.com
- updated to version 4.1.0
* 3 minor enhancements:
* Cleaned up tests by adding assert_hash_in_epsilon. yay!
* Fixed method_location is now cleared on #reset. (makaroni4)
* to_proc_normal is now penalized based on RUBY_VERSION. Scores were benchmarked.
* 1 bug fix:
* Fixed code/home urls in readme/gem.
Wed Apr 24 14:00:00 2013 cooloAATTsuse.com
- updated to version 4.0.0
* 1 major enhancement:
* Renamed Flog#methods to #method_scores. (makaroni4)
* 4 minor enhancements:
* Added accessors for methods, scores. Now available for CIs! (makaroni4)
* Refactored calculations down to 2 methods: total_score and totals. (makaroni4)
* Refactored to #calculate, #threshold. (makaroni4)
* Track stack of nested sclass scopes for parser (pithyless)
Sat Mar 23 13:00:00 2013 cooloAATTsuse.com
- updated to version 3.2.3
* 1 bug fix:
* Don\'t blow up if a path doesn\'t exist or isn\'t readable.
Wed Jan 23 13:00:00 2013 cooloAATTsuse.com
- updated to version 3.2.2
* Fixed stupid error when run on empty file.
Fri Dec 21 13:00:00 2012 cooloAATTsuse.com
- updated to version 3.2.1
* Relaxed (and fixed) the ruby_parser dependency.
Wed Dec 19 13:00:00 2012 cooloAATTsuse.com
- updated to version 3.2.0
* 4 minor enhancements:
* Ensure rake/tasklib is loaded when defining FlogTask. (ferrous26)
* Fixed reporting / recording of methods in singleton class blocks. (mihu)
* Refactored error handling code to flog_ruby. Calls flog_ruby! for actual work
* Refactored ruby processing code to flog_ruby!
* 1 bug fix:
* Fixed flogging of || iters. (JacobNinja)
Sat Nov 17 13:00:00 2012 cooloAATTsuse.com
- updated to version 3.1.0
* 4 minor enhancements:
* --quiet option is now false by default, and changed to silence parse warnings.
* Added max_score and max_method. (aselder)
* FlogTask can now take a method to use to figure out score, allowing for total or max_score.
* Switched to capturing RubyParser::SyntaxError (RP 3.0 change).
* 2 bug fixes:
* Avoid redefined warning for File::RUBY19. (svendahlstrand)
* Fixed flog to default to RubyParser if not specified. Allows cleaner programmatic access.
Sat Nov 3 13:00:00 2012 cooloAATTsuse.com
- updated to version 3.0.0
* 1 minor enhancement:
* Added a timeout handler to skip when RubyParser times out on a large file
* 1 bug fix:
* Fixed handling of plain literals in masgn in args.
* 4 minor enhancements:
* Added .rake as a supported extension.
* Create a new parser for every file, preventing state barkification
* Extended DSL support to include hash args (eg task :blah => :dep).
* Extended DSL support to report nested names (eg namespace(blah)::task#woot)
* 1 bug fix:
* Fix for sexp structure changes (no arglists).
* 4 minor enhancements:
* Added --18 and --19 flags to specify parser. Defaults to hybrid.
* Explicitly use Ruby18Parser to remove deprecation warnings.
* Modified processor to deal with cleaner sexps from RP 3.x.
* Use File.binread (File.read in 1.8) to bypass encoding errors
* 2 bug fixes:
* Cleaned up some 1.9 warnings.
* Fixed failing tests against ruby_parser 3
Fri Aug 10 14:00:00 2012 cooloAATTsuse.com
- update to the latest gem2rpm template
Sun Jul 22 14:00:00 2012 cooloAATTsuse.com
- fix gem requires
Wed Apr 11 14:00:00 2012 cfarrellAATTsuse.com
- license update: MIT
See README.txt
Mon Apr 9 14:00:00 2012 cooloAATTsuse.com
- update to version 2.5.3
* class_stack now always pushes on symbols or strings for class names.
* Fixed klass_name returning an ugly mix of sexps and strings.
* Improved parse error output. (impurist)
* Added RegexpError to error handler.
* Improved error output and suggest --continue
* Record the flog score for the full class name, not just suffix. (dkubb)
* Fixed block_pass when passed a multi-level const (xavier)
Mon Sep 6 14:00:00 2010 mrueckertAATTsuse.de
- update to version 2.5.0
* Added plugin system. Define a module under Flog to extend it.
* Added special case penalty for wtf to_proc:
blah(&b = proc {...}) (benjaminb)
* Improved tests and test coverage.
* Unfactored & refactored report code. Much cleaner and more
maintainable now.
* Fixed API change for FlogTask (andreacampi)
* Fixed bad edgecase handler for block_pass (benjaminb)
Wed Aug 4 14:00:00 2010 dmacvicarAATTnovell.com
- remove hoe as runtime dependency
Fri Jun 11 14:00:00 2010 mrueckertAATTsuse.de
- use rubygems_requires macro
Fri Dec 25 13:00:00 2009 prusnakAATTsuse.cz
- updated to 2.4.0
Tue Aug 11 14:00:00 2009 dmacvicarAATTnovell.com
- package c13a0ebfa60a9385982cab0f9c4747a264d7c7ef git as
the official 2.1.2 gem is completely broken.
Sun Jul 26 14:00:00 2009 dmacvicarAATTsuse.de
- initial package for 2.1.2