Initial commit
parents
Showing
+735 -0
.circleci/config.yml
0 → 100644
.cursorrules
0 → 100644
.github/workflows/ruby.yml
0 → 100644
.gitignore
0 → 100644
.rubocop.yml
0 → 100644
.travis.yml
0 → 100644
CHANGELOG.md
0 → 100644
CODE_OF_CONDUCT.md
0 → 100644
CONTRIBUTING.MD
0 → 100644
Gemfile
0 → 100644
# typed: true | |||
# frozen_string_literal: true | |||
source "https://rubygems.org" | |||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | |||
group(:test) do | |||
gem('mocha') | |||
gem('rubocop', require: false) | |||
gem('rubocop-minitest', require: false) | |||
gem('rubocop-performance', require: false) | |||
gem('vcr') | |||
gem('webmock') | |||
end | |||
group(:development) do | |||
gem('pry') | |||
gem('pry-nav') | |||
end | |||
gemspec |
Gemfile.lock
0 → 100644
LICENSE.txt
0 → 100644
README.md
0 → 100644
This diff is collapsed.
Rakefile
0 → 100644
SECURITY.md
0 → 100644
bin/console
0 → 100755
Please register or sign in to comment