ruby-dbus 0.23.1 → 0.25.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2465a9a90d0b4837640d475566edfde23aee4dc1d7d439d76d1f861b71f13033
4
- data.tar.gz: 906288ee9d180ff0bfd4e53f45982040f240da983e23c818acd91d449d9f7f05
3
+ metadata.gz: 48184aac3dc75bb3407fb52dff9f10628b2dc5e38208270d756212b1ae026931
4
+ data.tar.gz: c345834e8cbc03a55b34f7b8bb63151d3770749213bf7afa73be73ee6038dca6
5
5
  SHA512:
6
- metadata.gz: f2939e81cff3f5db2dd768f9e0f1c04159b0285501c73840f14dd8f61ad9f539fbbbf35d7e408cca11847dcd31848131c1c4df69705798860f03e4255f02dedf
7
- data.tar.gz: 553f1d4c97a284371d7a10a0f439a40d2861ff8c40c2318c09f6f818f5911644db05142dc7a8d5e377dac355ddc389fcc9858647a568184e8598fd3d3bb71154
6
+ metadata.gz: c376083a3b761223d5b8f37b9fbb2f1383a874ac0f26c6c5ae92d2385fc936e8145aa20dfe4b327e1551a70030c4a1ffacfd289884e06e9bec2bc5ba9e9fb56c
7
+ data.tar.gz: 460a6e5bc96b6a2b0d4b227de8b8b34595102c67c40f62cf520947b4a394d3dc101af98e6147e5ced15143a0fb5ddf9aeec0764c4a74f9e83ee8b4730a12d544
data/NEWS.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## Ruby D-Bus 0.25.0 - 2025-04-03
6
+
7
+ Bug fixes:
8
+ * Mention qualified property name in Get or Set errors ([#147][]).
9
+ * Fix declaring logger and ostruct gems for Ruby 3.5
10
+
11
+ [#147]: https://github.com/mvidner/ruby-dbus/pull/147
12
+
13
+ ## Ruby D-Bus 0.24.0 - 2025-01-02
14
+
15
+ Bug fixes:
16
+ * Adapted for Ruby 3.4, which uses a single quote instead of a backtick
17
+ in exceptions ([#145][], by Mamoru TASAKA).
18
+
19
+ [#145]: https://github.com/mvidner/ruby-dbus/pull/145
20
+
5
21
  ## Ruby D-Bus 0.23.1 - 2023-10-03
6
22
 
7
23
  API:
data/Rakefile CHANGED
@@ -4,7 +4,7 @@
4
4
  require "rake"
5
5
  require "fileutils"
6
6
  require "tmpdir"
7
- require "rspec/core/rake_task"
7
+ require "shellwords"
8
8
  begin
9
9
  require "rubocop/rake_task"
10
10
  rescue LoadError
@@ -34,13 +34,18 @@ desc "Default: run specs in the proper environment"
34
34
  task default: [:spec, :rubocop]
35
35
  task test: :spec
36
36
 
37
- RSpec::Core::RakeTask.new("bare:spec")
37
+ desc "Run RSpec code examples"
38
+ task "bare:spec", [:options] do |_t, args|
39
+ args.with_defaults(options: "")
40
+ sh "rspec #{args[:options]}"
41
+ end
38
42
 
39
43
  ["spec"].each do |tname|
40
44
  desc "Run bare:#{tname} in the proper environment"
41
- task tname do |_t|
45
+ task tname, [:options] do |_t, args|
46
+ args.with_defaults(options: "")
42
47
  cd "spec/tools" do
43
- sh "./test_env rake bare:#{tname}"
48
+ sh "./test_env rake bare:#{tname}[#{args[:options].shellescape}]"
44
49
  end
45
50
  end
46
51
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.23.1
1
+ 0.25.0
data/lib/dbus/logger.rb CHANGED
@@ -17,7 +17,7 @@ module DBus
17
17
  # The default one logs to STDERR,
18
18
  # with DEBUG if $DEBUG is set, otherwise INFO.
19
19
  def logger
20
- if @logger.nil?
20
+ if !defined?(@logger) || @logger.nil?
21
21
  debug = $DEBUG || ENV["RUBY_DBUS_DEBUG"]
22
22
  @logger = Logger.new($stderr)
23
23
  @logger.level = debug ? Logger::DEBUG : Logger::INFO
data/lib/dbus/marshall.rb CHANGED
@@ -180,7 +180,7 @@ module DBus
180
180
  case alignment
181
181
  when 1, 2, 4, 8
182
182
  bits = alignment - 1
183
- num + bits & ~bits
183
+ (num + bits) & ~bits
184
184
  else
185
185
  raise ArgumentError, "Unsupported alignment #{alignment}"
186
186
  end
data/lib/dbus/message.rb CHANGED
@@ -103,9 +103,9 @@ module DBus
103
103
 
104
104
  def to_s
105
105
  "#{message_type} sender=#{sender} -> dest=#{destination} " \
106
- "serial=#{serial} reply_serial=#{reply_serial} " \
107
- "path=#{path}; interface=#{interface}; member=#{member} " \
108
- "error_name=#{error_name}"
106
+ "serial=#{serial} reply_serial=#{reply_serial} " \
107
+ "path=#{path}; interface=#{interface}; member=#{member} " \
108
+ "error_name=#{error_name}"
109
109
  end
110
110
 
111
111
  # @return [String] name of message type, as used in match rules:
data/lib/dbus/object.rb CHANGED
@@ -116,7 +116,7 @@ module DBus
116
116
 
117
117
  # Forgetting to declare the interface for a method/signal/property
118
118
  # is a ScriptError.
119
- class UndefinedInterface < ScriptError # rubocop:disable Lint/InheritException
119
+ class UndefinedInterface < ScriptError
120
120
  def initialize(sym)
121
121
  super "No interface specified for #{sym}. Enclose it in dbus_interface."
122
122
  end
@@ -253,7 +253,7 @@ module DBus
253
253
  property = Property.new(dbus_name, type, :read, ruby_name: ruby_name)
254
254
  @@cur_intf.define(property)
255
255
 
256
- ruby_name_eq = "#{ruby_name}=".to_sym
256
+ ruby_name_eq = :"#{ruby_name}="
257
257
  return unless method_defined?(ruby_name_eq)
258
258
 
259
259
  dbus_watcher(ruby_name, dbus_name: dbus_name, emits_changed_signal: emits_changed_signal)
@@ -294,7 +294,7 @@ module DBus
294
294
  interface_name = @@cur_intf.name
295
295
 
296
296
  ruby_name = ruby_name.to_s.sub(/=$/, "").to_sym
297
- ruby_name_eq = "#{ruby_name}=".to_sym
297
+ ruby_name_eq = :"#{ruby_name}="
298
298
  original_ruby_name_eq = "_original_#{ruby_name_eq}"
299
299
 
300
300
  dbus_name = make_dbus_name(ruby_name, dbus_name: dbus_name)
@@ -455,11 +455,16 @@ module DBus
455
455
  property = dbus_lookup_property(interface_name, property_name)
456
456
 
457
457
  if property.readable?
458
- ruby_name = property.ruby_name
459
- value = public_send(ruby_name)
460
- # may raise, DBus.error or https://ruby-doc.com/core-3.1.0/TypeError.html
461
- typed_value = Data.make_typed(property.type, value)
462
- [typed_value]
458
+ begin
459
+ ruby_name = property.ruby_name
460
+ value = public_send(ruby_name)
461
+ # may raise, DBus.error or https://ruby-doc.com/core-3.1.0/TypeError.html
462
+ typed_value = Data.make_typed(property.type, value)
463
+ [typed_value]
464
+ rescue StandardError => e
465
+ msg = "When getting '#{interface_name}.#{property_name}': " + e.message
466
+ raise e.exception(msg)
467
+ end
463
468
  else
464
469
  raise DBus.error("org.freedesktop.DBus.Error.PropertyWriteOnly"),
465
470
  "Property '#{interface_name}.#{property_name}' (on object '#{@path}') is not readable"
@@ -470,11 +475,16 @@ module DBus
470
475
  property = dbus_lookup_property(interface_name, property_name)
471
476
 
472
477
  if property.writable?
473
- ruby_name_eq = "#{property.ruby_name}="
474
- # TODO: declare dbus_method :Set to take :exact argument
475
- # and type check it here before passing its :plain value
476
- # to the implementation
477
- public_send(ruby_name_eq, value)
478
+ begin
479
+ ruby_name_eq = "#{property.ruby_name}="
480
+ # TODO: declare dbus_method :Set to take :exact argument
481
+ # and type check it here before passing its :plain value
482
+ # to the implementation
483
+ public_send(ruby_name_eq, value)
484
+ rescue StandardError => e
485
+ msg = "When setting '#{interface_name}.#{property_name}': " + e.message
486
+ raise e.exception(msg)
487
+ end
478
488
  else
479
489
  raise DBus.error("org.freedesktop.DBus.Error.PropertyReadOnly"),
480
490
  "Property '#{interface_name}.#{property_name}' (on object '#{@path}') is not writable"
@@ -507,8 +517,8 @@ module DBus
507
517
  typed_value = Data.make_typed(property.type, value)
508
518
  p_hash[p_name.to_s] = typed_value
509
519
  rescue StandardError
510
- DBus.logger.debug "Property '#{interface_name}.#{p_name}' (on object '#{@path}')" \
511
- " has raised during GetAll, omitting it"
520
+ DBus.logger.debug "Property '#{interface_name}.#{p_name}' (on object '#{@path}') " \
521
+ "has raised during GetAll, omitting it"
512
522
  end
513
523
  end
514
524
 
@@ -33,6 +33,8 @@ module DBus
33
33
  # @return [ApiOptions]
34
34
  attr_reader :api
35
35
 
36
+ OPEN_QUOTE = RUBY_VERSION >= "3.4" ? "'" : "`"
37
+
36
38
  # Creates a new proxy object living on the given _bus_ at destination _dest_
37
39
  # on the given _path_.
38
40
  def initialize(bus, dest, path, api: ApiOptions::CURRENT)
@@ -58,7 +60,7 @@ module DBus
58
60
  def [](intfname)
59
61
  introspect unless introspected
60
62
  ifc = @interfaces[intfname]
61
- raise DBus::Error, "no such interface `#{intfname}' on object `#{@path}'" unless ifc
63
+ raise DBus::Error, "no such interface #{OPEN_QUOTE}#{intfname}' on object #{OPEN_QUOTE}#{@path}'" unless ifc
62
64
 
63
65
  ifc
64
66
  end
@@ -127,7 +129,8 @@ module DBus
127
129
  # @return [void]
128
130
  def on_signal(name, &block)
129
131
  unless @default_iface && has_iface?(@default_iface)
130
- raise NoMethodError, "undefined signal `#{name}' for DBus interface `#{@default_iface}' on object `#{@path}'"
132
+ raise NoMethodError, "undefined signal #{OPEN_QUOTE}#{name}' for DBus interface " \
133
+ "#{OPEN_QUOTE}#{@default_iface}' on object #{OPEN_QUOTE}#{@path}'"
131
134
  end
132
135
 
133
136
  @interfaces[@default_iface].on_signal(name, &block)
@@ -136,13 +139,6 @@ module DBus
136
139
  ####################################################
137
140
  private
138
141
 
139
- # rubocop:disable Lint/MissingSuper
140
- # as this should forward everything
141
- #
142
- # https://github.com/rubocop-hq/ruby-style-guide#no-method-missing
143
- # and http://blog.marc-andre.ca/2010/11/15/methodmissing-politely/
144
- # have a point to be investigated
145
-
146
142
  # Handles all unkown methods, mostly to route method calls to the
147
143
  # default interface.
148
144
  def method_missing(name, *args, &reply_handler)
@@ -151,7 +147,8 @@ module DBus
151
147
  # - di not specified
152
148
  # TODO
153
149
  # - di is specified but not found in introspection data
154
- raise NoMethodError, "undefined method `#{name}' for DBus interface `#{@default_iface}' on object `#{@path}'"
150
+ raise NoMethodError, "undefined method #{OPEN_QUOTE}#{name}' for DBus interface " \
151
+ "#{OPEN_QUOTE}#{@default_iface}' on object #{OPEN_QUOTE}#{@path}'"
155
152
  end
156
153
 
157
154
  begin
@@ -159,18 +156,18 @@ module DBus
159
156
  rescue NameError => e
160
157
  # interesting, foo.method("unknown")
161
158
  # raises NameError, not NoMethodError
162
- raise unless e.to_s =~ /undefined method `#{name}'/
159
+ raise unless e.to_s =~ /undefined method #{OPEN_QUOTE}#{name}'/
163
160
 
164
161
  # BTW e.exception("...") would preserve the class.
165
- raise NoMethodError, "undefined method `#{name}' for DBus interface `#{@default_iface}' on object `#{@path}'"
162
+ raise NoMethodError, "undefined method #{OPEN_QUOTE}#{name}' for DBus interface " \
163
+ "#{OPEN_QUOTE}#{@default_iface}' on object #{OPEN_QUOTE}#{@path}'"
166
164
  end
167
165
  end
168
- # rubocop:enable Lint/MissingSuper
169
166
 
170
167
  def respond_to_missing?(name, _include_private = false)
171
- @default_iface &&
168
+ (@default_iface &&
172
169
  has_iface?(@default_iface) &&
173
- @interfaces[@default_iface].methods.key?(name) or super
170
+ @interfaces[@default_iface].methods.key?(name)) or super
174
171
  end
175
172
  end
176
173
  end
data/lib/dbus/type.rb CHANGED
@@ -163,7 +163,8 @@ module DBus
163
163
  if @sigtype == DICT_ENTRY
164
164
  case @members.size
165
165
  when 2
166
- raise SignatureException, "DICT_ENTRY must have 2 subtypes, found 3 or more in #{@signature}"
166
+ raise SignatureException,
167
+ "DICT_ENTRY must have 2 subtypes, found 3 or more: #{@members.inspect} << #{item.inspect}"
167
168
  when 0
168
169
  if [STRUCT, ARRAY, DICT_ENTRY, VARIANT].member?(item.sigtype)
169
170
  raise SignatureException, "DICT_ENTRY key must be basic (non-container)"
data/ruby-dbus.gemspec CHANGED
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # -*- ruby -*-
4
- require "rubygems"
5
4
 
6
5
  GEMSPEC = Gem::Specification.new do |s|
7
6
  s.name = "ruby-dbus"
@@ -22,16 +21,19 @@ GEMSPEC = Gem::Specification.new do |s|
22
21
 
23
22
  s.required_ruby_version = ">= 2.4.0"
24
23
 
24
+ s.add_runtime_dependency "logger"
25
25
  # Either of rexml and nokogiri is required
26
26
  # but AFAIK gemspec cannot express that.
27
27
  # Nokogiri is recommended as rexml is dead slow.
28
28
  s.add_runtime_dependency "rexml"
29
29
  # s.add_runtime_dependency "nokogiri"
30
30
 
31
+ # workaround: rubocop-1.0 needs base64 which is no longer in stdlib in newer rubies
32
+ s.add_development_dependency "base64"
33
+ s.add_development_dependency "ostruct"
31
34
  s.add_development_dependency "packaging_rake_tasks"
32
35
  s.add_development_dependency "rake"
33
36
  s.add_development_dependency "rspec", "~> 3"
34
- s.add_development_dependency "rubocop", "= 1.0"
35
37
  s.add_development_dependency "simplecov"
36
38
  s.add_development_dependency "simplecov-lcov"
37
39
  end
data/spec/data_spec.rb CHANGED
@@ -223,43 +223,43 @@ describe DBus::Data do
223
223
 
224
224
  describe DBus::Data::Byte do
225
225
  include_examples "#== and #eql? work for basic types"
226
- include_examples "constructor accepts numeric range", 0, 2**8 - 1
226
+ include_examples "constructor accepts numeric range", 0, (2**8) - 1
227
227
  include_examples "constructor accepts plain or typed values", 42
228
228
  end
229
229
 
230
230
  describe DBus::Data::Int16 do
231
231
  include_examples "#== and #eql? work for basic types"
232
- include_examples "constructor accepts numeric range", -2**15, 2**15 - 1
232
+ include_examples "constructor accepts numeric range", -2**15, (2**15) - 1
233
233
  include_examples "constructor accepts plain or typed values", 42
234
234
  end
235
235
 
236
236
  describe DBus::Data::UInt16 do
237
237
  include_examples "#== and #eql? work for basic types"
238
- include_examples "constructor accepts numeric range", 0, 2**16 - 1
238
+ include_examples "constructor accepts numeric range", 0, (2**16) - 1
239
239
  include_examples "constructor accepts plain or typed values", 42
240
240
  end
241
241
 
242
242
  describe DBus::Data::Int32 do
243
243
  include_examples "#== and #eql? work for basic types"
244
- include_examples "constructor accepts numeric range", -2**31, 2**31 - 1
244
+ include_examples "constructor accepts numeric range", -2**31, (2**31) - 1
245
245
  include_examples "constructor accepts plain or typed values", 42
246
246
  end
247
247
 
248
248
  describe DBus::Data::UInt32 do
249
249
  include_examples "#== and #eql? work for basic types"
250
- include_examples "constructor accepts numeric range", 0, 2**32 - 1
250
+ include_examples "constructor accepts numeric range", 0, (2**32) - 1
251
251
  include_examples "constructor accepts plain or typed values", 42
252
252
  end
253
253
 
254
254
  describe DBus::Data::Int64 do
255
255
  include_examples "#== and #eql? work for basic types"
256
- include_examples "constructor accepts numeric range", -2**63, 2**63 - 1
256
+ include_examples "constructor accepts numeric range", -2**63, (2**63) - 1
257
257
  include_examples "constructor accepts plain or typed values", 42
258
258
  end
259
259
 
260
260
  describe DBus::Data::UInt64 do
261
261
  include_examples "#== and #eql? work for basic types"
262
- include_examples "constructor accepts numeric range", 0, 2**64 - 1
262
+ include_examples "constructor accepts numeric range", 0, (2**64) - 1
263
263
  include_examples "constructor accepts plain or typed values", 42
264
264
  end
265
265
 
@@ -122,6 +122,8 @@ class Test < DBus::Object
122
122
  dbus_attr_reader :read_me, "s"
123
123
 
124
124
  def write_me=(value)
125
+ raise "We don't talk about Bruno" if value =~ /Bruno/
126
+
125
127
  @read_me = value
126
128
  end
127
129
  dbus_writer :write_me, "s"
data/spec/node_spec.rb CHANGED
@@ -25,7 +25,7 @@ describe DBus::Node do
25
25
  let(:manager_path) { "/org/example/FooManager" }
26
26
  let(:child_paths) do
27
27
  [
28
- # note that "/org/example/FooManager/good"
28
+ # NOTE: "/org/example/FooManager/good"
29
29
  # is a path under a managed object but there is no object there
30
30
  "/org/example/FooManager/good/1",
31
31
  "/org/example/FooManager/good/2",
@@ -31,17 +31,36 @@ describe "PropertyTest" do
31
31
  expect(iface["ReadMe"]).to eq("READ ME")
32
32
  end
33
33
 
34
- it "gets an error when reading a property whose implementation raises" do
35
- expect { @iface["Explosive"] }.to raise_error(DBus::Error, /Something failed/)
34
+ context "when reading a property fails" do
35
+ it "gets an error, mentioning the qualified property name" do
36
+ expect { @iface["Explosive"] }
37
+ .to raise_error(DBus::Error, /getting.*SampleInterface.Explosive.*Something failed/)
38
+ end
36
39
  end
37
40
 
38
41
  it "tests property nonreading" do
39
42
  expect { @iface["WriteMe"] }.to raise_error(DBus::Error, /not readable/)
40
43
  end
41
44
 
42
- it "tests property writing" do
43
- @iface["ReadOrWriteMe"] = "VALUE"
44
- expect(@iface["ReadOrWriteMe"]).to eq("VALUE")
45
+ context "writing properties" do
46
+ it "tests property writing" do
47
+ @iface["ReadOrWriteMe"] = "VALUE"
48
+ expect(@iface["ReadOrWriteMe"]).to eq("VALUE")
49
+ end
50
+
51
+ context "when writing a read-only property" do
52
+ it "gets an error, mentioning the qualified property name" do
53
+ expect { @iface["ReadMe"] = "WROTE" }
54
+ .to raise_error(DBus::Error, /SampleInterface.ReadMe.*not writable/)
55
+ end
56
+ end
57
+
58
+ context "when writing a property fails" do
59
+ it "gets an error, mentioning the qualified property name" do
60
+ expect { @iface["WriteMe"] = "Bruno is a city in Czechia" }
61
+ .to raise_error(DBus::Error, /setting.*SampleInterface.WriteMe/)
62
+ end
63
+ end
45
64
  end
46
65
 
47
66
  # https://github.com/mvidner/ruby-dbus/pull/19
@@ -54,10 +73,6 @@ describe "PropertyTest" do
54
73
  expect(@iface["ReadOrWriteMe"]).to eq("VALUE")
55
74
  end
56
75
 
57
- it "tests property nonwriting" do
58
- expect { @iface["ReadMe"] = "WROTE" }.to raise_error(DBus::Error, /not writable/)
59
- end
60
-
61
76
  it "tests get all" do
62
77
  all = @iface.all_properties
63
78
  expect(all.keys.sort).to eq(["MyArray", "MyByte", "MyDict", "MyStruct", "MyVariant", "ReadMe", "ReadOrWriteMe"])
data/spec/signal_spec.rb CHANGED
@@ -107,9 +107,10 @@ describe "SignalHandlerTest" do
107
107
  describe DBus::ProxyObject do
108
108
  describe "#on_signal" do
109
109
  it "raises a descriptive error when the default_iface is wrong" do
110
+ open_quote = RUBY_VERSION >= "3.4" ? "'" : "`"
110
111
  @obj.default_iface = "org.ruby.NoSuchInterface"
111
112
  expect { @obj.on_signal("Foo") {} }
112
- .to raise_error(NoMethodError, /undefined signal.*interface `org.ruby.NoSuchInterface'/)
113
+ .to raise_error(NoMethodError, /undefined signal.*interface #{open_quote}org.ruby.NoSuchInterface'/)
113
114
  end
114
115
  end
115
116
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-dbus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.1
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ruby DBus Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-03 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: logger
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rexml
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -25,7 +39,7 @@ dependencies:
25
39
  - !ruby/object:Gem::Version
26
40
  version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
- name: packaging_rake_tasks
42
+ name: base64
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - ">="
@@ -39,7 +53,7 @@ dependencies:
39
53
  - !ruby/object:Gem::Version
40
54
  version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
- name: rake
56
+ name: ostruct
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
59
  - - ">="
@@ -53,33 +67,47 @@ dependencies:
53
67
  - !ruby/object:Gem::Version
54
68
  version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
- name: rspec
70
+ name: packaging_rake_tasks
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
- - - "~>"
73
+ - - ">="
60
74
  - !ruby/object:Gem::Version
61
- version: '3'
75
+ version: '0'
62
76
  type: :development
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
- - - "~>"
80
+ - - ">="
67
81
  - !ruby/object:Gem::Version
68
- version: '3'
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
69
97
  - !ruby/object:Gem::Dependency
70
- name: rubocop
98
+ name: rspec
71
99
  requirement: !ruby/object:Gem::Requirement
72
100
  requirements:
73
- - - '='
101
+ - - "~>"
74
102
  - !ruby/object:Gem::Version
75
- version: '1.0'
103
+ version: '3'
76
104
  type: :development
77
105
  prerelease: false
78
106
  version_requirements: !ruby/object:Gem::Requirement
79
107
  requirements:
80
- - - '='
108
+ - - "~>"
81
109
  - !ruby/object:Gem::Version
82
- version: '1.0'
110
+ version: '3'
83
111
  - !ruby/object:Gem::Dependency
84
112
  name: simplecov
85
113
  requirement: !ruby/object:Gem::Requirement
@@ -239,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
239
267
  - !ruby/object:Gem::Version
240
268
  version: '0'
241
269
  requirements: []
242
- rubygems_version: 3.3.26
270
+ rubygems_version: 3.2.33
243
271
  signing_key:
244
272
  specification_version: 4
245
273
  summary: Ruby module for interaction with D-Bus