rvvm 0.9.0 → 0.9.2

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: bfe48fe0908436378978c1f713512eef964526caa955f0c20d6c63b866d5bcac
4
+ data.tar.gz: 6d197fb0b236b3a8bde5c058db531593e551b97a6c8b71429c7aa302061d5d68
5
5
  SHA512:
6
- metadata.gz: 653bfc3de532ba3180787beaa378c143a90c22e1cd36a029b991523d83766c71c97d38a04af3714ee705234b2b2af880218edc050dcd6926d78d54851218fccd
7
- data.tar.gz: caa9ab4d9ac09af338527577c7dc8885eeaa2569f03994d7e6c896c7ebfcd3a54ef649ff59f048d6e056608ba48f0d0ab266b040ef08cb2f319af0ef9f377120
6
+ metadata.gz: ec6fe8c155ffa528e13b0c443e8361b648fb5ab94e3230e6257fad0c10a16fa338e53cbda53b57b83186902fcb9aa03c486609e73a04fc4d8b51a5ab86542fa9
7
+ data.tar.gz: bd555309f858e5bb274b03cdd929bbbbbac26042e634e9812a8f974c524d82a603cd735bfc9d4e01a2dd468d9245eab7534be4ce749833e84e7918929369bb8f
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,15 @@
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
57
+
58
+ ## [0.9.2] - 2024-09-16
59
+
60
+ ### Fixes
61
+
62
+ 1. rvvm executable still missing after 0.9.1 update
data/exe/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.2"
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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - mrbya
@@ -15,7 +15,8 @@ description: RVvM is a Ruby based meta tool to manage/compile/elaborate and run
15
15
  xsc tools
16
16
  email:
17
17
  - v.toth.svk2@gmail.com
18
- executables: []
18
+ executables:
19
+ - rvvm
19
20
  extensions: []
20
21
  extra_rdoc_files: []
21
22
  files:
@@ -25,8 +26,7 @@ files:
25
26
  - LICENSE.txt
26
27
  - README.md
27
28
  - Rakefile
28
- - bin/console
29
- - bin/setup
29
+ - exe/rvvm
30
30
  - lib/rvvm.rb
31
31
  - lib/rvvm/templates.rb
32
32
  - 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