enviado 0.0.1 → 0.0.3.beta1

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
- SHA1:
3
- metadata.gz: c7e1943dbd8d6e37281506f08e806b24aed7982f
4
- data.tar.gz: f295bd264502f95a3bf46f84a0e7051831d08075
2
+ SHA256:
3
+ metadata.gz: 5093cf4d27db7e1bcdcdc4fd224ea01bd1de8bc9617437deaa9a9c6c01e5245a
4
+ data.tar.gz: 748880181971d648668f76a6f8caa12a8e0609d38a080f877960f0d6de062cb8
5
5
  SHA512:
6
- metadata.gz: cfa7045eff817ac48a1cb45a38ebaf200d046e1c69a8ebf79732cb2f126d50fddb26b55c327a7102a16389c924b04ee1f734adf0ea4871d96872bd6eecede4c1
7
- data.tar.gz: 79c1b78238ef5ba68eb0b530e78f00c2a9d2bb00c19d49ffb5f0839128ad324a343e3ce44b4581b72ed50a7e22f25c729d6673af55f6b66610584ce2015b6326
6
+ metadata.gz: 1e77ee392164f3277a90e6a4e1309cb96e0a393b8ea20e9523fb05b64f58ba2e0c2db32db2a2366f5a992225087f2cf7c757418dd9635bb127162f2de025d7ef
7
+ data.tar.gz: b5a6d33bbce6dcff64ba585f0e3f2c9ba5471dcad5fc725acae1e565aea966dc466fddb21db1f557604126258de9573b1548f11badd0f6847f058d81c3e4e25a
data/.rspec CHANGED
@@ -1,2 +1,2 @@
1
- --format documentation
2
1
  --color
2
+ --require spec_helper
data/README.md CHANGED
@@ -36,7 +36,7 @@ Enviado.start(config_path: 'path/to/envoy/config/file.json')
36
36
 
37
37
  Now you can perform requests to envoy.
38
38
 
39
- To see an example of an envoy configuration that deals with a flaky service, see <examples/flaky_requests/flaky_requests.rb>.
39
+ To see an example of an envoy configuration that deals with a flaky service, see [examples/flaky_requests/flaky_requests.rb](examples/flaky_requests/flaky_requests.rb).
40
40
 
41
41
  Running in docker:
42
42
 
@@ -62,4 +62,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
62
62
 
63
63
  ## Contributing
64
64
 
65
- Bug reports and pull requests are welcome on GitHub at <https://github.com/ivoanjo/enviado>.
65
+ Bug reports and pull requests are welcome on GitLab at <https://gitlab.com/ivoanjo/enviado>.
data/enviado.gemspec CHANGED
@@ -8,9 +8,10 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Enviado::VERSION
9
9
  spec.authors = ['Ivo Anjo']
10
10
  spec.email = ['ivo.anjo@ist.utl.pt']
11
+ spec.license = 'LGPL-3.0+'
11
12
 
12
13
  spec.summary = %q{A ruby wrapper for the envoy proxy}
13
- spec.homepage = 'https://github.com/ivoanjo/enviado'
14
+ spec.homepage = 'https://gitlab.com/ivoanjo/enviado'
14
15
 
15
16
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
16
17
  f.match(%r{^(test|spec|features)/})
@@ -1,6 +1,6 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
- gem 'enviado', git: 'https://github.com/ivoanjo/enviado.git'
3
+ gem 'enviado'
4
4
  gem 'rack'
5
5
  gem 'faraday'
6
6
  gem 'pry'
@@ -1,13 +1,8 @@
1
- GIT
2
- remote: https://github.com/ivoanjo/enviado.git
3
- revision: ca1279f41d8e18f4905b280846b0a8fc420bd1ba
4
- specs:
5
- enviado (0.0.0)
6
-
7
1
  GEM
8
2
  remote: http://rubygems.org/
9
3
  specs:
10
4
  coderay (1.1.1)
5
+ enviado (0.0.1)
11
6
  faraday (0.10.0)
12
7
  multipart-post (>= 1.2, < 3)
13
8
  method_source (0.8.2)
@@ -23,7 +18,7 @@ PLATFORMS
23
18
  ruby
24
19
 
25
20
  DEPENDENCIES
26
- enviado!
21
+ enviado
27
22
  faraday
28
23
  pry
29
24
  rack
@@ -1,3 +1,21 @@
1
+ # Enviado: A ruby wrapper for the envoy proxy
2
+ # Copyright (C) 2016 Ivo Anjo <ivo.anjo@ist.utl.pt>
3
+ #
4
+ # This file is part of Enviado.
5
+ #
6
+ # Enviado is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # Enviado is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Enviado. If not, see <http://www.gnu.org/licenses/>.
18
+
1
19
  module Enviado
2
- VERSION = '0.0.1'
20
+ VERSION = '0.0.3.beta1'
3
21
  end
data/lib/enviado.rb CHANGED
@@ -1,3 +1,21 @@
1
+ # Enviado: A ruby wrapper for the envoy proxy
2
+ # Copyright (C) 2016 Ivo Anjo <ivo.anjo@ist.utl.pt>
3
+ #
4
+ # This file is part of Enviado.
5
+ #
6
+ # Enviado is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as published by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # Enviado is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Enviado. If not, see <http://www.gnu.org/licenses/>.
18
+
1
19
  require 'enviado/version'
2
20
 
3
21
  module Enviado
data/lib/ext/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ Envoy
2
+
3
+ Copyright 2016 Lyft Inc.
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enviado
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivo Anjo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-19 00:00:00.000000000 Z
11
+ date: 2022-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -90,9 +90,11 @@ files:
90
90
  - examples/flaky_requests/flaky_requests.rb
91
91
  - lib/enviado.rb
92
92
  - lib/enviado/version.rb
93
+ - lib/ext/LICENSE
93
94
  - lib/ext/x86_64-linux/envoy
94
- homepage: https://github.com/ivoanjo/enviado
95
- licenses: []
95
+ homepage: https://gitlab.com/ivoanjo/enviado
96
+ licenses:
97
+ - LGPL-3.0+
96
98
  metadata: {}
97
99
  post_install_message:
98
100
  rdoc_options: []
@@ -105,12 +107,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
107
  version: '0'
106
108
  required_rubygems_version: !ruby/object:Gem::Requirement
107
109
  requirements:
108
- - - ">="
110
+ - - ">"
109
111
  - !ruby/object:Gem::Version
110
- version: '0'
112
+ version: 1.3.1
111
113
  requirements: []
112
- rubyforge_project:
113
- rubygems_version: 2.5.2
114
+ rubygems_version: 3.1.4
114
115
  signing_key:
115
116
  specification_version: 4
116
117
  summary: A ruby wrapper for the envoy proxy