rtlsdr 0.1.5 → 0.1.7

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: fc10ea1776caf6a595417bf67dae01f41305730525725fc2cc252fb25936ae69
4
- data.tar.gz: 4961a3f842c1eaa110e4d441280da741e823009eabd2f1506761be97c89b2639
3
+ metadata.gz: d2578d00d97ed6458c94c13d0f025746d22c5d9bf2d8236ad58b3a211f71c7be
4
+ data.tar.gz: 1672adecaed934ec1a1686f08869f2b43ad660d68fa2b0fafef3773d131a1951
5
5
  SHA512:
6
- metadata.gz: e7aaa1402399c7730e3f089387514873c345e52dfa6e854625b8b217a51d539131e164dd6a40eb990d4e236859d2c413cd148379bf25d86995ab100eb6faf839
7
- data.tar.gz: ebd50fe3f4447894e6b9a6334c2f5ab47ac7288f1e5583515fa02d62e2ac4c4f1d7c2e3d337e145627e2d1a3ccfc28bee7bf2c3e79ed0758c51c8fb87813cdbb
6
+ metadata.gz: 757930b196efc45ec687dfe2f3d8b951a9ad835ca3abc2bd2b6ffb4cd8d9e6f8d003bca953af699a0b4053eb9254b2bc163151143219a7dd4c303fba5966d72c
7
+ data.tar.gz: 89cd8edd69d83c5eaed6772d173cd4658be6e8cedf54e4c25f5d32c15bf876bf96bfe52b07528fed99001624d34b541195e4a7c5b12fd38246287d1304097612
data/CHANGELOG.md CHANGED
@@ -2,6 +2,35 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.1.7] - 2025-06-09
6
+
7
+ ### Added
8
+
9
+ NA
10
+
11
+ ### Changed
12
+
13
+ update README
14
+
15
+ ### Fixed
16
+
17
+ NA
18
+
19
+
20
+ ## [0.1.6] - 2025-06-07
21
+
22
+ ### Added
23
+
24
+ NA
25
+
26
+ ### Changed
27
+
28
+ Rubocop
29
+
30
+ ### Fixed
31
+
32
+ NA
33
+
5
34
  ## [0.1.5] - 2025-06-07
6
35
 
7
36
  No changes
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A comprehensive Ruby gem for interfacing with RTL-SDR (Software Defined Radio) devices. This gem provides both low-level FFI bindings that closely match the C API and high-level Ruby-idiomatic classes for easy use.
4
4
 
5
+ [gem](https://rubygems.org/gems/rtlsdr) | [docs](https://rubydoc.info/gems/rtlsdr)
6
+
5
7
  ## Features
6
8
 
7
9
  - **Complete C API Coverage**: All librtlsdr functions are exposed through FFI
@@ -378,7 +380,7 @@ ruby examples/spectrum_analyzer.rb
378
380
 
379
381
  ## License
380
382
 
381
- This gem is licensed under the GPL-2.0 license, the same as librtlsdr.
383
+ This gem is licensed under the MIT license.
382
384
 
383
385
  ## Requirements
384
386
 
data/Rakefile CHANGED
@@ -7,6 +7,8 @@ require "rubocop/rake_task"
7
7
  require "rdoc/task"
8
8
  require "yard"
9
9
 
10
+ # rubocop:disable Metrics/BlockLength
11
+
10
12
  RSpec::Core::RakeTask.new(:spec)
11
13
 
12
14
  RuboCop::RakeTask.new
@@ -171,7 +173,6 @@ task compile: :build_librtlsdr
171
173
 
172
174
  desc "Bump version, update CHANGELOG, commit, tag, and push"
173
175
  task :publish_release do
174
- puts "This task will bump the version, update CHANGELOG.md, commit the changes, create a git tag, and push everything to the remote repository."
175
176
  puts "Make sure you have committed all your changes before running this task."
176
177
  puts "Do you want to continue? (yes/no)"
177
178
 
@@ -290,3 +291,5 @@ def bump_version(type) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
290
291
  File.write("CHANGELOG.md", updated_changelog)
291
292
  puts "Updated CHANGELOG.md with new version entry"
292
293
  end
294
+
295
+ # rubocop:enable Metrics/BlockLength
@@ -12,5 +12,5 @@ module RTLSDR
12
12
  #
13
13
  # @return [String] Current gem version
14
14
  # @since 0.1.0
15
- VERSION = "0.1.5"
15
+ VERSION = "0.1.7"
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtlsdr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - joshfng
@@ -55,17 +55,17 @@ files:
55
55
  - lib/rtlsdr/ffi.rb
56
56
  - lib/rtlsdr/scanner.rb
57
57
  - lib/rtlsdr/version.rb
58
- homepage: https://github.com/joshfng/rtlsdr-ruby
58
+ homepage: https://github.com/joshfng/rtlsdr
59
59
  licenses:
60
60
  - MIT
61
61
  metadata:
62
62
  allowed_push_host: https://rubygems.org
63
63
  rubygems_mfa_required: 'true'
64
- homepage_uri: https://github.com/joshfng/rtlsdr-ruby
65
- source_code_uri: https://github.com/joshfng/rtlsdr-ruby
66
- changelog_uri: https://github.com/joshfng/rtlsdr-ruby/blob/main/CHANGELOG.md
64
+ homepage_uri: https://github.com/joshfng/rtlsdr
65
+ source_code_uri: https://github.com/joshfng/rtlsdr
66
+ changelog_uri: https://github.com/joshfng/rtlsdr/blob/main/CHANGELOG.md
67
67
  documentation_uri: https://rubydoc.info/gems/rtlsdr
68
- bug_tracker_uri: https://github.com/joshfng/rtlsdr-ruby/issues
68
+ bug_tracker_uri: https://github.com/joshfng/rtlsdr/issues
69
69
  rdoc_options:
70
70
  - "--main"
71
71
  - README.md