omail 0.4.3
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/.DS_Store +0 -0
- data/.rspec +2 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +197 -0
- data/LICENSE.txt +21 -0
- data/README.md +46 -0
- data/Rakefile +8 -0
- data/client/macos/Omail Client.dmg +0 -0
- data/lib/generators/omail/install_generator.rb +16 -0
- data/lib/generators/templates/omail.rb +12 -0
- data/lib/omail/core.rb +31 -0
- data/lib/omail/railtie.rb +8 -0
- data/lib/omail/version.rb +5 -0
- data/lib/omail.rb +11 -0
- data/sig/omail.rbs +4 -0
- metadata +92 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 5c5b372982c4f2595971e17f2d0a3d7daf11f25e01e9bb5d0ceef721cfbc1a43
|
|
4
|
+
data.tar.gz: 6289c0b3f1c4f35259965d72152685eac572a8f77694f1ff67b5d167ba0b8d40
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 5cb34884f358efcdef480442b7586dd19cacdeb6ec98a75a0bbbc1f745c29b8cab20532c910a30a1d634c686eade4d24637422fdb3bc91ecb251eee5f2e0e442
|
|
7
|
+
data.tar.gz: 6a022f4ab62ac8d1d4b320e7f4e99bc16f535f0efc0225a1c2ccaec4ef7ea970f497fa0ebcb54ae70ff385eb6531c940974e189b1b64c408a2c5241eab1d0b2f
|
data/.DS_Store
ADDED
|
Binary file
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
omail (0.1.0)
|
|
5
|
+
nokogiri
|
|
6
|
+
railties
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
actioncable (7.0.4.3)
|
|
12
|
+
actionpack (= 7.0.4.3)
|
|
13
|
+
activesupport (= 7.0.4.3)
|
|
14
|
+
nio4r (~> 2.0)
|
|
15
|
+
websocket-driver (>= 0.6.1)
|
|
16
|
+
actionmailbox (7.0.4.3)
|
|
17
|
+
actionpack (= 7.0.4.3)
|
|
18
|
+
activejob (= 7.0.4.3)
|
|
19
|
+
activerecord (= 7.0.4.3)
|
|
20
|
+
activestorage (= 7.0.4.3)
|
|
21
|
+
activesupport (= 7.0.4.3)
|
|
22
|
+
mail (>= 2.7.1)
|
|
23
|
+
net-imap
|
|
24
|
+
net-pop
|
|
25
|
+
net-smtp
|
|
26
|
+
actionmailer (7.0.4.3)
|
|
27
|
+
actionpack (= 7.0.4.3)
|
|
28
|
+
actionview (= 7.0.4.3)
|
|
29
|
+
activejob (= 7.0.4.3)
|
|
30
|
+
activesupport (= 7.0.4.3)
|
|
31
|
+
mail (~> 2.5, >= 2.5.4)
|
|
32
|
+
net-imap
|
|
33
|
+
net-pop
|
|
34
|
+
net-smtp
|
|
35
|
+
rails-dom-testing (~> 2.0)
|
|
36
|
+
actionpack (7.0.4.3)
|
|
37
|
+
actionview (= 7.0.4.3)
|
|
38
|
+
activesupport (= 7.0.4.3)
|
|
39
|
+
rack (~> 2.0, >= 2.2.0)
|
|
40
|
+
rack-test (>= 0.6.3)
|
|
41
|
+
rails-dom-testing (~> 2.0)
|
|
42
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
43
|
+
actiontext (7.0.4.3)
|
|
44
|
+
actionpack (= 7.0.4.3)
|
|
45
|
+
activerecord (= 7.0.4.3)
|
|
46
|
+
activestorage (= 7.0.4.3)
|
|
47
|
+
activesupport (= 7.0.4.3)
|
|
48
|
+
globalid (>= 0.6.0)
|
|
49
|
+
nokogiri (>= 1.8.5)
|
|
50
|
+
actionview (7.0.4.3)
|
|
51
|
+
activesupport (= 7.0.4.3)
|
|
52
|
+
builder (~> 3.1)
|
|
53
|
+
erubi (~> 1.4)
|
|
54
|
+
rails-dom-testing (~> 2.0)
|
|
55
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
56
|
+
activejob (7.0.4.3)
|
|
57
|
+
activesupport (= 7.0.4.3)
|
|
58
|
+
globalid (>= 0.3.6)
|
|
59
|
+
activemodel (7.0.4.3)
|
|
60
|
+
activesupport (= 7.0.4.3)
|
|
61
|
+
activerecord (7.0.4.3)
|
|
62
|
+
activemodel (= 7.0.4.3)
|
|
63
|
+
activesupport (= 7.0.4.3)
|
|
64
|
+
activestorage (7.0.4.3)
|
|
65
|
+
actionpack (= 7.0.4.3)
|
|
66
|
+
activejob (= 7.0.4.3)
|
|
67
|
+
activerecord (= 7.0.4.3)
|
|
68
|
+
activesupport (= 7.0.4.3)
|
|
69
|
+
marcel (~> 1.0)
|
|
70
|
+
mini_mime (>= 1.1.0)
|
|
71
|
+
activesupport (7.0.4.3)
|
|
72
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
73
|
+
i18n (>= 1.6, < 2)
|
|
74
|
+
minitest (>= 5.1)
|
|
75
|
+
tzinfo (~> 2.0)
|
|
76
|
+
ast (2.4.2)
|
|
77
|
+
builder (3.2.4)
|
|
78
|
+
concurrent-ruby (1.2.2)
|
|
79
|
+
crass (1.0.6)
|
|
80
|
+
date (3.3.3)
|
|
81
|
+
diff-lcs (1.5.0)
|
|
82
|
+
erubi (1.12.0)
|
|
83
|
+
globalid (1.1.0)
|
|
84
|
+
activesupport (>= 5.0)
|
|
85
|
+
i18n (1.13.0)
|
|
86
|
+
concurrent-ruby (~> 1.0)
|
|
87
|
+
json (2.6.3)
|
|
88
|
+
loofah (2.21.3)
|
|
89
|
+
crass (~> 1.0.2)
|
|
90
|
+
nokogiri (>= 1.12.0)
|
|
91
|
+
mail (2.8.1)
|
|
92
|
+
mini_mime (>= 0.1.1)
|
|
93
|
+
net-imap
|
|
94
|
+
net-pop
|
|
95
|
+
net-smtp
|
|
96
|
+
marcel (1.0.2)
|
|
97
|
+
method_source (1.0.0)
|
|
98
|
+
mini_mime (1.1.2)
|
|
99
|
+
minitest (5.18.0)
|
|
100
|
+
net-imap (0.3.4)
|
|
101
|
+
date
|
|
102
|
+
net-protocol
|
|
103
|
+
net-pop (0.1.2)
|
|
104
|
+
net-protocol
|
|
105
|
+
net-protocol (0.2.1)
|
|
106
|
+
timeout
|
|
107
|
+
net-smtp (0.3.3)
|
|
108
|
+
net-protocol
|
|
109
|
+
nio4r (2.5.9)
|
|
110
|
+
nokogiri (1.15.1-arm64-darwin)
|
|
111
|
+
racc (~> 1.4)
|
|
112
|
+
parallel (1.23.0)
|
|
113
|
+
parser (3.2.2.1)
|
|
114
|
+
ast (~> 2.4.1)
|
|
115
|
+
racc (1.6.2)
|
|
116
|
+
rack (2.2.7)
|
|
117
|
+
rack-test (2.1.0)
|
|
118
|
+
rack (>= 1.3)
|
|
119
|
+
rails (7.0.4.3)
|
|
120
|
+
actioncable (= 7.0.4.3)
|
|
121
|
+
actionmailbox (= 7.0.4.3)
|
|
122
|
+
actionmailer (= 7.0.4.3)
|
|
123
|
+
actionpack (= 7.0.4.3)
|
|
124
|
+
actiontext (= 7.0.4.3)
|
|
125
|
+
actionview (= 7.0.4.3)
|
|
126
|
+
activejob (= 7.0.4.3)
|
|
127
|
+
activemodel (= 7.0.4.3)
|
|
128
|
+
activerecord (= 7.0.4.3)
|
|
129
|
+
activestorage (= 7.0.4.3)
|
|
130
|
+
activesupport (= 7.0.4.3)
|
|
131
|
+
bundler (>= 1.15.0)
|
|
132
|
+
railties (= 7.0.4.3)
|
|
133
|
+
rails-dom-testing (2.0.3)
|
|
134
|
+
activesupport (>= 4.2.0)
|
|
135
|
+
nokogiri (>= 1.6)
|
|
136
|
+
rails-html-sanitizer (1.5.0)
|
|
137
|
+
loofah (~> 2.19, >= 2.19.1)
|
|
138
|
+
railties (7.0.4.3)
|
|
139
|
+
actionpack (= 7.0.4.3)
|
|
140
|
+
activesupport (= 7.0.4.3)
|
|
141
|
+
method_source
|
|
142
|
+
rake (>= 12.2)
|
|
143
|
+
thor (~> 1.0)
|
|
144
|
+
zeitwerk (~> 2.5)
|
|
145
|
+
rainbow (3.1.1)
|
|
146
|
+
rake (13.0.6)
|
|
147
|
+
regexp_parser (2.8.0)
|
|
148
|
+
rexml (3.2.5)
|
|
149
|
+
rspec (3.12.0)
|
|
150
|
+
rspec-core (~> 3.12.0)
|
|
151
|
+
rspec-expectations (~> 3.12.0)
|
|
152
|
+
rspec-mocks (~> 3.12.0)
|
|
153
|
+
rspec-core (3.12.2)
|
|
154
|
+
rspec-support (~> 3.12.0)
|
|
155
|
+
rspec-expectations (3.12.3)
|
|
156
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
157
|
+
rspec-support (~> 3.12.0)
|
|
158
|
+
rspec-mocks (3.12.5)
|
|
159
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
160
|
+
rspec-support (~> 3.12.0)
|
|
161
|
+
rspec-support (3.12.0)
|
|
162
|
+
rubocop (1.51.0)
|
|
163
|
+
json (~> 2.3)
|
|
164
|
+
parallel (~> 1.10)
|
|
165
|
+
parser (>= 3.2.0.0)
|
|
166
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
167
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
168
|
+
rexml (>= 3.2.5, < 4.0)
|
|
169
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
|
170
|
+
ruby-progressbar (~> 1.7)
|
|
171
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
|
172
|
+
rubocop-ast (1.28.1)
|
|
173
|
+
parser (>= 3.2.1.0)
|
|
174
|
+
ruby-progressbar (1.13.0)
|
|
175
|
+
thor (1.2.2)
|
|
176
|
+
timeout (0.3.2)
|
|
177
|
+
tzinfo (2.0.6)
|
|
178
|
+
concurrent-ruby (~> 1.0)
|
|
179
|
+
unicode-display_width (2.4.2)
|
|
180
|
+
websocket-driver (0.7.5)
|
|
181
|
+
websocket-extensions (>= 0.1.0)
|
|
182
|
+
websocket-extensions (0.1.5)
|
|
183
|
+
zeitwerk (2.6.8)
|
|
184
|
+
|
|
185
|
+
PLATFORMS
|
|
186
|
+
arm64-darwin-22
|
|
187
|
+
|
|
188
|
+
DEPENDENCIES
|
|
189
|
+
omail!
|
|
190
|
+
rails
|
|
191
|
+
rake (~> 13.0)
|
|
192
|
+
rspec
|
|
193
|
+
rspec-core
|
|
194
|
+
rubocop (~> 1.21)
|
|
195
|
+
|
|
196
|
+
BUNDLED WITH
|
|
197
|
+
2.3.25
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 code salley
|
|
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,46 @@
|
|
|
1
|
+
# Omail
|
|
2
|
+
|
|
3
|
+
Rails development mail intercepter. This gem intercept all your emails and save them in a dir for previewing. No need to get confirmation emails sent out for confirmation in development. Mails can be access easily with a desktop client
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
Install the gem and add to the application's Gemfile by executing:
|
|
9
|
+
|
|
10
|
+
$ bundle add omail
|
|
11
|
+
|
|
12
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
|
13
|
+
|
|
14
|
+
$ gem install omail
|
|
15
|
+
|
|
16
|
+
and `initialize` using
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
$ rails generator omail:install
|
|
20
|
+
|
|
21
|
+
this adds `config/initializers/omail.rb` and `config/initializers/omail.rb` to `.gitignore`
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
After install gem, download a client desktop appfor your operating system
|
|
26
|
+
|
|
27
|
+
[[ Macos ]](https://github.com/codesalley/omail/blob/main/client/macos/Omail%20Client.dmg)
|
|
28
|
+
|
|
29
|
+
[[Windows]](#)
|
|
30
|
+
|
|
31
|
+
[[Linux]](#)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## Development
|
|
35
|
+
|
|
36
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake respec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
37
|
+
|
|
38
|
+
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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
39
|
+
|
|
40
|
+
## Contributing
|
|
41
|
+
|
|
42
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/codesalley/omail.
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
|
Binary file
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "rails/generators/base"
|
|
4
|
+
|
|
5
|
+
module Omail
|
|
6
|
+
# install generator class to add initializer file
|
|
7
|
+
class InstallGenerator < Rails::Generators::Base
|
|
8
|
+
source_root File.expand_path("../templates", __dir__)
|
|
9
|
+
|
|
10
|
+
def copy_initializer
|
|
11
|
+
say "copying initializer", :green
|
|
12
|
+
template("omail.rb", "config/initializers/omail.rb")
|
|
13
|
+
append_to_file ".gitignore", "config/initializers/omail.rb\n"
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Omail
|
|
4
|
+
# class to append to rails mail intercepter
|
|
5
|
+
class EmailInterceptor
|
|
6
|
+
def self.delivering_email(message)
|
|
7
|
+
app_name = Rails.application.class.module_parent_name || Rails.application.class.parent_name
|
|
8
|
+
Omail.to_mailbox(message, app_name)
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
ActionMailer::Base.register_interceptor(Omail::EmailInterceptor) if Rails.env.development?
|
data/lib/omail/core.rb
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "fileutils"
|
|
4
|
+
|
|
5
|
+
# Omail module
|
|
6
|
+
module Omail
|
|
7
|
+
class << self
|
|
8
|
+
def to_mailbox(mail, appname)
|
|
9
|
+
filename = "#{mail.to.first}-#{Time.now.to_i}_#{SecureRandom.hex(6)}.html"
|
|
10
|
+
|
|
11
|
+
File.open(base_directory(appname.downcase, filename), "w") do |file|
|
|
12
|
+
if mail.html_part
|
|
13
|
+
file.write(mail.html_part.body.to_s)
|
|
14
|
+
else
|
|
15
|
+
file.write(mail.body.to_s)
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
private
|
|
21
|
+
|
|
22
|
+
def base_directory(appname, filename)
|
|
23
|
+
default_directory = Dir.home
|
|
24
|
+
app_directory = File.join(default_directory, ".mailbox", appname)
|
|
25
|
+
|
|
26
|
+
FileUtils.mkdir_p(app_directory) unless Dir.exist?(app_directory)
|
|
27
|
+
|
|
28
|
+
File.join app_directory, filename
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
data/lib/omail.rb
ADDED
data/sig/omail.rbs
ADDED
metadata
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: omail
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.4.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- code salley
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2023-05-28 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: nokogiri
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: railties
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: https://github.com/codesalley/omail
|
|
42
|
+
email:
|
|
43
|
+
- codesalley@gmail.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- ".DS_Store"
|
|
49
|
+
- ".rspec"
|
|
50
|
+
- ".rubocop.yml"
|
|
51
|
+
- CHANGELOG.md
|
|
52
|
+
- Gemfile
|
|
53
|
+
- Gemfile.lock
|
|
54
|
+
- LICENSE.txt
|
|
55
|
+
- README.md
|
|
56
|
+
- Rakefile
|
|
57
|
+
- client/macos/Omail Client.dmg
|
|
58
|
+
- lib/generators/omail/install_generator.rb
|
|
59
|
+
- lib/generators/templates/omail.rb
|
|
60
|
+
- lib/omail.rb
|
|
61
|
+
- lib/omail/core.rb
|
|
62
|
+
- lib/omail/railtie.rb
|
|
63
|
+
- lib/omail/version.rb
|
|
64
|
+
- sig/omail.rbs
|
|
65
|
+
homepage: https://github.com/codesalley/omail
|
|
66
|
+
licenses:
|
|
67
|
+
- MIT
|
|
68
|
+
metadata:
|
|
69
|
+
homepage_uri: https://github.com/codesalley/omail
|
|
70
|
+
source_code_uri: https://github.com/codesalley/omail
|
|
71
|
+
changelog_uri: https://github.com/codesalley/omail
|
|
72
|
+
github_repo: https://github.com/codesalley/omail
|
|
73
|
+
post_install_message:
|
|
74
|
+
rdoc_options: []
|
|
75
|
+
require_paths:
|
|
76
|
+
- lib
|
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: 2.6.0
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - ">="
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: '0'
|
|
87
|
+
requirements: []
|
|
88
|
+
rubygems_version: 3.0.1
|
|
89
|
+
signing_key:
|
|
90
|
+
specification_version: 4
|
|
91
|
+
summary: working
|
|
92
|
+
test_files: []
|