├── .circleci └── config.yml ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── enforce-license-compliance.yml ├── .gitignore ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── calculator.gemspec ├── lib └── calculator.rb └── test ├── calculator_test.rb └── test_helper.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-license-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/.github/workflows/enforce-license-compliance.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/ 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /calculator.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/calculator.gemspec -------------------------------------------------------------------------------- /lib/calculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/lib/calculator.rb -------------------------------------------------------------------------------- /test/calculator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/test/calculator_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-ruby/HEAD/test/test_helper.rb --------------------------------------------------------------------------------