betamax 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f89807eb4aa9a8365294d743efddad3a94a6a6c9078615731bebc2fa1cf93f6
4
- data.tar.gz: 31a8decf2ca628028820007eff48e83cbe45758fab781bc87503c3c172e61c8a
3
+ metadata.gz: c5b5fbb5686ea27e8f9fd4f21eb6a086c4949a7461f848e385f2fb64a23fd333
4
+ data.tar.gz: 24c0341506d19c85757c88d408343390d76810c92c13717eda21735e2de32f18
5
5
  SHA512:
6
- metadata.gz: 92208fdfd5c7bff89094c394827da00a06425f3c0037e9caa498230a1afb3dec467ab5b32325018c0ce2162095ad9ae1c59be4ab36f8943699ffafffdf13407a
7
- data.tar.gz: cf74600f45a068b9b01b3d268211d3992e6d836d7e80d2f8baafe446a80628588669cb68530e2cb1bea63bd3fca6ea2a5509009562d2bbdb67df538cfdc6650d
6
+ metadata.gz: df2ce112b5ca2b706212e9963208757726e00ba7df005306feae2d58bd8a40347927a7f6e3cdd71df2b717b537fd9f2df855af836dfdba28af5d4f8723dd475b
7
+ data.tar.gz: bf29734cdb839478aa0e555292cd850c91baae0adb7d628e620bbab011ad1379e7143d47b837f858845c32430c3ce8313959b462d1151afb99739fcde412e15e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## 0.1.1 - 2026-06-15
4
+
5
+ - Add UNLICENSE
6
+
3
7
  ## [0.1.0] - 2026-06-15
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -1,23 +1,19 @@
1
1
  # Betamax
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/betamax`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Betamax allows for the recording and playback of arbitrary Ruby objects to simplify testing external dependencies.
6
4
 
7
5
  ## Installation
8
6
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
-
11
7
  Install the gem and add to the application's Gemfile by executing:
12
8
 
13
9
  ```bash
14
- bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
10
+ bundle add betamax
15
11
  ```
16
12
 
17
13
  If bundler is not being used to manage dependencies, install the gem by executing:
18
14
 
19
15
  ```bash
20
- gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
16
+ gem install betamax
21
17
  ```
22
18
 
23
19
  ## Usage
data/UNLICENSE ADDED
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <http://unlicense.org/>
@@ -1,3 +1,3 @@
1
1
  module Betamax
2
- VERSION = "0.1.0".freeze
2
+ VERSION = "0.1.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: betamax
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John DeSilva
@@ -20,6 +20,7 @@ files:
20
20
  - CHANGELOG.md
21
21
  - README.md
22
22
  - Rakefile
23
+ - UNLICENSE
23
24
  - lib/betamax.rb
24
25
  - lib/betamax/errors.rb
25
26
  - lib/betamax/method_player.rb