xre 0.5.5-x86_64-darwin → 0.5.7-x86_64-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: 9ed589b2e4d8d98ab3a7864b60d9ca5be7ed76e704e94a4c6424df5ce1f70a50
4
- data.tar.gz: 22adccf2aff863cb1f874b7c548c29897e5e5a7e132305696a1a19ecf7aa68e0
3
+ metadata.gz: 0cbb01fbaa003ee38a0e45ff109537d760fa5d9a4ac1296988df2f25fb71aa10
4
+ data.tar.gz: 75f7d94abab805fe0cdbdbf8f206836cd6abad26c57e3da7a823a5f5f9810117
5
5
  SHA512:
6
- metadata.gz: '0508f6f3e0d1ccf33deb50045338b5a3822eb095ba7b87078d2592b99a04169ed614fc5afce2e53b974da80ff9c854a6e6f239a54fd474d45913244fe4927507'
7
- data.tar.gz: 4eb3f5b3f3a836fc1efad7ea88311ab262ba068d6b45c3bc12159bfc8b3c7cdd32c11c5ce10cbb07354a898b66709116a4038f3fa92342fe18294692c98f632c
6
+ metadata.gz: cebf87b76f64afc29cd9fe8230f72a6ef8fc48380ba013194e1ef935694b9a7fc357878baa058346f46db763cb0c516bd445e82ee51d1d29cc7284d9dd2ea903
7
+ data.tar.gz: a8f86dbcc07b86520e8e98b16007ed44e1ced5b376785f6c0cb03c59632d588b8787d2b06b34107eeb0782fb2f0d5a6276fb5f530ab14341ed649acc9ea2b20f
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.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.5
4
+ version: 0.5.7
5
5
  platform: x86_64-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.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
  - - ">="