irclb 0.0.4 → 0.0.5

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: e8448011155dba73ac4c52936b709bce597f16177b037194c629b3ba74233957
4
- data.tar.gz: ddb1fc3861671c615d00ea43f278b6dbb62f5ad49281f61dd7d088bf7b32a0fc
3
+ metadata.gz: 23bd7c30d914a37256cc797b0007c79c7614a16137a27de4e5facaf8798f03b0
4
+ data.tar.gz: 34448d7109e99ddb9d0ae38d8bdec39bc4c8f9d9309849a83b02518a96638946
5
5
  SHA512:
6
- metadata.gz: 1d89964393951f5e180a142099576678a8d8d98b36dbc56b6c9d58a82f81b0b24efeba5839ebd991e3b3ebcb8252d8d4209002d51da9c7d30dc7a508485e3f32
7
- data.tar.gz: 89123a546ca454de474b55461dff1595452f20e224d0c6d4c3aa258588ea646b74a6e22fd919f394efd9ad347d0968cd4b961be3c7e6d09f1f4e2a16235d7339
6
+ metadata.gz: '0805261ad423d3252ec344d90bcf97baaad283ca966bdeb40926541b4ac412eb773fc93b95742f99216036de84037d268669e0f531ca3b213aecc4c0f4a5826c'
7
+ data.tar.gz: 23bf0c512ab2b29097b0e9a368774b4ab65d30aeffc0d060cdbb4ad12734cda1f1debe6fefc3a34a073b09fe302ab15c49cf792c79ce10f91cfe7fec9cf89dc1
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ # Also see https://github.com/github/gitignore/blob/master/Ruby.gitignore
2
+
3
+ Gemfile.lock
4
+ *.gem
5
+ .bundle
6
+ .env
7
+ rdoc
8
+ tmp
data/bin/irclb CHANGED
@@ -6,3 +6,4 @@ require 'irclb/ssl_server'
6
6
  Signal.trap('HUP') do
7
7
  $config = IrcLB::Config.new
8
8
  end
9
+ IrcLB::Socket.new
data/irclb.gemspec CHANGED
@@ -16,5 +16,12 @@ Gem::Specification.new do |s|
16
16
  s.files = Dir.glob('{bin/*,lib/**/*,[A-Z]*}')
17
17
  s.platform = Gem::Platform::RUBY
18
18
  s.require_paths = ['lib']
19
+ s.files = `git ls-files -z`.split("\x0").reject do |f|
20
+ f.match(%r{^(tests)/})
21
+ end
19
22
  s.bindir = 'bin'
23
+ s.executables = s.files.grep(%r{^bin/}) do |f|
24
+ wanted_bins = %w[irclb]
25
+ File.basename(f) if wanted_bins.include?(Pathname.new(f).basename.to_s)
26
+ end
20
27
  end
data/lib/irclb/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IrcLB
4
- VERSION = '0.0.4'
4
+ VERSION = '0.0.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irclb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - IotaSpencer
@@ -13,10 +13,12 @@ dependencies: []
13
13
  description: "[description]"
14
14
  email:
15
15
  - me@iotaspencer.me
16
- executables: []
16
+ executables:
17
+ - irclb
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
21
+ - ".gitignore"
20
22
  - Gemfile
21
23
  - LICENSE.md
22
24
  - bin/irclb