simplyq 0.8.0rc → 0.8.2rc

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: f624f3db18fcc8a5a0ec534582e2cdd4044d3fe33e5bfb4f1401fccb93c5f10f
4
- data.tar.gz: 3461b9748e3f8700cb7dd87e25d218b6b433242e2efc6cca6bc5f0ef5925c244
3
+ metadata.gz: 4044d212ae7b9cd8952ae0c04499883576efba9b8d3b9b55588aa227465a7a6c
4
+ data.tar.gz: ac7798ba1b45a305cee54455411554f7e42f1ae4e20505dfa44eb7bc45ca381a
5
5
  SHA512:
6
- metadata.gz: 0164ce8d36157c90aa8784d4ec204897bffde1052f5c0ab86c28439d66623cd7bd88e1e577545d1168b9afac78a953bd2ec0403ac2f02a4bc266adec47451319
7
- data.tar.gz: a5d76f618b5f0c13c432e9eff6c33ad41251ca78729f205336ca6b1654cdf8dc79444782a1b22045db0b742d8d2bed462c9f16383b993b171de02bb2e170ecba
6
+ metadata.gz: d9c27060de2a5626c982db7b619b27db036f75df7d1169851c9ea396e8ef04a5353e96c866f2be2084cbeda7c6dcd6fd21b01b47bd138e6ead6ff646f023dec0
7
+ data.tar.gz: 2e63eb68816e4a8346b1f8cd711ffd7a4693718cd5ad5b5f70c9f3d9f7e838ccf215828ea108e707d6be963239720f1d70fe2e9faa924bbb40a3a8ceb361914c
data/.rubocop_todo.yml CHANGED
@@ -96,6 +96,8 @@ RSpec/FilePath:
96
96
  - 'spec/simplyq/models/application_spec.rb'
97
97
  - 'spec/simplyq/models/endpoint_spec.rb'
98
98
  - 'spec/simplyq/models/list_spec.rb'
99
+ - 'spec/simplyq/models/event_spec.rb'
100
+ - 'spec/simplyq/models/inbound_event_spec.rb'
99
101
 
100
102
  # Offense count: 1
101
103
  RSpec/IdenticalEqualityAssertion:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Simplyq
4
- VERSION = "0.8.0rc"
4
+ VERSION = "0.8.2rc"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplyq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0rc
4
+ version: 0.8.2rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - simplyq-dxtimer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2022-11-12 00:00:00.000000000 Z
@@ -91,7 +91,6 @@ files:
91
91
  - lib/simplyq/version.rb
92
92
  - lib/simplyq/webhook.rb
93
93
  - sig/simplyq.rbs
94
- - simplyq.gemspec
95
94
  homepage: https://github.com/simplyqio/apis
96
95
  licenses:
97
96
  - MIT
@@ -99,7 +98,7 @@ metadata:
99
98
  homepage_uri: https://github.com/simplyqio/apis
100
99
  source_code_uri: https://github.com/simplyqio/apis/tree/main/ruby
101
100
  changelog_uri: https://github.com/simplyqio/apis/tree/main/ruby/CHANGELOG.md
102
- post_install_message:
101
+ post_install_message:
103
102
  rdoc_options: []
104
103
  require_paths:
105
104
  - lib
@@ -114,8 +113,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
113
  - !ruby/object:Gem::Version
115
114
  version: 1.3.1
116
115
  requirements: []
117
- rubygems_version: 3.3.11
118
- signing_key:
116
+ rubygems_version: 3.1.6
117
+ signing_key:
119
118
  specification_version: 4
120
119
  summary: The SimplyQ API client for Ruby
121
120
  test_files: []
data/simplyq.gemspec DELETED
@@ -1,40 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/simplyq/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "simplyq"
7
- spec.version = Simplyq::VERSION
8
- spec.authors = ["simplyq-dxtimer"]
9
- spec.email = ["ivan@simplyq.io"]
10
-
11
- spec.summary = "The SimplyQ API client for Ruby"
12
- spec.description = "The SimplyQ API client for Ruby"
13
- spec.homepage = "https://github.com/simplyqio/apis"
14
- spec.license = "MIT"
15
- spec.required_ruby_version = ">= 2.7"
16
-
17
- spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = "https://github.com/simplyqio/apis/tree/main/ruby"
19
- spec.metadata["changelog_uri"] = "https://github.com/simplyqio/apis/tree/main/ruby/CHANGELOG.md"
20
-
21
- # Specify which files should be added to the gem when it is released.
22
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
- spec.files = Dir.chdir(__dir__) do
24
- `git ls-files -z`.split("\x0").reject do |f|
25
- (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features|examples)/|\.(?:git|travis|circleci)|appveyor)})
26
- end
27
- end
28
- spec.bindir = "exe"
29
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
- spec.require_paths = ["lib"]
31
-
32
- # Uncomment to register a new dependency of your gem
33
- spec.add_dependency "faraday", [">= 0.15", "< 2.0"]
34
- spec.add_dependency "multi_json", "~> 1.0"
35
- spec.add_dependency "net-http-persistent"
36
- # For more information and examples about making a new gem, check out our
37
- # guide at: https://bundler.io/guides/creating_gem.html
38
- # We are looking to automate the release process so MFA is not supported yet
39
- # spec.metadata["rubygems_mfa_required"] = "true"
40
- end