simplyq 0.8.0rc → 0.8.1rc

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: cf236917781b145d9501e60a85661c5330acbcf7c21a135c192b90baabe7c70d
4
+ data.tar.gz: 603855c1a44646dbb6c21459444ab829ed58b5e72a20095d19945d952de0c6b5
5
5
  SHA512:
6
- metadata.gz: 0164ce8d36157c90aa8784d4ec204897bffde1052f5c0ab86c28439d66623cd7bd88e1e577545d1168b9afac78a953bd2ec0403ac2f02a4bc266adec47451319
7
- data.tar.gz: a5d76f618b5f0c13c432e9eff6c33ad41251ca78729f205336ca6b1654cdf8dc79444782a1b22045db0b742d8d2bed462c9f16383b993b171de02bb2e170ecba
6
+ metadata.gz: 1f3f6dcbc9dc77e44756bbba564f90255c18e5bf8bb033613e2a16b6148c022cb936aa352b30f8857903dcd72ef18bb6a07307f35a4d3a11aa281a5c9938c517
7
+ data.tar.gz: ecdfab415d64ed53ec955289465efb9f3f0facf83578290087078f8bc955519c206dcd37b03887596d7eaae494c636b13db2a9a19f4bb393b939a7e581a148fb
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.1rc"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
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.1rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - simplyq-dxtimer
@@ -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
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