simplyq 0.8.0rc → 0.8.1rc
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 +4 -4
- data/.rubocop_todo.yml +2 -0
- data/lib/simplyq/version.rb +1 -1
- metadata +1 -2
- data/simplyq.gemspec +0 -40
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf236917781b145d9501e60a85661c5330acbcf7c21a135c192b90baabe7c70d
|
|
4
|
+
data.tar.gz: 603855c1a44646dbb6c21459444ab829ed58b5e72a20095d19945d952de0c6b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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:
|
data/lib/simplyq/version.rb
CHANGED
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.
|
|
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
|