├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── _config.yml ├── bin └── setup ├── calculate-all.gemspec ├── gemfiles ├── activerecord42.gemfile ├── activerecord50.gemfile ├── activerecord52.gemfile ├── activerecord60.gemfile ├── activerecord61.gemfile ├── activerecord70.gemfile └── activerecord71.gemfile ├── lib ├── calculate-all.rb └── calculate-all │ └── version.rb └── test ├── calculate_all_test.rb └── test_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/Rakefile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/bin/setup -------------------------------------------------------------------------------- /calculate-all.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/calculate-all.gemspec -------------------------------------------------------------------------------- /gemfiles/activerecord42.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/gemfiles/activerecord42.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord50.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/gemfiles/activerecord50.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord52.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/gemfiles/activerecord52.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord60.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/gemfiles/activerecord60.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord61.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/gemfiles/activerecord61.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord70.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/gemfiles/activerecord70.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord71.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/gemfiles/activerecord71.gemfile -------------------------------------------------------------------------------- /lib/calculate-all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/lib/calculate-all.rb -------------------------------------------------------------------------------- /lib/calculate-all/version.rb: -------------------------------------------------------------------------------- 1 | module CalculateAll 2 | VERSION = "0.4.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/calculate_all_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/test/calculate_all_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesnik/calculate-all/HEAD/test/test_helper.rb --------------------------------------------------------------------------------