cobhan 0.2.1 → 0.2.2

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: 9db46be416695ae19f78d794bff7d26d5e6f73d03a5c89a35cd7ab6959d501ea
4
- data.tar.gz: f73725bd8cade9ece9b11d159b3df1eb41482fbfe39d150d0e9ae3c967dc2eac
3
+ metadata.gz: 53bc125c3729ee03fbe69e65539b1f28c0bc340ad5ad72b270daf95804ab99f1
4
+ data.tar.gz: 6f42b421396c973298a5f67eb56f745e1152251820dcaf132894f2202d0c77ed
5
5
  SHA512:
6
- metadata.gz: 1245bb5be6d2a9d22d648a9be179a10444cd02719b937058bfbdee1ee82069b83e5dd4e5cfa554143d177fd0fd05d6be686acd0325e245fb8822829211dbe7ad
7
- data.tar.gz: 0c32181b11382225ea5ac57951b9b5350574f0a341ccd197cf897041061d2188dee0c96a91b35ea9cd75b848e362b8fa4a14e7844771076df6bd2ab26f4cdc09
6
+ metadata.gz: 437b0267c76bd0a1a51b3b733855e3e9cb859275f30239a5bf6be741134367f1eb4030773d542f19624d7ddbe5023a4b406dc22a69361856d6473bbde3a1c3db
7
+ data.tar.gz: 210a6de9795fd9c1a2ec04e18faa12b745f14a420e03c4c8813b3404d454c401e11fbfd73e7a93515d90903bcd372b933dc0056b3e77b3f92394ba8a44c0b238
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.2.0
1
+ 3.2.2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.2] - 2024-05-20
4
+
5
+ - Relax FFI dependency
6
+
3
7
  ## [0.2.1] - 2023-01-25
4
8
 
5
9
  - Support non GNU Lib C library file names with `load_library`
data/CONTRIBUTING.md CHANGED
@@ -9,15 +9,10 @@ No matter how you want to get involved, we ask that you first learn what’s
9
9
  expected of anyone who participates in the project by reading the Contribution
10
10
  Guidelines and our [Code of Conduct][coc].
11
11
 
12
- **Please Note:** GitHub is for bug reports and contributions primarily -
13
- if you have a support question head over to [GoDaddy's Open Source
14
- Software Slack channel][slack]. You can request an invite
15
- [here][invite].
16
-
17
12
  ## Answering Questions
18
13
 
19
14
  One of the most important and immediate ways you can support this project is
20
- to answer questions on [Slack][slack] or [Github][issues]. Whether you’re
15
+ to answer questions on [Github][issues]. Whether you’re
21
16
  helping a newcomer understand a feature or troubleshooting an edge case with a
22
17
  seasoned developer, your knowledge and experience with a programming language
23
18
  can go a long way to help others.
@@ -63,7 +58,7 @@ From a practical perspective, contributions are as simple as:
63
58
  If you are interested in making a large change and feel unsure about its overall
64
59
  effect, start with opening an Issue in the project's [Issue Tracker][issues]
65
60
  with a high-level proposal and discuss it with the core contributors through
66
- Github comments or in [Slack][slack]. After reaching a consensus with core
61
+ Github comments. After reaching a consensus with core
67
62
  contributors about the change, discuss the best way to go about implementing it.
68
63
 
69
64
  > Tip: Keep your main branch pointing at the original repository and make
@@ -97,9 +92,6 @@ patches:
97
92
  willing to do the same for you.
98
93
  - Split your change into multiple smaller changes. The smaller your change,
99
94
  the higher the probability that somebody will take a quick look at it.
100
- - Mention the change on [Slack][slack]. If it is urgent, provide reasons why it
101
- is important to get this change landed. Remember that you are asking for valuable
102
- time from other professional developers.
103
95
 
104
96
  **Note that anyone is welcome to review and give feedback on a change, but only
105
97
  people with commit access to the repository can approve it.**
@@ -123,6 +115,4 @@ guide with respect to patterns, naming, documentation and testing.
123
115
 
124
116
  [issues]: https://github.com/godaddy/cobhan-ruby/issues/
125
117
  [coc]: ./CODE_OF_CONDUCT.md
126
- [slack]: https://godaddy-oss.slack.com/
127
118
  [fork]: https://help.github.com/en/articles/fork-a-repo
128
- [invite]: https://godaddy-oss-slack.herokuapp.com
data/Gemfile CHANGED
@@ -6,3 +6,7 @@ source 'https://rubygems.org'
6
6
  gemspec
7
7
 
8
8
  gem 'rake', '~> 13.0'
9
+ gem 'rspec', '~> 3.10.0'
10
+ gem 'rubocop', '~> 1.7'
11
+ gem 'simplecov', '~> 0.21.2'
12
+ gem 'simplecov-console', '~> 0.9.1'
data/cobhan.gemspec CHANGED
@@ -35,10 +35,5 @@ Gem::Specification.new do |spec|
35
35
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
36
36
  spec.require_paths = ['lib']
37
37
 
38
- spec.add_dependency 'ffi', '~> 1.15.4'
39
-
40
- spec.add_development_dependency 'rspec', '~> 3.10.0'
41
- spec.add_development_dependency 'rubocop', '~> 1.7'
42
- spec.add_development_dependency 'simplecov', '~> 0.21.2'
43
- spec.add_development_dependency 'simplecov-console', '~> 0.9.1'
38
+ spec.add_dependency 'ffi'
44
39
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cobhan
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
metadata CHANGED
@@ -1,85 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cobhan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - GoDaddy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-25 00:00:00.000000000 Z
11
+ date: 2024-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.15.4
19
+ version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 1.15.4
27
- - !ruby/object:Gem::Dependency
28
- name: rspec
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 3.10.0
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 3.10.0
41
- - !ruby/object:Gem::Dependency
42
- name: rubocop
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '1.7'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '1.7'
55
- - !ruby/object:Gem::Dependency
56
- name: simplecov
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: 0.21.2
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: 0.21.2
69
- - !ruby/object:Gem::Dependency
70
- name: simplecov-console
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: 0.9.1
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: 0.9.1
26
+ version: '0'
83
27
  description: |
84
28
  Cobhan FFI is a proof of concept system for enabling shared code to be written
85
29
  in Rust or Go and consumed from all major languages/platforms in a safe and effective way,
@@ -128,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
72
  - !ruby/object:Gem::Version
129
73
  version: '0'
130
74
  requirements: []
131
- rubygems_version: 3.4.1
75
+ rubygems_version: 3.4.19
132
76
  signing_key:
133
77
  specification_version: 4
134
78
  summary: Ruby wrapper library for the Cobhan FFI system