diff options
| author | mo khan <mo@mokhan.ca> | 2021-12-21 09:53:25 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2021-12-21 09:53:25 -0700 |
| commit | 846d7e7e2090d18eeef97ef9320a0857c58e8ab8 (patch) | |
| tree | 2f0ce96076bb5367a2df68802ae6a3cf61c9527b | |
| parent | 10dbb59c52dc5d99a88d14fec0330d00139245f2 (diff) | |
chore: add Gemfile and test gems
| -rw-r--r-- | Gemfile | 6 | ||||
| -rw-r--r-- | Gemfile.lock | 38 |
2 files changed, 44 insertions, 0 deletions
@@ -0,0 +1,6 @@ +source "https://rubygems.org" + +group :test do + gem "rspec", "~> 3.0" + gem "webmock", "~> 3.14" +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..e11419a --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,38 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.0) + public_suffix (>= 2.0.2, < 5.0) + crack (0.4.5) + rexml + diff-lcs (1.4.4) + hashdiff (1.0.1) + public_suffix (4.0.6) + rexml (3.2.5) + rspec (3.10.0) + rspec-core (~> 3.10.0) + rspec-expectations (~> 3.10.0) + rspec-mocks (~> 3.10.0) + rspec-core (3.10.1) + rspec-support (~> 3.10.0) + rspec-expectations (3.10.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.10.0) + rspec-mocks (3.10.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.10.0) + rspec-support (3.10.3) + webmock (3.14.0) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + rspec (~> 3.0) + webmock (~> 3.14) + +BUNDLED WITH + 2.2.33 |
