Sha256: 405d187f7aad83deadf61167ecc5dd375d328f300972eaa2c88f65b45eca053d
Contents?: true
Size: 1.84 KB
Versions: 31
Compression:
Stored size: 1.84 KB
Contents
# frozen_string_literal: true require_relative "lib/dji_mqtt_connect/version" Gem::Specification.new do |spec| spec.name = "dji_mqtt_connect" spec.version = DjiMqttConnect::VERSION spec.authors = ["Sphere Drones"] spec.email = ["projects@spheregroup.com.au"] spec.summary = "Manages MQTT Connections with DJI Drones" # spec.description = "TODO: Write a longer description or delete this line." spec.homepage = "https://github.com/sphere-drones/dji_mqtt_connect" spec.required_ruby_version = ">= 3.1.0" # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/sphere-drones/dji_mqtt_connect" spec.metadata["changelog_uri"] = "https://github.com/sphere-drones/dji_mqtt_connect/main/CHANGELOG.md" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)}) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] # Use Active Support for inflection and logging spec.add_dependency "activesupport", ">= 6.0", "<= 8" # Use Dry-rb for valid POROs spec.add_dependency "dry-struct", "~> 1.6" spec.add_dependency "dry-transformer", "~> 1.0" # Use MQTT as a client for receiving/sending messages spec.add_dependency "mqtt", "~> 0.6.0" # Use Whisper for events spec.add_dependency "wisper", "~> 2.0" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
31 entries across 31 versions & 1 rubygems