smart_proxy_acd 0.0.1 → 0.1.0

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: e827c53a1c17ebe0ac3ec5eadd4a96aeb101c844fbfda0b91529636bd392cbd5
4
- data.tar.gz: 52d286c6fa65228036a7ba90d577122df5089c81e0a313aef695771d40e58011
3
+ metadata.gz: 80a978c97059f5794f0edf5f62699f12e45a022b3332870159ca4a1c8114576a
4
+ data.tar.gz: 65b8540e1cdba88109ab89fda19b0f1dd2bc9efb6efa6e463b562b475814642a
5
5
  SHA512:
6
- metadata.gz: 7306205ec2453e0c19ac77a6008b99957d58248e14cd14293a76c8cd307e1f34ede5e68e082742d904553f11dcf1ed2d1863193c75deac63494a20d25558b43d
7
- data.tar.gz: 9fddf4f6beff7aaa2e0dea65d792994499e2ef12e20b0a6ee4e3779bbc523d637f595a5089becbb6d7e278276e847993d321a2dd65d0be8b16148b1ee04c6ee3
6
+ metadata.gz: 9631b51f3a5b85eab8fa4312b2a887a7a5907ba5dc5ec52767c307e21502d386051448be42997dc8be24bcf6784ac010bf04d2f56c35d28eff8a96f8b1521e65
7
+ data.tar.gz: bb80129d8c7111f8e9f28002accbc96f48c3863b71439866d3466baa29f8f4ce0907c6af24972b6b16039a87e8cf29e5d1af950f97dadc544395c0a0ec380f2e
@@ -2,6 +2,7 @@ module Proxy
2
2
  module Acd
3
3
  class NotFound < RuntimeError; end
4
4
 
5
+ # Implement a SmartProxy Plugin
5
6
  class Plugin < ::Proxy::Plugin
6
7
  plugin 'acd', Proxy::Acd::VERSION
7
8
  http_rackup_path File.expand_path('acd_http_config.ru', File.expand_path('../', __FILE__))
@@ -4,7 +4,7 @@ require 'smart_proxy_acd/acd_main'
4
4
 
5
5
  module Proxy
6
6
  module Acd
7
-
7
+ # Implement the Proxy API
8
8
  class Api < ::Sinatra::Base
9
9
  include ::Proxy::Log
10
10
  helpers ::Proxy::Helpers
@@ -1,10 +1,10 @@
1
1
  module Proxy
2
+ # The ACD module
2
3
  module Acd
3
4
  extend ::Proxy::Util
4
5
  extend ::Proxy::Log
5
6
 
6
7
  class << self
7
8
  end
8
-
9
9
  end
10
10
  end
@@ -1,5 +1,5 @@
1
1
  module Proxy
2
2
  module Acd
3
- VERSION = '0.0.1'.freeze
3
+ VERSION = '0.1.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_proxy_acd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Bucher
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-19 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2021-03-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rubocop
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.50.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.50.0
13
27
  description: Application Centric Deployment smart proxy plugin
14
28
  email: info@atix.de
15
29
  executables: []