iirc 0.2.5 → 0.2.8

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: ea1143ad079f11338ac80bd0b0e903e5fdfa16e37f112796d5b9e0856f5b48b4
4
- data.tar.gz: 70d6519b3f27e2c61fa3e12b74612a56e505500e92f270c3f4ac71081e422dc3
3
+ metadata.gz: d1d6ae434bb4e2301cffa91ad030d6a1a154ad0d9fc402fea6baad7ee3840011
4
+ data.tar.gz: 1bb87fe5fa933ed85884c677617646daab7a98fdd691392d87e738132b4ea5eb
5
5
  SHA512:
6
- metadata.gz: 4ab6beadf68e22e90aebc25421743406c18154da15e35e30bf02cebed3dceef804e7cd6783fa75cc48dfcf4edc528ea2d079887a2ce60062af218579591c63bb
7
- data.tar.gz: 0666efaf1442141df7a4b7929a4435e070b8ce46f94a3031b1c934ff47fd48513da961bb1477039df213c8a8aa243ec2b1f4636a92e511717fed2170a0166fcd
6
+ metadata.gz: '090d2add141ab9a775e22d216d5b7baeef87a5f19026ede39d0717954a9c1df3cc5c63df68b169f4925654bea04c25f50aaf5a503471be153b9f86c3dbfbab59'
7
+ data.tar.gz: 9770fb0e1eb3a491e9978f95331468349a5554f1b621c7bad1487b14d6251df2ebd5b0fd0b940afbd91412442a9dec22de5b27ca34c84d4927cd3f572bf0acfb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [0.2.8] - 2022-03-22
2
+
3
+ - Add MIT license
4
+
5
+ ## [0.2.7] - 2022-03-16
6
+
7
+ - Include Bot::RegexHooks in Batteries
8
+
9
+ ## [0.2.6] - 2022-03-16
10
+
11
+ - Add ircparser dependency
12
+ - It's technically optional, but it's needed to parse IRCv3 messages
13
+
1
14
  ## [0.2.5] - 2022-03-16
2
15
 
3
16
  - Add dial method. Uses SSL by default, with configurable context
data/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2022 mooff <mooff@awful.cooking>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/iirc.gemspec CHANGED
@@ -7,6 +7,7 @@ Gem::Specification.new do |spec|
7
7
  spec.version = IIRC::VERSION
8
8
  spec.authors = ["mooff"]
9
9
  spec.email = ["mooff@awful.cooking"]
10
+ spec.license = "MIT"
10
11
 
11
12
  spec.summary = "Lean, mean IRC processing machine"
12
13
  spec.description = "A composable toolkit for IRC bots"
@@ -27,7 +28,7 @@ Gem::Specification.new do |spec|
27
28
  spec.require_paths = ["lib"]
28
29
 
29
30
  # Uncomment to register a new dependency of your gem
30
- # spec.add_dependency "example-gem", "~> 1.0"
31
+ spec.add_dependency "ircparser", "= 1.0.0"
31
32
 
32
33
  # For more information and examples about making a new gem, checkout our
33
34
  # guide at: https://bundler.io/guides/creating_gem.html
data/lib/iirc/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IIRC
4
- VERSION = "0.2.5"
4
+ VERSION = "0.2.8"
5
5
  end
data/lib/iirc.rb CHANGED
@@ -63,6 +63,7 @@ module IIRC
63
63
  include Bot::AutoJoin
64
64
  include Bot::Verbs
65
65
  include Bot::AmbientVerbs
66
+ include Bot::RegexHooks
66
67
  end
67
68
 
68
69
  module SSL
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iirc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - mooff
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-16 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2022-03-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ircparser
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.0
13
27
  description: A composable toolkit for IRC bots
14
28
  email:
15
29
  - mooff@awful.cooking
@@ -21,6 +35,7 @@ files:
21
35
  - ".gitignore"
22
36
  - CHANGELOG.md
23
37
  - Gemfile
38
+ - LICENSE
24
39
  - README.md
25
40
  - Rakefile
26
41
  - bin/console
@@ -56,7 +71,8 @@ files:
56
71
  - lib/iirc/user.rb
57
72
  - lib/iirc/version.rb
58
73
  homepage: https://github.com/awfulcooking/iirc
59
- licenses: []
74
+ licenses:
75
+ - MIT
60
76
  metadata:
61
77
  homepage_uri: https://github.com/awfulcooking/iirc
62
78
  source_code_uri: https://github.com/awfulcooking/iirc