xre 0.5.5-x86_64-linux → 0.5.7-x86_64-linux

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: d839632a9319973197a4001738ff82d61d995699c7bf668d7fe9cf21e79f0efe
4
- data.tar.gz: d2b7838d0d6f09cb731060f9475ffd3ea74ce13da923d7eb5949bc00a330eec7
3
+ metadata.gz: '083730892caeefdc56f9cc50f162069e366e16f741340f39641ab3775db21ffc'
4
+ data.tar.gz: 7eff9b305c5422b6cf0a841f546516c473b92f3b35eb6fc09ba1a726d5891a78
5
5
  SHA512:
6
- metadata.gz: ef6b805e22fdfbb92484b733c9fffba271519053295a77a9cbb72d47d8bec70d983149e917e20d1dbafba439866c32e8af546db64086fe8eb2ce3962a2272a0f
7
- data.tar.gz: 87bb89a06e07ebede2b0fcaf5989d5383e895f8417f6c672a9ad0b7a81a167f9d3c71df4e45822fb4e681f11303956eaff2c8157d2ef9601f0b577819bdaa971
6
+ metadata.gz: 3f1f0545e36945a0d95d49a62798b8bd708d01851eeb0752fea3a910381161aad829df6870c3d20e6053662da95c9fb9563992afbe330f1df81f949a636ae1a3
7
+ data.tar.gz: d00bbd1a32831811307b28676989a2f0a5098407abfc5476b4687e94f4d4daf416b3570ad87fb162e6e03aeb815cdc59aac5d75343f49c8f820beb070c12a16c
data/README.md CHANGED
@@ -66,10 +66,8 @@ 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
-
71
69
  ```bash
72
- bundle exec rspec spec/xre
70
+ bundle exec rake spec
73
71
  ```
74
72
 
75
73
  **Rust tests:**
@@ -78,9 +76,20 @@ bundle exec rspec spec/xre
78
76
  cargo test # you will need rust toolchain for that
79
77
  ```
80
78
 
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
+
81
87
  ## Publishing:
82
88
 
83
89
  The codebase includes `xre/Rakefile` which in turn defines a `gem:native`
84
90
  task that compiles the extension for the `x86_64-linux`, `x86_64-darwin`, and `arm64-darwin`
85
91
  and puts the compiled gems into `xre/pkg/` directory, from where one should
86
92
  `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.5"
4
+ VERSION = "0.5.7"
5
5
  end
data/lib/xre/xre.so 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.5
4
+ version: 0.5.7
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - barseek
@@ -35,10 +35,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
35
  requirements:
36
36
  - - ">="
37
37
  - !ruby/object:Gem::Version
38
- version: '3.2'
38
+ version: '3.3'
39
39
  - - "<"
40
40
  - !ruby/object:Gem::Version
41
- version: 3.3.dev
41
+ version: 3.4.dev
42
42
  required_rubygems_version: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - ">="