xre 0.5.4-arm64-darwin → 0.5.5-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 71dfcb56a0bd18bc5807f2e1fd92ef8e86c8db991a65c7c04666c48a776872c7
4
- data.tar.gz: '04588a96324951fc194bc0b71d2360d9e5ee5517e60394461a2145913ad81ecb'
3
+ metadata.gz: 76231f7ab1d7de570c1830623ac98db908947c3516bcc8ab0503f5745e1329a4
4
+ data.tar.gz: f57cbfca9adef946145218270b2a6418718b0b876ac4cbcc56575f3747997d81
5
5
  SHA512:
6
- metadata.gz: 28fb7c4aec83151b9340c2e806377ac031069eb406d37355c33adb11729365cb68c12d703f5a0ffae5ddb1d9ee3858312cf77a11a50b090764f395dee66fc3c4
7
- data.tar.gz: c061f50edb6f2a6409dbd43fb71434b86f3a314ca05925214b1417e7426fe00a57b6afb4c1e4a970f45fc900497bf5ca6084ecc62f986e4966c5628a3e2e6068
6
+ metadata.gz: 6941edb9611bbcdf8033e58f50bf2a85dba0729107c4b25ffe621256aafdcc98786b270a9a74191ef2eb9f92141b96dc07386b6e505690aaf7e985510517ede1
7
+ data.tar.gz: 4a1980ccc94a7ea8277b2525e214809e50651a40e067012ca326e4b9bbc21428c89cc088afd5b49231bc4f5a2156b0530126eeae264dce47cc566e87e5723de3
data/README.md CHANGED
@@ -66,8 +66,10 @@ curl https://sh.rustup.rs -sSf | sh
66
66
 
67
67
  **Ruby tests:**
68
68
 
69
+ Our ruby tests live in the regular `spec` directory of the project, so inside `clearscope` run:
70
+
69
71
  ```bash
70
- bundle exec rake spec
72
+ bundle exec rspec spec/xre
71
73
  ```
72
74
 
73
75
  **Rust tests:**
@@ -76,20 +78,9 @@ bundle exec rake spec
76
78
  cargo test # you will need rust toolchain for that
77
79
  ```
78
80
 
79
- **Rust linting:**
80
-
81
- ````bash
82
- # you will need rust toolchain for that
83
- cargo fmt # will format the code
84
- cargo clippy # will suggest improvements, not only style ones
85
- ```
86
-
87
81
  ## Publishing:
88
82
 
89
83
  The codebase includes `xre/Rakefile` which in turn defines a `gem:native`
90
84
  task that compiles the extension for the `x86_64-linux`, `x86_64-darwin`, and `arm64-darwin`
91
85
  and puts the compiled gems into `xre/pkg/` directory, from where one should
92
86
  `gem push xre-<version>-x86_64-linux.gem` to publish the gem.
93
-
94
- > Note: You will need a docker installed on your machine for that
95
- ````
data/lib/xre/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Xre
4
- VERSION = "0.5.4"
4
+ VERSION = "0.5.5"
5
5
  end
data/lib/xre/xre.bundle CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xre
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - barseek