├── .gitignore ├── .travis.yml ├── Appraisals ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── VERSION.yml ├── completeness-fu.gemspec ├── gemfiles ├── rails-3-1.gemfile └── rails-3.gemfile ├── lib ├── completeness-fu.rb └── completeness-fu │ ├── active_model_additions.rb │ └── scoring_builder.rb ├── readme.markdown └── test ├── en.yml ├── scoring_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | test/test.sqlite3 2 | pkg 3 | Gemfile.lock -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/Appraisals -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/VERSION.yml -------------------------------------------------------------------------------- /completeness-fu.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/completeness-fu.gemspec -------------------------------------------------------------------------------- /gemfiles/rails-3-1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/gemfiles/rails-3-1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails-3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/gemfiles/rails-3.gemfile -------------------------------------------------------------------------------- /lib/completeness-fu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/lib/completeness-fu.rb -------------------------------------------------------------------------------- /lib/completeness-fu/active_model_additions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/lib/completeness-fu/active_model_additions.rb -------------------------------------------------------------------------------- /lib/completeness-fu/scoring_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/lib/completeness-fu/scoring_builder.rb -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/readme.markdown -------------------------------------------------------------------------------- /test/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/test/en.yml -------------------------------------------------------------------------------- /test/scoring_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/test/scoring_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshk/completeness-fu/HEAD/test/test_helper.rb --------------------------------------------------------------------------------