rs_floating_duration 0.1.0 → 0.1.1

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: 6f6d39c0feafcc5ac5e12f2e35b67253620ecf5452aab6cd30d7514685d485fe
4
- data.tar.gz: 99bbd3db95336bbc9abc6c840a9521e384dc5a4a0b88282b8a39868fe4ca29a7
3
+ metadata.gz: 8085f15b85c86424312764b9dd99575dc21af3bcbfc42e19a5aad0423b8ea10d
4
+ data.tar.gz: 93330adf9b3056147a0e379e3fbd0d910482fdf1470df5fa4b95eca279ff0edd
5
5
  SHA512:
6
- metadata.gz: 24f00116ecf34804c9a689a93c4490a591c0d8c8286665b5051d3c1727f4dfb4d2bc79dd82c30cef44b17031d39cb442b0e5fcc149dce8328d39f796f123bf7f
7
- data.tar.gz: 7314ea6b026dc473a8a55a5b7fefc15c071468fb0cd4d3b7b4b3a28af0ac46a31b7fa34b8de20a4af300adaaca4422570011559a08d1dacd311dce7f14cb5f99
6
+ metadata.gz: bbf4dfeaf1f2f77c0b7be7107a93645fdb424580087078375f4b76612bac6e375829a5008eeb3f40f6de02552fccb25b4f6e5ef384d68d4f3b9123c9a8c2fdd4
7
+ data.tar.gz: 4fc1ba774b532bab205aed3465db8f6bdfdcadc6a5acd83874a7f13d40954e0d32c9de304d7420fc650f290454c2ad390971802a08584a81e6df5e2bacc76f16
data/CHANGELOG.md CHANGED
@@ -0,0 +1,12 @@
1
+ # 0.1.1 / 2024-02-17
2
+
3
+ ## Enhancements
4
+
5
+ * Compile and bundle macos arm64 native library
6
+
7
+ # 0.1.0 / 2024-02-17
8
+
9
+ ## Enhancements
10
+
11
+ * Initial release of the gem.
12
+ * Native libraries bundled for Linux x86_64, macOS x86_64
data/README.md CHANGED
@@ -1,20 +1,17 @@
1
1
  # RsFloatingDuration
2
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.
3
+ This is a simple Ruby gem that wraps the Rust Crate called [floating_duration]
4
+ (https://github.com/torkleyy/floating-duration).
6
5
 
7
6
  ## Installation
8
7
 
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
8
  Install the gem and add to the application's Gemfile by executing:
12
9
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
10
+ $ bundle add rs_floating_duration
14
11
 
15
12
  If bundler is not being used to manage dependencies, install the gem by executing:
16
13
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+ $ gem install rs_floating_duration
18
15
 
19
16
  ## Usage
20
17
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RsFloatingDuration
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rs_floating_duration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Roe
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2024-02-17 00:00:00.000000000 Z
@@ -39,7 +39,7 @@ licenses:
39
39
  metadata:
40
40
  allowed_push_host: https://rubygems.org
41
41
  homepage_uri: https://github.com/wjlroe/rs_floating_duration
42
- post_install_message:
42
+ post_install_message:
43
43
  rdoc_options: []
44
44
  require_paths:
45
45
  - lib
@@ -55,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
55
55
  version: 3.3.11
56
56
  requirements: []
57
57
  rubygems_version: 3.5.3
58
- signing_key:
58
+ signing_key:
59
59
  specification_version: 4
60
60
  summary: A wrapper around Rust's floating_duration crate
61
61
  test_files: []