xre 0.5.5-arm64-darwin → 0.5.7-arm64-darwin
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 +4 -4
- data/README.md +12 -3
- data/lib/xre/version.rb +1 -1
- data/lib/xre/xre.bundle +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c14514cdd9f275f9815684a2e74651261e43d422d7891868ee5045646b3d0abf
|
4
|
+
data.tar.gz: f4f65d622ea50c012baaff792c8d3861bb90a01599091872f728e16363f53208
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80e9ffe725663027362732fa38af69f10132ffbdd7472626efbd272dfd8db3f871e9a0c3ce2085248347ee20d7c970901aa21a25d0b145d1dc4c05050ae4d5e4
|
7
|
+
data.tar.gz: 72889ada0533cd798f2f5c9a6b13f04e5c0fff6fbd74e41a8071f4dffaa9ddd2d6272ad4cacc520dd0fa8d5b3188e528cc0e5719eccefa85b8d6cf7ac67b36cd
|
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
|
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
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
|
+
version: 0.5.7
|
5
5
|
platform: arm64-darwin
|
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.
|
38
|
+
version: '3.3'
|
39
39
|
- - "<"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 3.
|
41
|
+
version: 3.4.dev
|
42
42
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - ">="
|