redis-stream-wrapper 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 +7 -0
- data/.gitignore +14 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/.travis.yml +22 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +68 -0
- data/LICENSE +21 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +13 -0
- data/bin/setup +8 -0
- data/lib/redis/stream/wrapper.rb +152 -0
- data/lib/redis/stream/wrapper/exceptions.rb +7 -0
- data/lib/redis/stream/wrapper/message.rb +14 -0
- data/lib/redis/stream/wrapper/version.rb +7 -0
- data/redis-stream-wrapper.gemspec +33 -0
- data/redis-stream-wrapper.iml +386 -0
- metadata +145 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 76f7a53b66edd7d923694e3942294ee7e1785bf9a9ccac6da8076375b814a6e1
|
4
|
+
data.tar.gz: ad3e4e42a2a030074903f652cacdd68fd4b5517e4cf9199dd78b76521e1f9b3d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 24b771cb1dfe8a846bca05b0a7d0b6f8bafd3609ccb4431f99a027dc48d106cf8948ae62493dfd15a84c754a1a430ed7b34a745f60c79532fae5e592d2384258
|
7
|
+
data.tar.gz: 18a172bb70d8fda71ee6a9b971295472f176ada5be2040e7f3b8141fad0ae21d46ecc24db8e1f306caf85c0f8bd8e6751bada91659624cb0559fc7fe27602760
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.6.3
|
data/.travis.yml
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
cache: bundler
|
4
|
+
|
5
|
+
services:
|
6
|
+
- redis-server
|
7
|
+
|
8
|
+
rvm:
|
9
|
+
- 2.6.3
|
10
|
+
|
11
|
+
sudo: false
|
12
|
+
|
13
|
+
env:
|
14
|
+
global:
|
15
|
+
- REDIS_HOST=localhost
|
16
|
+
- REDIS_PORT=6379
|
17
|
+
- REDIS_DB=1
|
18
|
+
|
19
|
+
install:
|
20
|
+
- bin/setup
|
21
|
+
|
22
|
+
script: rake spec
|
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 alexandre@buyco.co. 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,68 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
redis-stream-wrapper (0.1.0)
|
5
|
+
dry-struct
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
byebug (11.0.1)
|
11
|
+
concurrent-ruby (1.1.5)
|
12
|
+
diff-lcs (1.3)
|
13
|
+
dry-configurable (0.8.3)
|
14
|
+
concurrent-ruby (~> 1.0)
|
15
|
+
dry-core (~> 0.4, >= 0.4.7)
|
16
|
+
dry-container (0.7.1)
|
17
|
+
concurrent-ruby (~> 1.0)
|
18
|
+
dry-configurable (~> 0.1, >= 0.1.3)
|
19
|
+
dry-core (0.4.8)
|
20
|
+
concurrent-ruby (~> 1.0)
|
21
|
+
dry-equalizer (0.2.2)
|
22
|
+
dry-inflector (0.1.2)
|
23
|
+
dry-logic (1.0.2)
|
24
|
+
concurrent-ruby (~> 1.0)
|
25
|
+
dry-core (~> 0.2)
|
26
|
+
dry-equalizer (~> 0.2)
|
27
|
+
dry-struct (1.0.0)
|
28
|
+
dry-core (~> 0.4, >= 0.4.3)
|
29
|
+
dry-equalizer (~> 0.2)
|
30
|
+
dry-types (~> 1.0)
|
31
|
+
ice_nine (~> 0.11)
|
32
|
+
dry-types (1.1.0)
|
33
|
+
concurrent-ruby (~> 1.0)
|
34
|
+
dry-container (~> 0.3)
|
35
|
+
dry-core (~> 0.4, >= 0.4.4)
|
36
|
+
dry-equalizer (~> 0.2, >= 0.2.2)
|
37
|
+
dry-inflector (~> 0.1, >= 0.1.2)
|
38
|
+
dry-logic (~> 1.0, >= 1.0.2)
|
39
|
+
ice_nine (0.11.2)
|
40
|
+
rake (10.5.0)
|
41
|
+
redis (4.1.2)
|
42
|
+
rspec (3.8.0)
|
43
|
+
rspec-core (~> 3.8.0)
|
44
|
+
rspec-expectations (~> 3.8.0)
|
45
|
+
rspec-mocks (~> 3.8.0)
|
46
|
+
rspec-core (3.8.2)
|
47
|
+
rspec-support (~> 3.8.0)
|
48
|
+
rspec-expectations (3.8.4)
|
49
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
+
rspec-support (~> 3.8.0)
|
51
|
+
rspec-mocks (3.8.1)
|
52
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
53
|
+
rspec-support (~> 3.8.0)
|
54
|
+
rspec-support (3.8.2)
|
55
|
+
|
56
|
+
PLATFORMS
|
57
|
+
ruby
|
58
|
+
|
59
|
+
DEPENDENCIES
|
60
|
+
bundler (~> 2.0)
|
61
|
+
byebug
|
62
|
+
rake (~> 10.0)
|
63
|
+
redis (~> 4.0)
|
64
|
+
redis-stream-wrapper!
|
65
|
+
rspec (~> 3.0)
|
66
|
+
|
67
|
+
BUNDLED WITH
|
68
|
+
2.0.2
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Buyco
|
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,39 @@
|
|
1
|
+
# Redis::Stream::Wrapper [](https://travis-ci.com/buyco/redis-stream-wrapper) [](https://github.com/buyco/redis-stream-wrapper/LICENSE)
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add this line to your application's Gemfile:
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
gem 'redis-stream-wrapper'
|
9
|
+
```
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install redis-stream-wrapper
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Development
|
24
|
+
|
25
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
26
|
+
|
27
|
+
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).
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
|
31
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/buyco/redis-stream-wrapper. 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.
|
32
|
+
|
33
|
+
## License
|
34
|
+
|
35
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
36
|
+
|
37
|
+
## Code of Conduct
|
38
|
+
|
39
|
+
Everyone interacting in the Redis::Stream::Wrapper project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/redis-stream-wrapper/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "redis/stream/wrapper"
|
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
|
+
require "irb"
|
13
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,152 @@
|
|
1
|
+
require 'dry-struct'
|
2
|
+
require 'byebug'
|
3
|
+
class Redis
|
4
|
+
module Stream
|
5
|
+
class Wrapper
|
6
|
+
|
7
|
+
# Creates a new instance if a Stream.
|
8
|
+
#
|
9
|
+
# @param redis - An instance of Redis.
|
10
|
+
# @param read_timeout_ms - The read timeout granularity.
|
11
|
+
#
|
12
|
+
def initialize(redis, read_timeout_ms = 1000)
|
13
|
+
@redis = redis
|
14
|
+
@listening = false
|
15
|
+
@read_timeout_ms = read_timeout_ms
|
16
|
+
end
|
17
|
+
|
18
|
+
# Deletes the stream.
|
19
|
+
#
|
20
|
+
# @param stream_name - The name of the stream to delete
|
21
|
+
#
|
22
|
+
def clear_stream!(stream_name)
|
23
|
+
@redis.del(stream_name)
|
24
|
+
end
|
25
|
+
|
26
|
+
# Adds a new message to the stream.
|
27
|
+
#
|
28
|
+
# @param message - The message to add to the stream
|
29
|
+
# @return - Message with new id (if default was used)
|
30
|
+
#
|
31
|
+
def add_message(message)
|
32
|
+
copy_message(message, @redis.xadd(message.stream, message.payload, id: message.id))
|
33
|
+
end
|
34
|
+
|
35
|
+
# Starts reading stream messages looping
|
36
|
+
#
|
37
|
+
# @param group - A group to read stream
|
38
|
+
# @param consumer_name - A consumer name
|
39
|
+
# @param streams - A hash {:stream_name => 'stream_begin_value'}
|
40
|
+
# @param opts - A hash of options
|
41
|
+
#
|
42
|
+
def listen(group, consumer_name, streams, opts = {})
|
43
|
+
raise StreamReadError, "Already listening [#{stream}] stream" if @listening
|
44
|
+
|
45
|
+
@listening = true
|
46
|
+
opts[:block] = @read_timeout_ms if opts[:block].nil?
|
47
|
+
while @listening
|
48
|
+
results = @redis.xreadgroup(group, consumer_name, streams.keys, streams.values, opts)
|
49
|
+
next unless results
|
50
|
+
|
51
|
+
parse_read_response(results).each do |message|
|
52
|
+
yield message
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
# Starts reading stream messages.
|
58
|
+
#
|
59
|
+
# @param group - A group to read stream
|
60
|
+
# @param consumer_name - A consumer name
|
61
|
+
# @param streams - A hash {:stream_name => 'stream_begin_value'}
|
62
|
+
# @param opts - A hash of options
|
63
|
+
#
|
64
|
+
def read(group, consumer_name, streams, opts = {})
|
65
|
+
opts[:block] = @read_timeout_ms if opts[:block].nil?
|
66
|
+
results = @redis.xreadgroup(group, consumer_name, streams.keys, streams.values, opts)
|
67
|
+
return unless results
|
68
|
+
|
69
|
+
parse_read_response(results).each.map do |message|
|
70
|
+
message
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
# ACK stream message.
|
75
|
+
#
|
76
|
+
# @param group - The group that ack
|
77
|
+
# @param message - The message to add to the stream
|
78
|
+
#
|
79
|
+
def ack_message(group, message)
|
80
|
+
@redis.xack(message.stream, group, message.id)
|
81
|
+
end
|
82
|
+
|
83
|
+
# Delete stream message.
|
84
|
+
#
|
85
|
+
# @param message - The message to add to the stream
|
86
|
+
#
|
87
|
+
def delete_message(message)
|
88
|
+
@redis.xdel(message.stream, message.id)
|
89
|
+
end
|
90
|
+
|
91
|
+
# Create group stream message.
|
92
|
+
#
|
93
|
+
# @param name - The group name
|
94
|
+
# @param stream - The concerned stream
|
95
|
+
# @param start - The start stream ($ is only new messages)
|
96
|
+
# @param create_default_stream - Bool to create a stream if it does not exist
|
97
|
+
#
|
98
|
+
def create_group(name, stream, start = '$', create_default_stream = true)
|
99
|
+
@redis.xgroup(:create, stream, name, start, mkstream: create_default_stream)
|
100
|
+
end
|
101
|
+
|
102
|
+
# Delete group stream message.
|
103
|
+
#
|
104
|
+
# @param name - The group name
|
105
|
+
# @param stream - The concerned stream
|
106
|
+
#
|
107
|
+
def delete_group(name, stream)
|
108
|
+
@redis.xgroup(:destroy, stream, name)
|
109
|
+
end
|
110
|
+
|
111
|
+
# Delete group stream message.
|
112
|
+
#
|
113
|
+
# @param name - The group name
|
114
|
+
# @param stream - The concerned stream
|
115
|
+
# @param consumer - The consumer name
|
116
|
+
#
|
117
|
+
def delete_group_consumer(name, stream, consumer)
|
118
|
+
@redis.xgroup(:delconsumer, stream, name, consumer)
|
119
|
+
end
|
120
|
+
|
121
|
+
# Stops reading message stream(s)
|
122
|
+
#
|
123
|
+
def stop_listening
|
124
|
+
@listening = false
|
125
|
+
end
|
126
|
+
|
127
|
+
private
|
128
|
+
|
129
|
+
def parse_read_response(results)
|
130
|
+
results.map do |stream_name, messages|
|
131
|
+
messages.map do |id, payload|
|
132
|
+
Message.new(
|
133
|
+
stream: stream_name,
|
134
|
+
payload: Hash[payload.each_slice(2).to_a],
|
135
|
+
id: id
|
136
|
+
)
|
137
|
+
end
|
138
|
+
end.flatten.compact
|
139
|
+
end
|
140
|
+
|
141
|
+
# Returns a copy of the current instance, with the id set.
|
142
|
+
#
|
143
|
+
def copy_message(message, new_id)
|
144
|
+
message.new(
|
145
|
+
id: new_id,
|
146
|
+
stream: message.stream,
|
147
|
+
payload: message.payload
|
148
|
+
)
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'dry-struct'
|
2
|
+
|
3
|
+
class Redis
|
4
|
+
module Stream
|
5
|
+
class Wrapper
|
6
|
+
class Message < ::Dry::Struct::Value
|
7
|
+
Types = ::Dry.Types
|
8
|
+
attribute :stream, Types::Coercible::String
|
9
|
+
attribute :id, Types::Coercible::String.optional.default('*', shared: true)
|
10
|
+
attribute :payload, Types::Hash.map(Types::Coercible::String, Types::Coercible::String)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "redis/stream/wrapper/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "redis-stream-wrapper"
|
8
|
+
spec.version = Redis::Stream::Wrapper::VERSION
|
9
|
+
spec.authors = ["Alexandre Del Vecchio"]
|
10
|
+
spec.email = ["alexandre@buyco.co"]
|
11
|
+
|
12
|
+
spec.summary = %q{Redis Stream Wrapper}
|
13
|
+
spec.description = %q{A simple Redis stream wrapper written in Ruby}
|
14
|
+
spec.homepage = "https://github.com/buyco/redis-stream-wrapper"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Specify which files should be added to the gem when it is released.
|
18
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
+
end
|
22
|
+
spec.bindir = "exe"
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
29
|
+
spec.add_development_dependency "redis", "~> 4.0"
|
30
|
+
spec.add_development_dependency "byebug"
|
31
|
+
|
32
|
+
spec.add_dependency "dry-struct"
|
33
|
+
end
|
@@ -0,0 +1,386 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
4
|
+
<exclude-output />
|
5
|
+
<content url="file://$MODULE_DIR$">
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/vendor/bundle" />
|
7
|
+
</content>
|
8
|
+
<orderEntry type="jdk" jdkName="rbenv: 2.6.3" jdkType="RUBY_SDK" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
<orderEntry type="module-library">
|
11
|
+
<library name="byebug (vbundled(11.0.1)) [path][gem]" type="rubylib">
|
12
|
+
<properties>
|
13
|
+
<option name="version" value="4" />
|
14
|
+
</properties>
|
15
|
+
<CLASSES>
|
16
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/exe" />
|
17
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/ext" />
|
18
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/lib" />
|
19
|
+
</CLASSES>
|
20
|
+
<JAVADOC />
|
21
|
+
<SOURCES>
|
22
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/exe" />
|
23
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/ext" />
|
24
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/lib" />
|
25
|
+
</SOURCES>
|
26
|
+
<excluded>
|
27
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/exe" />
|
28
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/ext" />
|
29
|
+
</excluded>
|
30
|
+
</library>
|
31
|
+
</orderEntry>
|
32
|
+
<orderEntry type="module-library">
|
33
|
+
<library name="concurrent-ruby (vbundled(1.1.5)) [path][gem]" type="rubylib">
|
34
|
+
<properties>
|
35
|
+
<option name="version" value="4" />
|
36
|
+
</properties>
|
37
|
+
<CLASSES>
|
38
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/ext" />
|
39
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib" />
|
40
|
+
</CLASSES>
|
41
|
+
<JAVADOC />
|
42
|
+
<SOURCES>
|
43
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/ext" />
|
44
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib" />
|
45
|
+
</SOURCES>
|
46
|
+
<excluded>
|
47
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/ext" />
|
48
|
+
</excluded>
|
49
|
+
</library>
|
50
|
+
</orderEntry>
|
51
|
+
<orderEntry type="module-library">
|
52
|
+
<library name="diff-lcs (vbundled(1.3)) [path][gem]" type="rubylib">
|
53
|
+
<properties>
|
54
|
+
<option name="version" value="4" />
|
55
|
+
</properties>
|
56
|
+
<CLASSES>
|
57
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/bin" />
|
58
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib" />
|
59
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/docs" />
|
60
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec" />
|
61
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/autotest" />
|
62
|
+
</CLASSES>
|
63
|
+
<JAVADOC />
|
64
|
+
<SOURCES>
|
65
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/bin" />
|
66
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib" />
|
67
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/docs" />
|
68
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec" />
|
69
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/autotest" />
|
70
|
+
</SOURCES>
|
71
|
+
<excluded>
|
72
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/bin" />
|
73
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/docs" />
|
74
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec" />
|
75
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/autotest" />
|
76
|
+
</excluded>
|
77
|
+
</library>
|
78
|
+
</orderEntry>
|
79
|
+
<orderEntry type="module-library">
|
80
|
+
<library name="dry-configurable (vbundled(0.8.3)) [path][gem]" type="rubylib">
|
81
|
+
<properties>
|
82
|
+
<option name="version" value="4" />
|
83
|
+
</properties>
|
84
|
+
<CLASSES>
|
85
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-configurable-0.8.3/lib" />
|
86
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-configurable-0.8.3/rakelib" />
|
87
|
+
</CLASSES>
|
88
|
+
<JAVADOC />
|
89
|
+
<SOURCES>
|
90
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-configurable-0.8.3/lib" />
|
91
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-configurable-0.8.3/rakelib" />
|
92
|
+
</SOURCES>
|
93
|
+
<excluded>
|
94
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-configurable-0.8.3/rakelib" />
|
95
|
+
</excluded>
|
96
|
+
</library>
|
97
|
+
</orderEntry>
|
98
|
+
<orderEntry type="module-library">
|
99
|
+
<library name="dry-container (vbundled(0.7.1)) [path][gem]" type="rubylib">
|
100
|
+
<properties>
|
101
|
+
<option name="version" value="4" />
|
102
|
+
</properties>
|
103
|
+
<CLASSES>
|
104
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/lib" />
|
105
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/spec" />
|
106
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/rakelib" />
|
107
|
+
</CLASSES>
|
108
|
+
<JAVADOC />
|
109
|
+
<SOURCES>
|
110
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/lib" />
|
111
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/spec" />
|
112
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/rakelib" />
|
113
|
+
</SOURCES>
|
114
|
+
<excluded>
|
115
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/spec" />
|
116
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-container-0.7.1/rakelib" />
|
117
|
+
</excluded>
|
118
|
+
</library>
|
119
|
+
</orderEntry>
|
120
|
+
<orderEntry type="module-library">
|
121
|
+
<library name="dry-core (vbundled(0.4.8)) [path][gem]" type="rubylib">
|
122
|
+
<properties>
|
123
|
+
<option name="version" value="4" />
|
124
|
+
</properties>
|
125
|
+
<CLASSES>
|
126
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-core-0.4.8/lib" />
|
127
|
+
</CLASSES>
|
128
|
+
<JAVADOC />
|
129
|
+
<SOURCES>
|
130
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-core-0.4.8/lib" />
|
131
|
+
</SOURCES>
|
132
|
+
</library>
|
133
|
+
</orderEntry>
|
134
|
+
<orderEntry type="module-library">
|
135
|
+
<library name="dry-equalizer (vbundled(0.2.2)) [path][gem]" type="rubylib">
|
136
|
+
<properties>
|
137
|
+
<option name="version" value="4" />
|
138
|
+
</properties>
|
139
|
+
<CLASSES>
|
140
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-equalizer-0.2.2/lib" />
|
141
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-equalizer-0.2.2/spec" />
|
142
|
+
</CLASSES>
|
143
|
+
<JAVADOC />
|
144
|
+
<SOURCES>
|
145
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-equalizer-0.2.2/lib" />
|
146
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-equalizer-0.2.2/spec" />
|
147
|
+
</SOURCES>
|
148
|
+
<excluded>
|
149
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-equalizer-0.2.2/spec" />
|
150
|
+
</excluded>
|
151
|
+
</library>
|
152
|
+
</orderEntry>
|
153
|
+
<orderEntry type="module-library">
|
154
|
+
<library name="dry-inflector (vbundled(0.1.2)) [path][gem]" type="rubylib">
|
155
|
+
<properties>
|
156
|
+
<option name="version" value="4" />
|
157
|
+
</properties>
|
158
|
+
<CLASSES>
|
159
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-inflector-0.1.2/lib" />
|
160
|
+
</CLASSES>
|
161
|
+
<JAVADOC />
|
162
|
+
<SOURCES>
|
163
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-inflector-0.1.2/lib" />
|
164
|
+
</SOURCES>
|
165
|
+
</library>
|
166
|
+
</orderEntry>
|
167
|
+
<orderEntry type="module-library">
|
168
|
+
<library name="dry-logic (vbundled(1.0.2)) [path][gem]" type="rubylib">
|
169
|
+
<properties>
|
170
|
+
<option name="version" value="4" />
|
171
|
+
</properties>
|
172
|
+
<CLASSES>
|
173
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/bin" />
|
174
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/lib" />
|
175
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/spec" />
|
176
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/examples" />
|
177
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/benchmarks" />
|
178
|
+
</CLASSES>
|
179
|
+
<JAVADOC />
|
180
|
+
<SOURCES>
|
181
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/bin" />
|
182
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/lib" />
|
183
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/spec" />
|
184
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/examples" />
|
185
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/benchmarks" />
|
186
|
+
</SOURCES>
|
187
|
+
<excluded>
|
188
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/bin" />
|
189
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/spec" />
|
190
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/examples" />
|
191
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-logic-1.0.2/benchmarks" />
|
192
|
+
</excluded>
|
193
|
+
</library>
|
194
|
+
</orderEntry>
|
195
|
+
<orderEntry type="module-library">
|
196
|
+
<library name="dry-struct (vbundled(1.0.0)) [path][gem]" type="rubylib">
|
197
|
+
<properties>
|
198
|
+
<option name="version" value="4" />
|
199
|
+
</properties>
|
200
|
+
<CLASSES>
|
201
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/bin" />
|
202
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/lib" />
|
203
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/log" />
|
204
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/benchmarks" />
|
205
|
+
</CLASSES>
|
206
|
+
<JAVADOC />
|
207
|
+
<SOURCES>
|
208
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/bin" />
|
209
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/lib" />
|
210
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/log" />
|
211
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/benchmarks" />
|
212
|
+
</SOURCES>
|
213
|
+
<excluded>
|
214
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/bin" />
|
215
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/log" />
|
216
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-struct-1.0.0/benchmarks" />
|
217
|
+
</excluded>
|
218
|
+
</library>
|
219
|
+
</orderEntry>
|
220
|
+
<orderEntry type="module-library">
|
221
|
+
<library name="dry-types (vbundled(1.1.0)) [path][gem]" type="rubylib">
|
222
|
+
<properties>
|
223
|
+
<option name="version" value="4" />
|
224
|
+
</properties>
|
225
|
+
<CLASSES>
|
226
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/lib" />
|
227
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/log" />
|
228
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/benchmarks" />
|
229
|
+
</CLASSES>
|
230
|
+
<JAVADOC />
|
231
|
+
<SOURCES>
|
232
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/lib" />
|
233
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/log" />
|
234
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/benchmarks" />
|
235
|
+
</SOURCES>
|
236
|
+
<excluded>
|
237
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/log" />
|
238
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/dry-types-1.1.0/benchmarks" />
|
239
|
+
</excluded>
|
240
|
+
</library>
|
241
|
+
</orderEntry>
|
242
|
+
<orderEntry type="module-library">
|
243
|
+
<library name="ice_nine (vbundled(0.11.2)) [path][gem]" type="rubylib">
|
244
|
+
<properties>
|
245
|
+
<option name="version" value="4" />
|
246
|
+
</properties>
|
247
|
+
<CLASSES>
|
248
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/lib" />
|
249
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/spec" />
|
250
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/config" />
|
251
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/benchmarks" />
|
252
|
+
</CLASSES>
|
253
|
+
<JAVADOC />
|
254
|
+
<SOURCES>
|
255
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/lib" />
|
256
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/spec" />
|
257
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/config" />
|
258
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/benchmarks" />
|
259
|
+
</SOURCES>
|
260
|
+
<excluded>
|
261
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/spec" />
|
262
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/config" />
|
263
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/ice_nine-0.11.2/benchmarks" />
|
264
|
+
</excluded>
|
265
|
+
</library>
|
266
|
+
</orderEntry>
|
267
|
+
<orderEntry type="module-library">
|
268
|
+
<library name="rake (vbundled(10.5.0)) [path][gem]" type="rubylib">
|
269
|
+
<properties>
|
270
|
+
<option name="version" value="4" />
|
271
|
+
</properties>
|
272
|
+
<CLASSES>
|
273
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/bin" />
|
274
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/doc" />
|
275
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/lib" />
|
276
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/test" />
|
277
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/rakelib" />
|
278
|
+
</CLASSES>
|
279
|
+
<JAVADOC />
|
280
|
+
<SOURCES>
|
281
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/bin" />
|
282
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/doc" />
|
283
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/lib" />
|
284
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/test" />
|
285
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/rakelib" />
|
286
|
+
</SOURCES>
|
287
|
+
<excluded>
|
288
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/bin" />
|
289
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/doc" />
|
290
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/test" />
|
291
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rake-10.5.0/rakelib" />
|
292
|
+
</excluded>
|
293
|
+
</library>
|
294
|
+
</orderEntry>
|
295
|
+
<orderEntry type="module-library">
|
296
|
+
<library name="redis (vbundled(4.1.2)) [path][gem]" type="rubylib">
|
297
|
+
<properties>
|
298
|
+
<option name="version" value="4" />
|
299
|
+
</properties>
|
300
|
+
<CLASSES>
|
301
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/redis-4.1.2/lib" />
|
302
|
+
</CLASSES>
|
303
|
+
<JAVADOC />
|
304
|
+
<SOURCES>
|
305
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/redis-4.1.2/lib" />
|
306
|
+
</SOURCES>
|
307
|
+
</library>
|
308
|
+
</orderEntry>
|
309
|
+
<orderEntry type="module-library">
|
310
|
+
<library name="rspec (vbundled(3.8.0)) [path][gem]" type="rubylib">
|
311
|
+
<properties>
|
312
|
+
<option name="version" value="4" />
|
313
|
+
</properties>
|
314
|
+
<CLASSES>
|
315
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-3.8.0/lib" />
|
316
|
+
</CLASSES>
|
317
|
+
<JAVADOC />
|
318
|
+
<SOURCES>
|
319
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-3.8.0/lib" />
|
320
|
+
</SOURCES>
|
321
|
+
</library>
|
322
|
+
</orderEntry>
|
323
|
+
<orderEntry type="module-library">
|
324
|
+
<library name="rspec-core (vbundled(3.8.2)) [path][gem]" type="rubylib">
|
325
|
+
<properties>
|
326
|
+
<option name="version" value="4" />
|
327
|
+
</properties>
|
328
|
+
<CLASSES>
|
329
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.8.2/exe" />
|
330
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.8.2/lib" />
|
331
|
+
</CLASSES>
|
332
|
+
<JAVADOC />
|
333
|
+
<SOURCES>
|
334
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.8.2/exe" />
|
335
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.8.2/lib" />
|
336
|
+
</SOURCES>
|
337
|
+
<excluded>
|
338
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.8.2/exe" />
|
339
|
+
</excluded>
|
340
|
+
</library>
|
341
|
+
</orderEntry>
|
342
|
+
<orderEntry type="module-library">
|
343
|
+
<library name="rspec-expectations (vbundled(3.8.4)) [path][gem]" type="rubylib">
|
344
|
+
<properties>
|
345
|
+
<option name="version" value="4" />
|
346
|
+
</properties>
|
347
|
+
<CLASSES>
|
348
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.8.4/lib" />
|
349
|
+
</CLASSES>
|
350
|
+
<JAVADOC />
|
351
|
+
<SOURCES>
|
352
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.8.4/lib" />
|
353
|
+
</SOURCES>
|
354
|
+
</library>
|
355
|
+
</orderEntry>
|
356
|
+
<orderEntry type="module-library">
|
357
|
+
<library name="rspec-mocks (vbundled(3.8.1)) [path][gem]" type="rubylib">
|
358
|
+
<properties>
|
359
|
+
<option name="version" value="4" />
|
360
|
+
</properties>
|
361
|
+
<CLASSES>
|
362
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.8.1/lib" />
|
363
|
+
</CLASSES>
|
364
|
+
<JAVADOC />
|
365
|
+
<SOURCES>
|
366
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.8.1/lib" />
|
367
|
+
</SOURCES>
|
368
|
+
</library>
|
369
|
+
</orderEntry>
|
370
|
+
<orderEntry type="module-library">
|
371
|
+
<library name="rspec-support (vbundled(3.8.2)) [path][gem]" type="rubylib">
|
372
|
+
<properties>
|
373
|
+
<option name="version" value="4" />
|
374
|
+
</properties>
|
375
|
+
<CLASSES>
|
376
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.8.2/lib" />
|
377
|
+
</CLASSES>
|
378
|
+
<JAVADOC />
|
379
|
+
<SOURCES>
|
380
|
+
<root url="file://$MODULE_DIR$/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.8.2/lib" />
|
381
|
+
</SOURCES>
|
382
|
+
</library>
|
383
|
+
</orderEntry>
|
384
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.0.2, rbenv: 2.6.3) [gem]" level="application" />
|
385
|
+
</component>
|
386
|
+
</module>
|
metadata
ADDED
@@ -0,0 +1,145 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: redis-stream-wrapper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alexandre Del Vecchio
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-07-23 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: '2.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
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: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: redis
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '4.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '4.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: byebug
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: dry-struct
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: A simple Redis stream wrapper written in Ruby
|
98
|
+
email:
|
99
|
+
- alexandre@buyco.co
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- ".rspec"
|
106
|
+
- ".ruby-version"
|
107
|
+
- ".travis.yml"
|
108
|
+
- CODE_OF_CONDUCT.md
|
109
|
+
- Gemfile
|
110
|
+
- Gemfile.lock
|
111
|
+
- LICENSE
|
112
|
+
- README.md
|
113
|
+
- Rakefile
|
114
|
+
- bin/console
|
115
|
+
- bin/setup
|
116
|
+
- lib/redis/stream/wrapper.rb
|
117
|
+
- lib/redis/stream/wrapper/exceptions.rb
|
118
|
+
- lib/redis/stream/wrapper/message.rb
|
119
|
+
- lib/redis/stream/wrapper/version.rb
|
120
|
+
- redis-stream-wrapper.gemspec
|
121
|
+
- redis-stream-wrapper.iml
|
122
|
+
homepage: https://github.com/buyco/redis-stream-wrapper
|
123
|
+
licenses:
|
124
|
+
- MIT
|
125
|
+
metadata: {}
|
126
|
+
post_install_message:
|
127
|
+
rdoc_options: []
|
128
|
+
require_paths:
|
129
|
+
- lib
|
130
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0'
|
135
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
requirements: []
|
141
|
+
rubygems_version: 3.0.3
|
142
|
+
signing_key:
|
143
|
+
specification_version: 4
|
144
|
+
summary: Redis Stream Wrapper
|
145
|
+
test_files: []
|