hydroponic_bean 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +47 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/hydroponic_bean.gemspec +27 -0
- data/lib/hydroponic_bean.rb +25 -0
- data/lib/hydroponic_bean/commands.rb +11 -0
- data/lib/hydroponic_bean/commands/other.rb +20 -0
- data/lib/hydroponic_bean/commands/producer.rb +28 -0
- data/lib/hydroponic_bean/commands/worker.rb +6 -0
- data/lib/hydroponic_bean/connection.rb +34 -0
- data/lib/hydroponic_bean/data.rb +40 -0
- data/lib/hydroponic_bean/protocol.rb +31 -0
- data/lib/hydroponic_bean/test_helper.rb +10 -0
- data/lib/hydroponic_bean/version.rb +3 -0
- metadata +120 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9be5fc754d60f8829cbbd0ba05227eba6870223f
|
4
|
+
data.tar.gz: 84c0e63df7d54790e15fe9c740a916d6abd09486
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1fecd8d584eb0d85cf2e0398d5330aeff2fd418dabe8a1c218815b1d894b4d9e56748c1d716022cf61041b0f96e2b5ac4e1940e77cb16a6ccad4ca628c6723a5
|
7
|
+
data.tar.gz: 4a11702f8cfe3255080f2597814693a132b6dc007b1bf93951a5de28b844faf2093f777ff896f4a935af2ab3b3fc8325b17cc3968f1a54b5f77f8d6e9188ea4c
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at geoffroy@planquart.fr. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Geoffroy Planquart
|
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,47 @@
|
|
1
|
+
# HydroponicBean
|
2
|
+
|
3
|
+
This gem aims to provide a mock for the [beaneater](https://github.com/beanstalkd/beaneater) connection,
|
4
|
+
used to access a [beanstalkd](https://github.com/kr/beanstalkd)
|
5
|
+
instance, either directly or through [backburner](https://github.com/nesquena/backburner).
|
6
|
+
|
7
|
+
At the moment, the focus is made only on the producer commands, although it should be
|
8
|
+
easy enough (though maybe not as useful) to mock worker commands to, followings the
|
9
|
+
[protocol documentation](https://github.com/kr/beanstalkd/blob/master/doc/protocol.txt)
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Add this line to your application's Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'hydroponic_bean', group: :test
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install hydroponic_bean
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
Simply call `Beaneater.hydroponic!` to make it use this mocked collection.
|
30
|
+
|
31
|
+
You can include `HydroponicBean::TestHelper` which provides `assert_job_put(count = 1) do ... end` for you tests.
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
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.
|
36
|
+
|
37
|
+
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).
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hydroponic_bean. 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.
|
42
|
+
|
43
|
+
|
44
|
+
## License
|
45
|
+
|
46
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
47
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "hydroponic_bean"
|
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
|
data/bin/setup
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'hydroponic_bean/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "hydroponic_bean"
|
8
|
+
spec.version = HydroponicBean::VERSION
|
9
|
+
spec.authors = ["Geoffroy Planquart"]
|
10
|
+
spec.email = ["geoffroy@planquart.fr"]
|
11
|
+
|
12
|
+
spec.summary = %q{Mocking beaneater's connection}
|
13
|
+
spec.description = %q{Mocking a TCP connection to a beanstalkd instance}
|
14
|
+
spec.homepage = "https://github.com/Aethelflaed/hydroponic_bean"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
25
|
+
|
26
|
+
spec.add_dependency 'beaneater', '~> 1.0'
|
27
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'beaneater'
|
2
|
+
|
3
|
+
require 'hydroponic_bean/version'
|
4
|
+
require 'hydroponic_bean/data'
|
5
|
+
require 'hydroponic_bean/connection'
|
6
|
+
require 'hydroponic_bean/test_helper'
|
7
|
+
|
8
|
+
module HydroponicBean
|
9
|
+
def establish_connection
|
10
|
+
# Keep all variables initialized as if normal connection
|
11
|
+
@address = address.first if address.is_a?(Array)
|
12
|
+
match = address.split(':')
|
13
|
+
@host, @port = match[0], Integer(match[1] || DEFAULT_PORT)
|
14
|
+
|
15
|
+
@connection = Connection.new
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
class Beaneater
|
20
|
+
def self.hydroponic!
|
21
|
+
Beaneater::Connection.class_eval do
|
22
|
+
prepend HydroponicBean
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'hydroponic_bean/commands/producer'
|
2
|
+
require 'hydroponic_bean/commands/worker'
|
3
|
+
require 'hydroponic_bean/commands/other'
|
4
|
+
|
5
|
+
module HydroponicBean
|
6
|
+
module Commands
|
7
|
+
include HydroponicBean::Commands::Producer
|
8
|
+
include HydroponicBean::Commands::Worker
|
9
|
+
include HydroponicBean::Commands::Other
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module HydroponicBean
|
2
|
+
module Commands
|
3
|
+
module Other
|
4
|
+
def peek(stream, id)
|
5
|
+
peek_output(HydroponicBean.jobs[id.to_i - 1])
|
6
|
+
end
|
7
|
+
|
8
|
+
protected
|
9
|
+
def peek_output(job)
|
10
|
+
if job
|
11
|
+
output("FOUND #{job[:id]} #{job[:data].length}\r\n")
|
12
|
+
output("#{job[:data]}\r\n")
|
13
|
+
else
|
14
|
+
output(Protocol::NOT_FOUND)
|
15
|
+
return false
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module HydroponicBean
|
2
|
+
module Commands
|
3
|
+
module Producer
|
4
|
+
def use(stream, tube)
|
5
|
+
@current_tube_name = tube
|
6
|
+
output("USING #{current_tube_name}\r\n")
|
7
|
+
end
|
8
|
+
|
9
|
+
def put(stream, pri, delay, ttr, bytes)
|
10
|
+
bytes = bytes.to_i
|
11
|
+
data = stream.read(bytes)
|
12
|
+
|
13
|
+
if data.length < bytes
|
14
|
+
output(Protocol::BAD_FORMAT)
|
15
|
+
return false
|
16
|
+
end
|
17
|
+
|
18
|
+
if stream.read(2) != "\r\n"
|
19
|
+
output(Protocol::EXPECTED_CRLF)
|
20
|
+
return false
|
21
|
+
end
|
22
|
+
|
23
|
+
id = create_job(pri, delay, ttr, data)
|
24
|
+
output("INSERTED #{id}\r\n")
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'hydroponic_bean/protocol'
|
2
|
+
|
3
|
+
module HydroponicBean
|
4
|
+
class Connection
|
5
|
+
include HydroponicBean::Protocol
|
6
|
+
|
7
|
+
def initialize
|
8
|
+
@_read, @_write = IO.pipe
|
9
|
+
end
|
10
|
+
|
11
|
+
# Necessary interface used by beaneater
|
12
|
+
def write(command)
|
13
|
+
parse(StringIO.new(command))
|
14
|
+
end
|
15
|
+
|
16
|
+
def read(bytes)
|
17
|
+
@_read.read(bytes)
|
18
|
+
end
|
19
|
+
|
20
|
+
def readline
|
21
|
+
@_read.readline
|
22
|
+
end
|
23
|
+
|
24
|
+
def close
|
25
|
+
@_read.close
|
26
|
+
@_write.close
|
27
|
+
end
|
28
|
+
|
29
|
+
protected
|
30
|
+
def output(data)
|
31
|
+
@_write.write(data)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
module HydroponicBean
|
2
|
+
def self.tubes
|
3
|
+
@tubes ||= Hash.new{|h, k| h[k] = []}
|
4
|
+
end
|
5
|
+
|
6
|
+
def self.jobs
|
7
|
+
@jobs ||= []
|
8
|
+
end
|
9
|
+
|
10
|
+
module Data
|
11
|
+
def current_tube_name
|
12
|
+
@current_tube_name ||= 'default'
|
13
|
+
end
|
14
|
+
|
15
|
+
def current_tube
|
16
|
+
HydroponicBean.tubes[current_tube_name]
|
17
|
+
end
|
18
|
+
|
19
|
+
def next_id
|
20
|
+
HydroponicBean.jobs.length + 1
|
21
|
+
end
|
22
|
+
|
23
|
+
def create_job(pri, delay, ttr, data)
|
24
|
+
job = {
|
25
|
+
id: next_id,
|
26
|
+
tube: current_tube_name,
|
27
|
+
pri: pri.to_i,
|
28
|
+
delay: delay.to_i,
|
29
|
+
ttr: ttr.to_i,
|
30
|
+
data: data,
|
31
|
+
}
|
32
|
+
job[:state] = (job[:delay] == 0) ? :ready : :delayed
|
33
|
+
|
34
|
+
HydroponicBean.jobs.push(job)
|
35
|
+
current_tube.push(job)
|
36
|
+
|
37
|
+
return job[:id]
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'hydroponic_bean/commands'
|
2
|
+
|
3
|
+
module HydroponicBean
|
4
|
+
module Protocol
|
5
|
+
include HydroponicBean::Data
|
6
|
+
include HydroponicBean::Commands
|
7
|
+
|
8
|
+
OUT_OF_MEMORY = "OUT_OF_MEMORY\r\n".freeze
|
9
|
+
INTERNAL_ERROR = "INTERNAL_ERROR\r\n".freeze
|
10
|
+
BAD_FORMAT = "BAD_FORMAT\r\n".freeze
|
11
|
+
UNKNOWN_COMMAND = "UNKNOWN_COMMAND\r\n".freeze
|
12
|
+
EXPECTED_CRLF = "EXPECTED_CRLF\r\n".freeze
|
13
|
+
JOB_TOO_BIG = "JOB_TOO_BIG\r\n".freeze
|
14
|
+
DRAINING = "DRAINING\r\n".freeze
|
15
|
+
NOT_FOUND = "NOT_FOUND\r\n".freeze
|
16
|
+
|
17
|
+
def parse(stream)
|
18
|
+
while (line = stream.gets("\r\n")) do
|
19
|
+
if line.slice!(-2..-1) != "\r\n"
|
20
|
+
output(BAD_FORMAT)
|
21
|
+
return
|
22
|
+
end
|
23
|
+
|
24
|
+
command, *args = line.split
|
25
|
+
if !send(command.gsub('-', '_'), *([stream] + args))
|
26
|
+
return
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
module HydroponicBean
|
2
|
+
module TestHelper
|
3
|
+
def assert_job_put(count = 1)
|
4
|
+
current_count = HydroponicBean.jobs.count
|
5
|
+
result = yield
|
6
|
+
assert current_count + count == HydroponicBean.jobs.count, "Exepected #{count} job(s) to be put, but found #{HydroponicBean.jobs.count - current_count}"
|
7
|
+
return result
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
metadata
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hydroponic_bean
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Geoffroy Planquart
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-07-14 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.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
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
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: beaneater
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.0'
|
69
|
+
description: Mocking a TCP connection to a beanstalkd instance
|
70
|
+
email:
|
71
|
+
- geoffroy@planquart.fr
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".travis.yml"
|
78
|
+
- CODE_OF_CONDUCT.md
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- bin/console
|
84
|
+
- bin/setup
|
85
|
+
- hydroponic_bean.gemspec
|
86
|
+
- lib/hydroponic_bean.rb
|
87
|
+
- lib/hydroponic_bean/commands.rb
|
88
|
+
- lib/hydroponic_bean/commands/other.rb
|
89
|
+
- lib/hydroponic_bean/commands/producer.rb
|
90
|
+
- lib/hydroponic_bean/commands/worker.rb
|
91
|
+
- lib/hydroponic_bean/connection.rb
|
92
|
+
- lib/hydroponic_bean/data.rb
|
93
|
+
- lib/hydroponic_bean/protocol.rb
|
94
|
+
- lib/hydroponic_bean/test_helper.rb
|
95
|
+
- lib/hydroponic_bean/version.rb
|
96
|
+
homepage: https://github.com/Aethelflaed/hydroponic_bean
|
97
|
+
licenses:
|
98
|
+
- MIT
|
99
|
+
metadata: {}
|
100
|
+
post_install_message:
|
101
|
+
rdoc_options: []
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
requirements: []
|
115
|
+
rubyforge_project:
|
116
|
+
rubygems_version: 2.5.1
|
117
|
+
signing_key:
|
118
|
+
specification_version: 4
|
119
|
+
summary: Mocking beaneater's connection
|
120
|
+
test_files: []
|