rs_floating_duration 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6f6d39c0feafcc5ac5e12f2e35b67253620ecf5452aab6cd30d7514685d485fe
4
+ data.tar.gz: 99bbd3db95336bbc9abc6c840a9521e384dc5a4a0b88282b8a39868fe4ca29a7
5
+ SHA512:
6
+ metadata.gz: 24f00116ecf34804c9a689a93c4490a591c0d8c8286665b5051d3c1727f4dfb4d2bc79dd82c30cef44b17031d39cb442b0e5fcc149dce8328d39f796f123bf7f
7
+ data.tar.gz: 7314ea6b026dc473a8a55a5b7fefc15c071468fb0cd4d3b7b4b3a28af0ac46a31b7fa34b8de20a4af300adaaca4422570011559a08d1dacd311dce7f14cb5f99
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.3.0
data/CHANGELOG.md ADDED
File without changes
data/Cargo.lock ADDED
@@ -0,0 +1,347 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "bindgen"
16
+ version = "0.69.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "a4c69fae65a523209d34240b60abe0c42d33d1045d445c0839d8a4894a736e2d"
19
+ dependencies = [
20
+ "bitflags",
21
+ "cexpr",
22
+ "clang-sys",
23
+ "lazy_static",
24
+ "lazycell",
25
+ "peeking_take_while",
26
+ "proc-macro2",
27
+ "quote",
28
+ "regex",
29
+ "rustc-hash",
30
+ "shlex",
31
+ "syn",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "bitflags"
36
+ version = "2.4.2"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
39
+
40
+ [[package]]
41
+ name = "cexpr"
42
+ version = "0.6.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
45
+ dependencies = [
46
+ "nom",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "cfg-if"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
54
+
55
+ [[package]]
56
+ name = "clang-sys"
57
+ version = "1.7.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
60
+ dependencies = [
61
+ "glob",
62
+ "libc",
63
+ "libloading",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "floating-duration"
68
+ version = "0.1.2"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "b2c60b71d9dbcd810a3be879dc9aafac6cec5c50dc2346e245f61f54a61fdf22"
71
+
72
+ [[package]]
73
+ name = "glob"
74
+ version = "0.3.1"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
77
+
78
+ [[package]]
79
+ name = "lazy_static"
80
+ version = "1.4.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
83
+
84
+ [[package]]
85
+ name = "lazycell"
86
+ version = "1.3.0"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
89
+
90
+ [[package]]
91
+ name = "libc"
92
+ version = "0.2.153"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
95
+
96
+ [[package]]
97
+ name = "libloading"
98
+ version = "0.8.1"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
101
+ dependencies = [
102
+ "cfg-if",
103
+ "windows-sys",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "magnus"
108
+ version = "0.6.2"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
111
+ dependencies = [
112
+ "magnus-macros",
113
+ "rb-sys",
114
+ "rb-sys-env",
115
+ "seq-macro",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "magnus-macros"
120
+ version = "0.6.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
123
+ dependencies = [
124
+ "proc-macro2",
125
+ "quote",
126
+ "syn",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "memchr"
131
+ version = "2.7.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
134
+
135
+ [[package]]
136
+ name = "minimal-lexical"
137
+ version = "0.2.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
140
+
141
+ [[package]]
142
+ name = "nom"
143
+ version = "7.1.3"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
146
+ dependencies = [
147
+ "memchr",
148
+ "minimal-lexical",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "peeking_take_while"
153
+ version = "0.1.2"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
156
+
157
+ [[package]]
158
+ name = "proc-macro2"
159
+ version = "1.0.78"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
162
+ dependencies = [
163
+ "unicode-ident",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "quote"
168
+ version = "1.0.35"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
171
+ dependencies = [
172
+ "proc-macro2",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "rb-sys"
177
+ version = "0.9.87"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "225103e3d69bbfe8831f9fd0d2461335f3a9dd06aa6e88bcb6d6970383494d06"
180
+ dependencies = [
181
+ "rb-sys-build",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "rb-sys-build"
186
+ version = "0.9.87"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "bacce8095a5167d5ede618bbd9353e9d9e2f32ddaf54be911106f0ee6baacf09"
189
+ dependencies = [
190
+ "bindgen",
191
+ "lazy_static",
192
+ "proc-macro2",
193
+ "quote",
194
+ "regex",
195
+ "shell-words",
196
+ "syn",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "rb-sys-env"
201
+ version = "0.1.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
204
+
205
+ [[package]]
206
+ name = "regex"
207
+ version = "1.10.3"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
210
+ dependencies = [
211
+ "aho-corasick",
212
+ "memchr",
213
+ "regex-automata",
214
+ "regex-syntax",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "regex-automata"
219
+ version = "0.4.5"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
222
+ dependencies = [
223
+ "aho-corasick",
224
+ "memchr",
225
+ "regex-syntax",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "regex-syntax"
230
+ version = "0.8.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
233
+
234
+ [[package]]
235
+ name = "rs_floating_duration"
236
+ version = "0.1.0"
237
+ dependencies = [
238
+ "floating-duration",
239
+ "magnus",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "rustc-hash"
244
+ version = "1.1.0"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
247
+
248
+ [[package]]
249
+ name = "seq-macro"
250
+ version = "0.3.5"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
253
+
254
+ [[package]]
255
+ name = "shell-words"
256
+ version = "1.1.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
259
+
260
+ [[package]]
261
+ name = "shlex"
262
+ version = "1.3.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
265
+
266
+ [[package]]
267
+ name = "syn"
268
+ version = "2.0.48"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
271
+ dependencies = [
272
+ "proc-macro2",
273
+ "quote",
274
+ "unicode-ident",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "unicode-ident"
279
+ version = "1.0.12"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
282
+
283
+ [[package]]
284
+ name = "windows-sys"
285
+ version = "0.48.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
288
+ dependencies = [
289
+ "windows-targets",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "windows-targets"
294
+ version = "0.48.5"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
297
+ dependencies = [
298
+ "windows_aarch64_gnullvm",
299
+ "windows_aarch64_msvc",
300
+ "windows_i686_gnu",
301
+ "windows_i686_msvc",
302
+ "windows_x86_64_gnu",
303
+ "windows_x86_64_gnullvm",
304
+ "windows_x86_64_msvc",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "windows_aarch64_gnullvm"
309
+ version = "0.48.5"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
312
+
313
+ [[package]]
314
+ name = "windows_aarch64_msvc"
315
+ version = "0.48.5"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
318
+
319
+ [[package]]
320
+ name = "windows_i686_gnu"
321
+ version = "0.48.5"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
324
+
325
+ [[package]]
326
+ name = "windows_i686_msvc"
327
+ version = "0.48.5"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
330
+
331
+ [[package]]
332
+ name = "windows_x86_64_gnu"
333
+ version = "0.48.5"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
336
+
337
+ [[package]]
338
+ name = "windows_x86_64_gnullvm"
339
+ version = "0.48.5"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
342
+
343
+ [[package]]
344
+ name = "windows_x86_64_msvc"
345
+ version = "0.48.5"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
data/Cargo.toml ADDED
@@ -0,0 +1,7 @@
1
+ # This Cargo.toml is here to let externals tools (IDEs, etc.) know that this is
2
+ # a Rust project. Your extensions dependencies should be added to the Cargo.toml
3
+ # in the ext/ directory.
4
+
5
+ [workspace]
6
+ members = ["./ext/rs_floating_duration"]
7
+ resolver = "2"
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # RsFloatingDuration
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rs_floating_duration`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/wjlroe/rs_floating_duration.
data/Rakefile ADDED
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rb_sys/extensiontask"
5
+ require "standard/rake"
6
+
7
+ task build: :compile
8
+
9
+ GEMSPEC = Gem::Specification.load("rs_floating_duration.gemspec")
10
+
11
+ RbSys::ExtensionTask.new("rs_floating_duration", GEMSPEC) do |ext|
12
+ ext.lib_dir = "lib/rs_floating_duration"
13
+ end
14
+
15
+ task default: :compile
16
+
17
+ task examples: :build do
18
+ require "bundler/setup"
19
+ require "rs_floating_duration"
20
+ numbers = [
21
+ 0.5,
22
+ 0.001,
23
+ 0.02,
24
+ 10
25
+ ]
26
+ numbers.each do |number|
27
+ puts "(#{number}s) => (short) #{RsFloatingDuration.time_format(number)} (long) #{RsFloatingDuration.time_format_long(number)}"
28
+ end
29
+ end
@@ -0,0 +1,13 @@
1
+ [package]
2
+ name = "rs_floating_duration"
3
+ version = "0.1.0"
4
+ edition = "2021"
5
+ authors = ["William Roe <git@wjlr.org.uk>"]
6
+ publish = false
7
+
8
+ [lib]
9
+ crate-type = ["cdylib"]
10
+
11
+ [dependencies]
12
+ floating-duration = "0.1.2"
13
+ magnus = { version = "0.6.2" }
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "mkmf"
4
+ require "rb_sys/mkmf"
5
+
6
+ create_rust_makefile("rs_floating_duration/rs_floating_duration")
@@ -0,0 +1,19 @@
1
+ use floating_duration::TimeFormat;
2
+ use magnus::{function, prelude::*, Error, Ruby};
3
+ use std::time::Duration;
4
+
5
+ fn time_format(seconds: f64) -> String {
6
+ format!("{}", TimeFormat(Duration::from_secs_f64(seconds)))
7
+ }
8
+
9
+ fn time_format_long(seconds: f64) -> String {
10
+ format!("{:#}", TimeFormat(Duration::from_secs_f64(seconds)))
11
+ }
12
+
13
+ #[magnus::init]
14
+ fn init(ruby: &Ruby) -> Result<(), Error> {
15
+ let module = ruby.define_module("RsFloatingDuration")?;
16
+ module.define_singleton_method("time_format", function!(time_format, 1))?;
17
+ module.define_singleton_method("time_format_long", function!(time_format_long, 1))?;
18
+ Ok(())
19
+ }
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RsFloatingDuration
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rs_floating_duration/version"
4
+ require_relative "rs_floating_duration/rs_floating_duration"
5
+
6
+ module RsFloatingDuration
7
+ class Error < StandardError; end
8
+ # Your code goes here...
9
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/rs_floating_duration/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "rs_floating_duration"
7
+ spec.version = RsFloatingDuration::VERSION
8
+ spec.authors = ["William Roe"]
9
+ spec.email = ["rubygems@wjlr.org.uk"]
10
+ spec.licenses = ["MIT"]
11
+
12
+ spec.summary = "A wrapper around Rust's floating_duration crate"
13
+ spec.description = "The floating_duration crate can format time durations as strings"
14
+ spec.homepage = "https://github.com/wjlroe/rs_floating_duration"
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+ spec.required_rubygems_version = ">= 3.3.11"
17
+
18
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
19
+
20
+ spec.metadata["homepage_uri"] = spec.homepage
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(__dir__) do
25
+ `git ls-files -z`.split("\x0").reject do |f|
26
+ (File.expand_path(f) == __FILE__) ||
27
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile .github])
28
+ end + Dir.glob("lib/**/*.{so,bundle}")
29
+ end
30
+ spec.bindir = "exe"
31
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
+ spec.require_paths = ["lib"]
33
+ spec.extensions = ["ext/rs_floating_duration/Cargo.toml"]
34
+
35
+ # Uncomment to register a new dependency of your gem
36
+ # spec.add_dependency "example-gem", "~> 1.0"
37
+
38
+ # For more information and examples about making a new gem, check out our
39
+ # guide at: https://bundler.io/guides/creating_gem.html
40
+ end
@@ -0,0 +1,4 @@
1
+ module RsFloatingDuration
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rs_floating_duration
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - William Roe
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-02-17 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: The floating_duration crate can format time durations as strings
14
+ email:
15
+ - rubygems@wjlr.org.uk
16
+ executables: []
17
+ extensions:
18
+ - ext/rs_floating_duration/Cargo.toml
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".ruby-version"
22
+ - CHANGELOG.md
23
+ - Cargo.lock
24
+ - Cargo.toml
25
+ - README.md
26
+ - Rakefile
27
+ - ext/rs_floating_duration/Cargo.toml
28
+ - ext/rs_floating_duration/extconf.rb
29
+ - ext/rs_floating_duration/src/lib.rs
30
+ - lib/rs_floating_duration.rb
31
+ - lib/rs_floating_duration/rs_floating_duration.bundle
32
+ - lib/rs_floating_duration/rs_floating_duration.so
33
+ - lib/rs_floating_duration/version.rb
34
+ - rs_floating_duration.gemspec
35
+ - sig/rs_floating_duration.rbs
36
+ homepage: https://github.com/wjlroe/rs_floating_duration
37
+ licenses:
38
+ - MIT
39
+ metadata:
40
+ allowed_push_host: https://rubygems.org
41
+ homepage_uri: https://github.com/wjlroe/rs_floating_duration
42
+ post_install_message:
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 2.6.0
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: 3.3.11
56
+ requirements: []
57
+ rubygems_version: 3.5.3
58
+ signing_key:
59
+ specification_version: 4
60
+ summary: A wrapper around Rust's floating_duration crate
61
+ test_files: []