ruby_eureka 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.travis.yml +5 -0
- data/CHANGELOG.md +8 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +22 -0
- data/LICENSE.txt +21 -0
- data/README.md +56 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/sidecar +25 -0
- data/bin/sidecar-1.0.jar +0 -0
- data/lib/eureka.rb +66 -0
- data/lib/eureka/execute.rb +45 -0
- data/lib/eureka/health.rb +18 -0
- data/lib/eureka/railtie.rb +9 -0
- data/lib/eureka/version.rb +5 -0
- data/lib/ruby_eureka.rb +3 -0
- data/ruby-eureka.gemspec +28 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d1875fd7a6c301426bffec920bb6b226c7a6edbe
|
4
|
+
data.tar.gz: de7a746ac5d82d2e467f90cb2b505911ddfae58d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 78e0abca602b6f165006d6c8c5bbcf02b96e3a6384921d53d2f0d433a2a5cfa8e46a20e6af1bb8f7e1bfaa2dd6bc8b559b8fe6d73c411d9fca94e90e510c4c89
|
7
|
+
data.tar.gz: d895d135fc294592909b98350b24d912d0cbdeb5f274120e67c5eb82354c5364ab29e12a3914107903f04f8aa61f3e6142f84119339e93c5de3ac157a76754ad
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at jianbo.cui@harmoney.co.nz. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
ruby_eureka (0.0.3)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
minitest (5.11.3)
|
10
|
+
rake (10.5.0)
|
11
|
+
|
12
|
+
PLATFORMS
|
13
|
+
ruby
|
14
|
+
|
15
|
+
DEPENDENCIES
|
16
|
+
bundler (~> 1.16)
|
17
|
+
minitest (~> 5.0)
|
18
|
+
rake (~> 10.0)
|
19
|
+
ruby_eureka!
|
20
|
+
|
21
|
+
BUNDLED WITH
|
22
|
+
1.16.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Jianbo Cui
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
# Ruby::Eureka
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/harmoney-jianbo/ruby-eureka.svg?branch=master)](https://travis-ci.org/harmoney-jianbo/ruby-eureka)
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'ruby-eureka'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install ruby-eureka
|
20
|
+
|
21
|
+
Create YAML config files config/eureka_sidecar.yml
|
22
|
+
|
23
|
+
---
|
24
|
+
eureka:
|
25
|
+
service_name: service-a
|
26
|
+
url: http://localhost:8761/eureka/
|
27
|
+
service:
|
28
|
+
port: 3000 (Optional default to 3000)
|
29
|
+
sidecar:
|
30
|
+
port: 9091 (Optional default to 9090)
|
31
|
+
|
32
|
+
Run the bundle exec command from the application root directory
|
33
|
+
|
34
|
+
bundle exec sidecar
|
35
|
+
|
36
|
+
## Usage
|
37
|
+
|
38
|
+
Register Ruby application with Eureka server
|
39
|
+
|
40
|
+
## Development
|
41
|
+
|
42
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
43
|
+
|
44
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
45
|
+
|
46
|
+
## Contributing
|
47
|
+
|
48
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby-eureka. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
49
|
+
|
50
|
+
## License
|
51
|
+
|
52
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
53
|
+
|
54
|
+
## Code of Conduct
|
55
|
+
|
56
|
+
Everyone interacting in the Ruby::Eureka project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/ruby-eureka/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "ruby/eureka"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/bin/sidecar
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'eureka'
|
4
|
+
require 'yaml'
|
5
|
+
require 'erb'
|
6
|
+
|
7
|
+
opt = {}
|
8
|
+
opt = YAML.load(ERB.new(IO.read('config/eureka_sidecar.yml')).result) || opts
|
9
|
+
|
10
|
+
Eureka.setup do |config|
|
11
|
+
config.side_app_name = opt['eureka']['service_name']
|
12
|
+
config.eureka_url = opt['eureka']['url']
|
13
|
+
config.app_port = opt['service']['port'] if opt['service'] && opt['service']['port']
|
14
|
+
config.sidecar_port = opt['sidecar']['port'] if opt['sidecar'] && opt['sidecar']['port']
|
15
|
+
end
|
16
|
+
|
17
|
+
begin
|
18
|
+
exe = Eureka::Execute
|
19
|
+
exe.run
|
20
|
+
rescue => e
|
21
|
+
raise e if $DEBUG
|
22
|
+
STDERR.puts e.message
|
23
|
+
STDERR.puts e.backtrace.join("\n")
|
24
|
+
exit 1
|
25
|
+
end
|
data/bin/sidecar-1.0.jar
ADDED
Binary file
|
data/lib/eureka.rb
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eureka/railtie' if defined? Rails
|
4
|
+
|
5
|
+
module Eureka
|
6
|
+
autoload :Execute, 'eureka/execute'
|
7
|
+
autoload :Health, 'eureka/health'
|
8
|
+
|
9
|
+
# Sidecar app name appear inside Euraka
|
10
|
+
def self.side_app_name
|
11
|
+
@side_app_name
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.side_app_name=(side_app_name)
|
15
|
+
@side_app_name = side_app_name
|
16
|
+
end
|
17
|
+
|
18
|
+
# Eureka URL
|
19
|
+
def self.eureka_url
|
20
|
+
@eureka_url
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.eureka_url=(eureka_url)
|
24
|
+
@eureka_url = eureka_url
|
25
|
+
end
|
26
|
+
|
27
|
+
# Eureka URL
|
28
|
+
def self.jar
|
29
|
+
@jar
|
30
|
+
end
|
31
|
+
|
32
|
+
def self.jar=(jar)
|
33
|
+
@jar = jar
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.app_port
|
37
|
+
@app_port
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.app_port=(app_port)
|
41
|
+
@app_port = app_port
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.sidecar_port
|
45
|
+
@sidecar_port
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.sidecar_port=(sidecar_port)
|
49
|
+
@sidecar_port = sidecar_port
|
50
|
+
end
|
51
|
+
|
52
|
+
# Default way to set up Euraka
|
53
|
+
def self.setup
|
54
|
+
yield self
|
55
|
+
end
|
56
|
+
|
57
|
+
def self.reset
|
58
|
+
@side_app_name = nil
|
59
|
+
@eureka_url = nil
|
60
|
+
@jar = 'bin/sidecar-1.0.jar'
|
61
|
+
@app_port = 3000
|
62
|
+
@sidecar_port = 9090
|
63
|
+
end
|
64
|
+
|
65
|
+
reset
|
66
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Eureka
|
4
|
+
class Execute
|
5
|
+
class << self
|
6
|
+
def run
|
7
|
+
Dir.chdir(File.expand_path '../../..', __FILE__) do
|
8
|
+
p command
|
9
|
+
exec command
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def command
|
14
|
+
"sh -c 'java -jar #{options}'"
|
15
|
+
end
|
16
|
+
|
17
|
+
def options
|
18
|
+
%w[jar_path side_app_name eureka_url app_port sidecar_port].map do |option|
|
19
|
+
send(option)
|
20
|
+
end.join(' ')
|
21
|
+
end
|
22
|
+
|
23
|
+
def jar_path
|
24
|
+
Eureka.jar
|
25
|
+
end
|
26
|
+
|
27
|
+
def sidecar_port
|
28
|
+
"--sidecar-port=#{Eureka.sidecar_port}"
|
29
|
+
end
|
30
|
+
|
31
|
+
def side_app_name
|
32
|
+
"--side-app-name=#{Eureka.side_app_name}"
|
33
|
+
end
|
34
|
+
|
35
|
+
def app_port
|
36
|
+
"--app-port=#{Eureka.app_port}"
|
37
|
+
end
|
38
|
+
|
39
|
+
# http://eureka:8761/eureka/
|
40
|
+
def eureka_url
|
41
|
+
"--eureka-url=#{File.join(Eureka.eureka_url, "")}"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Eureka
|
4
|
+
class Health
|
5
|
+
def initialize(app)
|
6
|
+
@app = app
|
7
|
+
end
|
8
|
+
|
9
|
+
def call(env)
|
10
|
+
@req = Rack::Request.new(env)
|
11
|
+
if @req.path == '/health.json'
|
12
|
+
[200, { 'Content-Type' => 'application/json' }, [ {status: 'UP'}.to_json ]]
|
13
|
+
else
|
14
|
+
@app.call(env)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/ruby_eureka.rb
ADDED
data/ruby-eureka.gemspec
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "eureka/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "ruby_eureka"
|
8
|
+
spec.version = Eureka::VERSION
|
9
|
+
spec.authors = ["Jianbo Cui"]
|
10
|
+
spec.email = ["jianbo.cui@harmoney.co.nz"]
|
11
|
+
|
12
|
+
spec.summary = %q{A Ruby Wrapper for Eureka Sidecar client}
|
13
|
+
spec.homepage = "https://github.com/harmoney-jianbo/ruby-eureka"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# Specify which files should be added to the gem when it is released.
|
17
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
18
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
+
end
|
21
|
+
spec.bindir = "bin"
|
22
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
28
|
+
end
|
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby_eureka
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jianbo Cui
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-08-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- jianbo.cui@harmoney.co.nz
|
58
|
+
executables:
|
59
|
+
- console
|
60
|
+
- setup
|
61
|
+
- sidecar
|
62
|
+
- sidecar-1.0.jar
|
63
|
+
extensions: []
|
64
|
+
extra_rdoc_files: []
|
65
|
+
files:
|
66
|
+
- ".gitignore"
|
67
|
+
- ".travis.yml"
|
68
|
+
- CHANGELOG.md
|
69
|
+
- CODE_OF_CONDUCT.md
|
70
|
+
- Gemfile
|
71
|
+
- Gemfile.lock
|
72
|
+
- LICENSE.txt
|
73
|
+
- README.md
|
74
|
+
- Rakefile
|
75
|
+
- bin/console
|
76
|
+
- bin/setup
|
77
|
+
- bin/sidecar
|
78
|
+
- bin/sidecar-1.0.jar
|
79
|
+
- lib/eureka.rb
|
80
|
+
- lib/eureka/execute.rb
|
81
|
+
- lib/eureka/health.rb
|
82
|
+
- lib/eureka/railtie.rb
|
83
|
+
- lib/eureka/version.rb
|
84
|
+
- lib/ruby_eureka.rb
|
85
|
+
- ruby-eureka.gemspec
|
86
|
+
homepage: https://github.com/harmoney-jianbo/ruby-eureka
|
87
|
+
licenses:
|
88
|
+
- MIT
|
89
|
+
metadata: {}
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.6.14
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: A Ruby Wrapper for Eureka Sidecar client
|
110
|
+
test_files: []
|