antenna 0.0.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: 58fb5601103ad1568ccce67da0ec0d8fec3e2886e049698539eb50e4dd692342
4
+ data.tar.gz: 1d412b3419efe955ce6c30ba7963de8f9b050d6bd378a865d4ac402f17850e35
5
+ SHA512:
6
+ metadata.gz: 1ca33f72797c938e08a075d36a983c65549d3f67802755a7ce545dcc4b4164127448e7d17db8f80573a6a1428eaca9daa6606b814d58b80b4324c78249ef6294
7
+ data.tar.gz: e91967ac565df9bc1b888171208222665d481521a6932c2e99ad2a990841c77637a2da4fdde8dbc8b5d7e3336b0b68757ae4d4203c129de2c3df58cc0ad05dd0
data/.rubocop.yml ADDED
@@ -0,0 +1,17 @@
1
+ ---
2
+ inherit_mode:
3
+ merge:
4
+ - Exclude
5
+
6
+ require:
7
+ - standard
8
+
9
+ inherit_gem:
10
+ standard: config/base.yml
11
+
12
+ AllCops:
13
+ TargetRubyVersion: 3.1
14
+ NewCops: enable
15
+ SuggestExtensions: false
16
+ Exclude:
17
+ - "bin/**/*"
data/.standard.yml ADDED
@@ -0,0 +1 @@
1
+ ruby_version: 3.0
data/.yardopts ADDED
@@ -0,0 +1,5 @@
1
+ --title Antenna
2
+ --no-private
3
+ --no-protected
4
+ -
5
+ CHANGELOG.md
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in antenna.gemspec
4
+ gemspec
data/antenna.gemspec ADDED
@@ -0,0 +1,42 @@
1
+ require_relative "lib/antenna/version"
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "antenna"
5
+ spec.version = Antenna::VERSION
6
+ spec.authors = ["ingemar"]
7
+ spec.email = ["ingemar@xox.se"]
8
+
9
+ spec.summary = "A lightweight and easy-to-use async pub/sub framework backed by ActiveJob"
10
+ spec.description = "A lightweight and easy-to-use async pub/sub framework backed by ActiveJob"
11
+ spec.homepage = "https://qasa.com"
12
+ spec.required_ruby_version = ">= 3.0"
13
+
14
+ # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/qasase/antenna"
18
+ spec.metadata["changelog_uri"] = "https://github.com/qasase/antenna/main/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(__dir__) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (File.expand_path(f) == __FILE__) || f.start_with?(*%w[
25
+ bin/
26
+ spec/
27
+ .git
28
+ .rspec
29
+ .ruby-version
30
+ ])
31
+ end
32
+ end
33
+ spec.bindir = "exe"
34
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
35
+ spec.require_paths = ["lib"]
36
+
37
+ # Uncomment to register a new dependency of your gem
38
+ # spec.add_dependency "example-gem", "~> 1.0"
39
+
40
+ # For more information and examples about making a new gem, check out our
41
+ # guide at: https://bundler.io/guides/creating_gem.html
42
+ end
@@ -0,0 +1,3 @@
1
+ module Antenna
2
+ VERSION = "0.0.0"
3
+ end
data/lib/antenna.rb ADDED
@@ -0,0 +1,4 @@
1
+ require_relative "antenna/version"
2
+
3
+ module Antenna
4
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: antenna
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - ingemar
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-04-09 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A lightweight and easy-to-use async pub/sub framework backed by ActiveJob
14
+ email:
15
+ - ingemar@xox.se
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rubocop.yml"
21
+ - ".standard.yml"
22
+ - ".yardopts"
23
+ - Gemfile
24
+ - antenna.gemspec
25
+ - lib/antenna.rb
26
+ - lib/antenna/version.rb
27
+ homepage: https://qasa.com
28
+ licenses: []
29
+ metadata:
30
+ homepage_uri: https://qasa.com
31
+ source_code_uri: https://github.com/qasase/antenna
32
+ changelog_uri: https://github.com/qasase/antenna/main/CHANGELOG.md
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '3.0'
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.5.5
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: A lightweight and easy-to-use async pub/sub framework backed by ActiveJob
52
+ test_files: []