xre 0.5.4-x86_64-darwin → 0.5.5-x86_64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2820731414ce8e3b3700dfbcb2adf943a9d6e12246dee1e205fb09c45a8b0ca6
4
- data.tar.gz: 30de4b46256476eee21cf39b5e2ec036354dd52ee9a061b477c21a3d871b6844
3
+ metadata.gz: 9ed589b2e4d8d98ab3a7864b60d9ca5be7ed76e704e94a4c6424df5ce1f70a50
4
+ data.tar.gz: 22adccf2aff863cb1f874b7c548c29897e5e5a7e132305696a1a19ecf7aa68e0
5
5
  SHA512:
6
- metadata.gz: c135babf92993097270aa1cfe8877878f5b14745bd4628f4d89550b30f46239eee2b368f65faeb00667b5b6100e4ef0f6c8b45f811d3c63f718ea458bf174ea3
7
- data.tar.gz: 3db4bc888d0e2296cdb09a547c4037754bbe4eccd8476433dbd3dc2919f89def86c0282953d11f4b5eed77a8f40faad1faa006fd607d6033ad4f2c88c8f0eafe
6
+ metadata.gz: '0508f6f3e0d1ccf33deb50045338b5a3822eb095ba7b87078d2592b99a04169ed614fc5afce2e53b974da80ff9c854a6e6f239a54fd474d45913244fe4927507'
7
+ data.tar.gz: 4eb3f5b3f3a836fc1efad7ea88311ab262ba068d6b45c3bc12159bfc8b3c7cdd32c11c5ce10cbb07354a898b66709116a4038f3fa92342fe18294692c98f632c
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: x86_64-darwin
6
6
  authors:
7
7
  - barseek