rvvm 0.9.0 → 0.9.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: 87bb2df32ddefc3b2a60a2ab3a2a16f06ab99e7a7e87b7f4a6b0b5397cc653de
4
- data.tar.gz: '0205778de7b899092c54f2a0df6552294e50c25e6a213af1d17c47de30659a20'
3
+ metadata.gz: 1adb1e3128aba4ae80aafe456e74fd01e9f081ed8eb7e6d674a8ad3fdab4bc77
4
+ data.tar.gz: d9fba544ec9f442500f5093965385f3dfd79b5ca467fae96747ef32bdbe7bb70
5
5
  SHA512:
6
- metadata.gz: 653bfc3de532ba3180787beaa378c143a90c22e1cd36a029b991523d83766c71c97d38a04af3714ee705234b2b2af880218edc050dcd6926d78d54851218fccd
7
- data.tar.gz: caa9ab4d9ac09af338527577c7dc8885eeaa2569f03994d7e6c896c7ebfcd3a54ef649ff59f048d6e056608ba48f0d0ab266b040ef08cb2f319af0ef9f377120
6
+ metadata.gz: ae09b52956eb59cc1b8032e4cc03a432606a3699d8644398dd902198d0c8be018cfed40dd6612883be746ae95d712a91cefe563f1bcc35360e1a30471df7070e
7
+ data.tar.gz: b4bf62217031b5f27e45a48c4f4fa7eab737f4a9ae8abde5677c6c066245c094bfe33957358ed80765962c7a5bd0dce9b274ac8b427d96539c1b35574a7dacb9
data/CHANGELOG.md CHANGED
@@ -26,7 +26,7 @@
26
26
  6. Unit tests
27
27
  7. CLI log graphic
28
28
 
29
- ## [0.9.0] - 2024-09016
29
+ ## [0.9.0] - 2024-09-16
30
30
 
31
31
  ### Added:
32
32
 
@@ -48,3 +48,9 @@
48
48
  1. Test list parsing and batch simulation
49
49
  2. Unit tests
50
50
  3. CLI log graphics
51
+
52
+ ## [0.9.1] - 2024-09-16
53
+
54
+ ## Fixes
55
+
56
+ 1. Fixed rvvm exacutable being excluded by gemspec
data/bin/rvvm ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "rvvm"
5
+
6
+ Rvvm.run
data/lib/rvvm/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rvvm
4
- VERSION = "0.9.0"
4
+ VERSION = "0.9.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rvvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - mrbya
@@ -25,8 +25,7 @@ files:
25
25
  - LICENSE.txt
26
26
  - README.md
27
27
  - Rakefile
28
- - bin/console
29
- - bin/setup
28
+ - bin/rvvm
30
29
  - lib/rvvm.rb
31
30
  - lib/rvvm/templates.rb
32
31
  - lib/rvvm/utils.rb
data/bin/console DELETED
@@ -1,11 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "bundler/setup"
5
- require "rvvm"
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- require "irb"
11
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here