proxy_rb 0.6.0 → 0.7.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
  SHA1:
3
- metadata.gz: d9e7207bd7f86b0c2ea177e5806cf5a2588d3cb3
4
- data.tar.gz: 0162f94083dc363cc0f219b277f72114abfa846c
3
+ metadata.gz: bebf353324351d55cf170d4abf0cff4828eb3b0a
4
+ data.tar.gz: 49ca3e1a8533972aa094c4ded73fbce98469bd73
5
5
  SHA512:
6
- metadata.gz: 8b934c3f3d8df5727a58341c9293ecff2c6ec6fec6bed89f6d61ad3a3d41bedc1c60d424601693faf7cbe9c90ffc86fbe032837def162845736a348f2e76cd53
7
- data.tar.gz: 974c031e6bd71d40ce0f16f74bb8da5a877cb9d47092af592588ec92a7ba938aca0fa9f721c4be41660759472f90fb0b7359c63feede795bd7fae63f7963feaf
6
+ metadata.gz: dc8ca41e46cdbab7ab130bf4f09edc83573e3b543384676a8e2889487d350767cfdd7bb4db7823ea5f2b0abdbc20c6d773c06123643970544b2284be731e0f01
7
+ data.tar.gz: 7cc6eb3238cd7247992f6194b223cf50735947a43e27a10586037da59d35aafdb7248dc8790b7a35ed96f6de2b0be42152f77d30c3e17b22174d820bbc49d5a1
data/History.md CHANGED
@@ -4,6 +4,10 @@ Empty
4
4
 
5
5
  # RELEASED
6
6
 
7
+ ## [v0.7.0](https://github.com/cucumber/aruba/compare/v0.6.0...v0.7.0)
8
+
9
+ * Make simple_table-formatter available as method
10
+
7
11
  ## [v0.6.0](https://github.com/cucumber/aruba/compare/v0.5.0...v0.6.0)
8
12
 
9
13
  * Added announcer for response headers
@@ -0,0 +1,9 @@
1
+ module ProxyRb
2
+ module Api
3
+ module Formatters
4
+ def simple_table(hash)
5
+ SimpleTable.new(hash).to_s
6
+ end
7
+ end
8
+ end
9
+ end
data/lib/proxy_rb/api.rb CHANGED
@@ -14,6 +14,7 @@ module ProxyRb
14
14
  include ProxyRb::Api::Core
15
15
  include ProxyRb::Api::HttpProxy
16
16
  include ProxyRb::Api::Passwords
17
+ include ProxyRb::Api::Formatters
17
18
  include Capybara::RSpecMatchers
18
19
  end
19
20
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # Main Module
3
3
  module ProxyRb
4
- VERSION = '0.6.0'
4
+ VERSION = '0.7.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proxy_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Meyer
@@ -147,6 +147,7 @@ files:
147
147
  - lib/proxy_rb/api.rb
148
148
  - lib/proxy_rb/api/.keep
149
149
  - lib/proxy_rb/api/core.rb
150
+ - lib/proxy_rb/api/formatters.rb
150
151
  - lib/proxy_rb/api/http_proxy.rb
151
152
  - lib/proxy_rb/api/passwords.rb
152
153
  - lib/proxy_rb/basic_configuration.rb