grumlin 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d316bc1f39fbcec938151fb11d7e43f1043c0951062856bfe489651d41732f59
4
- data.tar.gz: 7c3e294d9f38d1045a7ff991f07a27142ec92bbeee4a2b805c59dadcfb609dcf
3
+ metadata.gz: 37a377cb78a69351a6b8dec3dd7a0cfe1e26798050a63e2a1d06ae6f98ef1685
4
+ data.tar.gz: 59fb7208327b03c9977c7926b877a7901df018ae7d5cf3f6826dbce991e51134
5
5
  SHA512:
6
- metadata.gz: 57987319c44b8f6a344b8a33d29c0380865857fdcec6c7fc536de7cd7282cd6804b846d9410a4e90d9eb0f22d8ac98ab9c06cd21b065fa7dce3e8e6e3b70d054
7
- data.tar.gz: b4349848f8647a56ac01ed542743d16196526612ef2755781a47e7c0da70119ead2a67ac5123d02a8f563aec0215ec1c6af46896739aa83050c35921935e014f
6
+ metadata.gz: 7131525255531d09a5d01c9dfdd7e39a2b9be0f17861f13852a405b7469f72143ff456a0dd993d57c64f1d5ef3448261332db476f52580e2272fb1e70869f074
7
+ data.tar.gz: 208349b5295e788c7b179950a5efccca28b50622d0f642066fcbd6da75d5557d0560b044d9b9431de105ff11837b39e1e5bccd4b872bafd78b8bcef283b7ea4f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grumlin (1.0.3)
4
+ grumlin (1.0.4)
5
5
  async-pool (~> 0.3.0)
6
6
  async-websocket (~> 0.22.0)
7
7
  ibsciss-middleware (~> 0.4.0)
@@ -4,7 +4,7 @@ class Grumlin::Expressions::TextP < Grumlin::Expressions::P
4
4
  class << self
5
5
  [:containing, :endingWith, :notContaining, :notEndingWith, :notStartingWith, :startingWith].each do |predicate|
6
6
  define_method predicate do |*args|
7
- P::Predicate.new("TextP", predicate, value: args[0])
7
+ Grumlin::Expressions::P::Predicate.new("TextP", predicate, value: args[0])
8
8
  end
9
9
  end
10
10
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Grumlin
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grumlin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gleb Sinyavskiy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-09 00:00:00.000000000 Z
11
+ date: 2023-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-pool