sequenced 3.2.0 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +100 -0
- data/Appraisals +19 -0
- data/CHANGELOG.md +10 -2
- data/Gemfile +8 -5
- data/README.md +1 -1
- data/Rakefile +18 -18
- data/gemfiles/rails_5_2.gemfile +17 -0
- data/gemfiles/rails_5_2.gemfile.lock +193 -0
- data/gemfiles/rails_6.gemfile +17 -0
- data/gemfiles/rails_6.gemfile.lock +204 -0
- data/gemfiles/rails_6_1.gemfile +17 -0
- data/gemfiles/rails_6_1.gemfile.lock +207 -0
- data/gemfiles/rails_7.gemfile +17 -0
- data/gemfiles/rails_7.gemfile.lock +206 -0
- data/gemfiles/rails_master.gemfile +17 -0
- data/gemfiles/rails_master.gemfile.lock +215 -0
- data/lib/sequenced/acts_as_sequenced.rb +3 -3
- data/lib/sequenced/generator.rb +11 -9
- data/lib/sequenced/version.rb +1 -1
- data/lib/sequenced.rb +5 -3
- data/sequenced.gemspec +7 -7
- metadata +18 -8
- data/.travis.yml +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac1653ef8238785f146ca84e84e967e36d3c7606ce7a0f51bceb9d78103c2b6c
|
4
|
+
data.tar.gz: 57858eab7e36ca6e02ec5f823ef75873284f5841be580629665ce986d7283067
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efc18dd491c36c4c2cc0b5057fb91b4cfde57647ada400d6a3f05bd3726eebe4cc0c62e67a24bf533618339f32a7cd149c38c9eee384a629871b58293a4e4c18
|
7
|
+
data.tar.gz: 3fcd11391e68b818818f76178cfdebb9fe6abac44ee104ef0b53351396497840ac5d914485f0b511ae87b0c891c0dfe9435f406e0d9c1399fe0c72f577226328
|
@@ -0,0 +1,100 @@
|
|
1
|
+
name: Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches:
|
6
|
+
- '*'
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
jobs:
|
11
|
+
sqlite:
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
strategy:
|
14
|
+
matrix:
|
15
|
+
ruby: ['2.7', '3.0', '3.1']
|
16
|
+
gemfile:
|
17
|
+
- rails_5_2
|
18
|
+
- rails_6
|
19
|
+
- rails_6_1
|
20
|
+
- rails_7
|
21
|
+
- rails_master
|
22
|
+
exclude:
|
23
|
+
- ruby: '3.0'
|
24
|
+
gemfile: 'rails_5_2'
|
25
|
+
- ruby: '3.1'
|
26
|
+
gemfile: 'rails_5_2'
|
27
|
+
env:
|
28
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
29
|
+
BUNDLE_PATH_RELATIVE_TO_CWD: true
|
30
|
+
|
31
|
+
steps:
|
32
|
+
- uses: actions/checkout@master
|
33
|
+
|
34
|
+
- name: Set up Ruby
|
35
|
+
uses: ruby/setup-ruby@v1
|
36
|
+
with:
|
37
|
+
ruby-version: ${{ matrix.ruby }}
|
38
|
+
bundler: default
|
39
|
+
bundler-cache: true
|
40
|
+
|
41
|
+
- name: StandardRb check
|
42
|
+
run: bundle exec standardrb
|
43
|
+
|
44
|
+
- name: Run tests
|
45
|
+
env:
|
46
|
+
DATABASE_URL: "sqlite3:test"
|
47
|
+
RAILS_ENV: test
|
48
|
+
run: |
|
49
|
+
bundle exec rails db:test:prepare
|
50
|
+
bundle exec rails test
|
51
|
+
|
52
|
+
postgres:
|
53
|
+
runs-on: ubuntu-latest
|
54
|
+
strategy:
|
55
|
+
matrix:
|
56
|
+
ruby: ['2.7', '3.0', '3.1']
|
57
|
+
gemfile:
|
58
|
+
- rails_5_2
|
59
|
+
- rails_6
|
60
|
+
- rails_6_1
|
61
|
+
- rails_7
|
62
|
+
- rails_master
|
63
|
+
exclude:
|
64
|
+
- ruby: '3.0'
|
65
|
+
gemfile: 'rails_5_2'
|
66
|
+
- ruby: '3.1'
|
67
|
+
gemfile: 'rails_5_2'
|
68
|
+
env:
|
69
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
70
|
+
BUNDLE_PATH_RELATIVE_TO_CWD: true
|
71
|
+
|
72
|
+
services:
|
73
|
+
postgres:
|
74
|
+
image: postgres:12
|
75
|
+
env:
|
76
|
+
POSTGRES_USER: postgres
|
77
|
+
POSTGRES_PASSWORD: password
|
78
|
+
POSTGRES_DB: test
|
79
|
+
ports: ['5432:5432']
|
80
|
+
|
81
|
+
steps:
|
82
|
+
- uses: actions/checkout@master
|
83
|
+
|
84
|
+
- name: Set up Ruby
|
85
|
+
uses: ruby/setup-ruby@v1
|
86
|
+
with:
|
87
|
+
ruby-version: ${{ matrix.ruby }}
|
88
|
+
bundler: default
|
89
|
+
bundler-cache: true
|
90
|
+
|
91
|
+
- name: StandardRb check
|
92
|
+
run: bundle exec standardrb
|
93
|
+
|
94
|
+
- name: Run tests
|
95
|
+
env:
|
96
|
+
DATABASE_URL: postgres://postgres:password@localhost:5432/test
|
97
|
+
RAILS_ENV: test
|
98
|
+
run: |
|
99
|
+
bundle exec rails db:test:prepare
|
100
|
+
bundle exec rails test
|
data/Appraisals
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
appraise "rails-5-2" do
|
2
|
+
gem "rails", "~> 5.2.0"
|
3
|
+
end
|
4
|
+
|
5
|
+
appraise "rails-6" do
|
6
|
+
gem "rails", "~> 6.0.0"
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise "rails-6-1" do
|
10
|
+
gem "rails", "~> 6.1.0"
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise "rails-7" do
|
14
|
+
gem "rails", "~> 7.0.0"
|
15
|
+
end
|
16
|
+
|
17
|
+
appraise "rails-master" do
|
18
|
+
gem "rails", github: "rails/rails", branch: "main"
|
19
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,16 @@
|
|
1
|
+
4.0.0 (August 16, 2022)
|
2
|
+
------------------------
|
3
|
+
|
4
|
+
* Drop official support Ruby 2.6 or older
|
5
|
+
* Drop official support Rails 5.1 or older
|
6
|
+
* Migrate from Travis CI to GitHub Actions
|
7
|
+
* Include Sequenced when ActiveRecord loads ([#52](https://github.com/derrickreimer/sequenced/pull/52))
|
8
|
+
|
1
9
|
3.2.0 (January 29, 2020)
|
2
10
|
------------------------
|
3
11
|
|
4
|
-
* Support non-default primary key columns (set via `primary_key=`) (#41)
|
5
|
-
* Fix issue with Postgres adapter check when using a subclassed adapter (#42)
|
12
|
+
* Support non-default primary key columns (set via `primary_key=`) ([#41](https://github.com/derrickreimer/sequenced/pull/41))
|
13
|
+
* Fix issue with Postgres adapter check when using a subclassed adapter ([#42](https://github.com/derrickreimer/sequenced/pull/42))
|
6
14
|
|
7
15
|
3.1.1 (January 30, 2016)
|
8
16
|
-------------------------
|
data/Gemfile
CHANGED
@@ -1,17 +1,20 @@
|
|
1
|
-
source "
|
1
|
+
source "https://rubygems.org"
|
2
2
|
|
3
3
|
# Declare your gem's dependencies in sequenced.gemspec.
|
4
4
|
# Bundler will treat runtime dependencies like base dependencies, and
|
5
5
|
# development dependencies will be added by default to the :development group.
|
6
6
|
gemspec
|
7
7
|
|
8
|
-
|
9
|
-
gem "
|
8
|
+
gem "appraisal"
|
9
|
+
gem "standardrb"
|
10
10
|
|
11
11
|
group :development, :test do
|
12
|
-
gem
|
12
|
+
gem "sqlite3", "~> 1.4.4"
|
13
13
|
# gem 'mysql2'
|
14
|
-
gem
|
14
|
+
gem "pg"
|
15
|
+
gem "net-imap"
|
16
|
+
gem "net-pop"
|
17
|
+
gem "net-smtp"
|
15
18
|
end
|
16
19
|
|
17
20
|
# Declare any dependencies that are still in development here instead of in
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Sequenced
|
2
2
|
|
3
|
-
[![
|
3
|
+
[![.github/workflows/ci.yml](https://github.com/derrickreimer/sequenced/actions/workflows/ci.yml/badge.svg)](https://github.com/derrickreimer/sequenced/actions/workflows/ci.yml)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/djreimer/sequenced.svg)](https://codeclimate.com/github/djreimer/sequenced)
|
5
5
|
[![Gem Version](https://badge.fury.io/rb/sequenced.svg)](http://badge.fury.io/rb/sequenced)
|
6
6
|
|
data/Rakefile
CHANGED
@@ -1,49 +1,49 @@
|
|
1
1
|
#!/usr/bin/env rake
|
2
2
|
begin
|
3
|
-
require
|
3
|
+
require "bundler/setup"
|
4
4
|
rescue LoadError
|
5
|
-
puts
|
5
|
+
puts "You must `gem install bundler` and `bundle install` to run rake tasks"
|
6
6
|
end
|
7
7
|
begin
|
8
|
-
require
|
8
|
+
require "rdoc/task"
|
9
9
|
rescue LoadError
|
10
|
-
require
|
11
|
-
require
|
10
|
+
require "rdoc/rdoc"
|
11
|
+
require "rake/rdoctask"
|
12
12
|
RDoc::Task = Rake::RDocTask
|
13
13
|
end
|
14
14
|
|
15
15
|
RDoc::Task.new(:rdoc) do |rdoc|
|
16
|
-
rdoc.rdoc_dir =
|
17
|
-
rdoc.title
|
18
|
-
rdoc.options <<
|
19
|
-
rdoc.rdoc_files.include(
|
20
|
-
rdoc.rdoc_files.include(
|
16
|
+
rdoc.rdoc_dir = "rdoc"
|
17
|
+
rdoc.title = "Sequenced"
|
18
|
+
rdoc.options << "--line-numbers"
|
19
|
+
rdoc.rdoc_files.include("README.rdoc")
|
20
|
+
rdoc.rdoc_files.include("lib/**/*.rb")
|
21
21
|
end
|
22
22
|
|
23
23
|
Bundler::GemHelper.install_tasks
|
24
24
|
|
25
|
-
require
|
25
|
+
require "rake/testtask"
|
26
26
|
|
27
27
|
Rake::TestTask.new(:test) do |t|
|
28
|
-
t.libs <<
|
29
|
-
t.libs <<
|
30
|
-
t.pattern =
|
28
|
+
t.libs << "lib"
|
29
|
+
t.libs << "test"
|
30
|
+
t.pattern = "test/**/*_test.rb"
|
31
31
|
t.verbose = false
|
32
32
|
end
|
33
33
|
|
34
|
-
task :
|
34
|
+
task default: :test
|
35
35
|
|
36
36
|
namespace :db do
|
37
37
|
task :create do
|
38
38
|
# File.expand_path is executed directory of generated Rails app
|
39
|
-
rakefile = File.expand_path(
|
39
|
+
rakefile = File.expand_path("Rakefile", "test/dummy/")
|
40
40
|
command = "rake -f '%s' db:create" % rakefile
|
41
41
|
sh(command)
|
42
42
|
end
|
43
43
|
|
44
44
|
task :drop do
|
45
45
|
# File.expand_path is executed directory of generated Rails app
|
46
|
-
rakefile = File.expand_path(
|
46
|
+
rakefile = File.expand_path("Rakefile", "test/dummy/")
|
47
47
|
command = "rake -f '%s' db:drop" % rakefile
|
48
48
|
sh(command)
|
49
49
|
end
|
@@ -51,7 +51,7 @@ namespace :db do
|
|
51
51
|
namespace :test do
|
52
52
|
task :prepare do
|
53
53
|
# File.expand_path is executed directory of generated Rails app
|
54
|
-
rakefile = File.expand_path(
|
54
|
+
rakefile = File.expand_path("Rakefile", "test/dummy/")
|
55
55
|
command = "rake -f '%s' db:test:prepare" % rakefile
|
56
56
|
sh(command)
|
57
57
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal"
|
6
|
+
gem "standardrb"
|
7
|
+
gem "rails", "~> 5.2.0"
|
8
|
+
|
9
|
+
group :development, :test do
|
10
|
+
gem "sqlite3", "~> 1.4.4"
|
11
|
+
gem "pg"
|
12
|
+
gem "net-imap"
|
13
|
+
gem "net-pop"
|
14
|
+
gem "net-smtp"
|
15
|
+
end
|
16
|
+
|
17
|
+
gemspec path: "../"
|
@@ -0,0 +1,193 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sequenced (4.0.0)
|
5
|
+
activerecord (>= 3.0)
|
6
|
+
activesupport (>= 3.0)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (5.2.8.1)
|
12
|
+
actionpack (= 5.2.8.1)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
actionmailer (5.2.8.1)
|
16
|
+
actionpack (= 5.2.8.1)
|
17
|
+
actionview (= 5.2.8.1)
|
18
|
+
activejob (= 5.2.8.1)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (5.2.8.1)
|
22
|
+
actionview (= 5.2.8.1)
|
23
|
+
activesupport (= 5.2.8.1)
|
24
|
+
rack (~> 2.0, >= 2.0.8)
|
25
|
+
rack-test (>= 0.6.3)
|
26
|
+
rails-dom-testing (~> 2.0)
|
27
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
+
actionview (5.2.8.1)
|
29
|
+
activesupport (= 5.2.8.1)
|
30
|
+
builder (~> 3.1)
|
31
|
+
erubi (~> 1.4)
|
32
|
+
rails-dom-testing (~> 2.0)
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
+
activejob (5.2.8.1)
|
35
|
+
activesupport (= 5.2.8.1)
|
36
|
+
globalid (>= 0.3.6)
|
37
|
+
activemodel (5.2.8.1)
|
38
|
+
activesupport (= 5.2.8.1)
|
39
|
+
activerecord (5.2.8.1)
|
40
|
+
activemodel (= 5.2.8.1)
|
41
|
+
activesupport (= 5.2.8.1)
|
42
|
+
arel (>= 9.0)
|
43
|
+
activestorage (5.2.8.1)
|
44
|
+
actionpack (= 5.2.8.1)
|
45
|
+
activerecord (= 5.2.8.1)
|
46
|
+
marcel (~> 1.0.0)
|
47
|
+
activesupport (5.2.8.1)
|
48
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
+
i18n (>= 0.7, < 2)
|
50
|
+
minitest (~> 5.1)
|
51
|
+
tzinfo (~> 1.1)
|
52
|
+
appraisal (2.4.1)
|
53
|
+
bundler
|
54
|
+
rake
|
55
|
+
thor (>= 0.14.0)
|
56
|
+
arel (9.0.0)
|
57
|
+
ast (2.4.2)
|
58
|
+
builder (3.2.4)
|
59
|
+
concurrent-ruby (1.1.10)
|
60
|
+
crass (1.0.6)
|
61
|
+
digest (3.1.0)
|
62
|
+
erubi (1.11.0)
|
63
|
+
globalid (1.0.0)
|
64
|
+
activesupport (>= 5.0)
|
65
|
+
i18n (1.12.0)
|
66
|
+
concurrent-ruby (~> 1.0)
|
67
|
+
json (2.6.2)
|
68
|
+
loofah (2.18.0)
|
69
|
+
crass (~> 1.0.2)
|
70
|
+
nokogiri (>= 1.5.9)
|
71
|
+
mail (2.7.1)
|
72
|
+
mini_mime (>= 0.1.1)
|
73
|
+
marcel (1.0.2)
|
74
|
+
method_source (1.0.0)
|
75
|
+
mini_mime (1.1.2)
|
76
|
+
mini_portile2 (2.8.0)
|
77
|
+
minitest (5.16.2)
|
78
|
+
net-imap (0.2.3)
|
79
|
+
digest
|
80
|
+
net-protocol
|
81
|
+
strscan
|
82
|
+
net-pop (0.1.1)
|
83
|
+
digest
|
84
|
+
net-protocol
|
85
|
+
timeout
|
86
|
+
net-protocol (0.1.3)
|
87
|
+
timeout
|
88
|
+
net-smtp (0.3.1)
|
89
|
+
digest
|
90
|
+
net-protocol
|
91
|
+
timeout
|
92
|
+
nio4r (2.5.8)
|
93
|
+
nokogiri (1.13.8)
|
94
|
+
mini_portile2 (~> 2.8.0)
|
95
|
+
racc (~> 1.4)
|
96
|
+
nokogiri (1.13.8-arm64-darwin)
|
97
|
+
racc (~> 1.4)
|
98
|
+
nokogiri (1.13.8-x86_64-linux)
|
99
|
+
racc (~> 1.4)
|
100
|
+
parallel (1.22.1)
|
101
|
+
parser (3.1.2.1)
|
102
|
+
ast (~> 2.4.1)
|
103
|
+
pg (1.4.3)
|
104
|
+
racc (1.6.0)
|
105
|
+
rack (2.2.4)
|
106
|
+
rack-test (2.0.2)
|
107
|
+
rack (>= 1.3)
|
108
|
+
rails (5.2.8.1)
|
109
|
+
actioncable (= 5.2.8.1)
|
110
|
+
actionmailer (= 5.2.8.1)
|
111
|
+
actionpack (= 5.2.8.1)
|
112
|
+
actionview (= 5.2.8.1)
|
113
|
+
activejob (= 5.2.8.1)
|
114
|
+
activemodel (= 5.2.8.1)
|
115
|
+
activerecord (= 5.2.8.1)
|
116
|
+
activestorage (= 5.2.8.1)
|
117
|
+
activesupport (= 5.2.8.1)
|
118
|
+
bundler (>= 1.3.0)
|
119
|
+
railties (= 5.2.8.1)
|
120
|
+
sprockets-rails (>= 2.0.0)
|
121
|
+
rails-dom-testing (2.0.3)
|
122
|
+
activesupport (>= 4.2.0)
|
123
|
+
nokogiri (>= 1.6)
|
124
|
+
rails-html-sanitizer (1.4.3)
|
125
|
+
loofah (~> 2.3)
|
126
|
+
railties (5.2.8.1)
|
127
|
+
actionpack (= 5.2.8.1)
|
128
|
+
activesupport (= 5.2.8.1)
|
129
|
+
method_source
|
130
|
+
rake (>= 0.8.7)
|
131
|
+
thor (>= 0.19.0, < 2.0)
|
132
|
+
rainbow (3.1.1)
|
133
|
+
rake (13.0.6)
|
134
|
+
regexp_parser (2.5.0)
|
135
|
+
rexml (3.2.5)
|
136
|
+
rubocop (1.35.0)
|
137
|
+
json (~> 2.3)
|
138
|
+
parallel (~> 1.10)
|
139
|
+
parser (>= 3.1.2.1)
|
140
|
+
rainbow (>= 2.2.2, < 4.0)
|
141
|
+
regexp_parser (>= 1.8, < 3.0)
|
142
|
+
rexml (>= 3.2.5, < 4.0)
|
143
|
+
rubocop-ast (>= 1.20.1, < 2.0)
|
144
|
+
ruby-progressbar (~> 1.7)
|
145
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
146
|
+
rubocop-ast (1.21.0)
|
147
|
+
parser (>= 3.1.1.0)
|
148
|
+
rubocop-performance (1.14.3)
|
149
|
+
rubocop (>= 1.7.0, < 2.0)
|
150
|
+
rubocop-ast (>= 0.4.0)
|
151
|
+
ruby-progressbar (1.11.0)
|
152
|
+
sprockets (4.1.1)
|
153
|
+
concurrent-ruby (~> 1.0)
|
154
|
+
rack (> 1, < 3)
|
155
|
+
sprockets-rails (3.4.2)
|
156
|
+
actionpack (>= 5.2)
|
157
|
+
activesupport (>= 5.2)
|
158
|
+
sprockets (>= 3.0.0)
|
159
|
+
sqlite3 (1.4.4)
|
160
|
+
standard (1.16.0)
|
161
|
+
rubocop (= 1.35.0)
|
162
|
+
rubocop-performance (= 1.14.3)
|
163
|
+
standardrb (1.0.1)
|
164
|
+
standard
|
165
|
+
strscan (3.0.4)
|
166
|
+
thor (1.2.1)
|
167
|
+
thread_safe (0.3.6)
|
168
|
+
timeout (0.3.0)
|
169
|
+
tzinfo (1.2.10)
|
170
|
+
thread_safe (~> 0.1)
|
171
|
+
unicode-display_width (2.2.0)
|
172
|
+
websocket-driver (0.7.5)
|
173
|
+
websocket-extensions (>= 0.1.0)
|
174
|
+
websocket-extensions (0.1.5)
|
175
|
+
|
176
|
+
PLATFORMS
|
177
|
+
arm64-darwin-21
|
178
|
+
ruby
|
179
|
+
x86_64-linux
|
180
|
+
|
181
|
+
DEPENDENCIES
|
182
|
+
appraisal
|
183
|
+
net-imap
|
184
|
+
net-pop
|
185
|
+
net-smtp
|
186
|
+
pg
|
187
|
+
rails (~> 5.2.0)
|
188
|
+
sequenced!
|
189
|
+
sqlite3 (~> 1.4.4)
|
190
|
+
standardrb
|
191
|
+
|
192
|
+
BUNDLED WITH
|
193
|
+
2.3.16
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal"
|
6
|
+
gem "standardrb"
|
7
|
+
gem "rails", "~> 6.0.0"
|
8
|
+
|
9
|
+
group :development, :test do
|
10
|
+
gem "sqlite3", "~> 1.4.4"
|
11
|
+
gem "pg"
|
12
|
+
gem "net-imap"
|
13
|
+
gem "net-pop"
|
14
|
+
gem "net-smtp"
|
15
|
+
end
|
16
|
+
|
17
|
+
gemspec path: "../"
|
@@ -0,0 +1,204 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sequenced (4.0.0)
|
5
|
+
activerecord (>= 3.0)
|
6
|
+
activesupport (>= 3.0)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (6.0.5.1)
|
12
|
+
actionpack (= 6.0.5.1)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
actionmailbox (6.0.5.1)
|
16
|
+
actionpack (= 6.0.5.1)
|
17
|
+
activejob (= 6.0.5.1)
|
18
|
+
activerecord (= 6.0.5.1)
|
19
|
+
activestorage (= 6.0.5.1)
|
20
|
+
activesupport (= 6.0.5.1)
|
21
|
+
mail (>= 2.7.1)
|
22
|
+
actionmailer (6.0.5.1)
|
23
|
+
actionpack (= 6.0.5.1)
|
24
|
+
actionview (= 6.0.5.1)
|
25
|
+
activejob (= 6.0.5.1)
|
26
|
+
mail (~> 2.5, >= 2.5.4)
|
27
|
+
rails-dom-testing (~> 2.0)
|
28
|
+
actionpack (6.0.5.1)
|
29
|
+
actionview (= 6.0.5.1)
|
30
|
+
activesupport (= 6.0.5.1)
|
31
|
+
rack (~> 2.0, >= 2.0.8)
|
32
|
+
rack-test (>= 0.6.3)
|
33
|
+
rails-dom-testing (~> 2.0)
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
35
|
+
actiontext (6.0.5.1)
|
36
|
+
actionpack (= 6.0.5.1)
|
37
|
+
activerecord (= 6.0.5.1)
|
38
|
+
activestorage (= 6.0.5.1)
|
39
|
+
activesupport (= 6.0.5.1)
|
40
|
+
nokogiri (>= 1.8.5)
|
41
|
+
actionview (6.0.5.1)
|
42
|
+
activesupport (= 6.0.5.1)
|
43
|
+
builder (~> 3.1)
|
44
|
+
erubi (~> 1.4)
|
45
|
+
rails-dom-testing (~> 2.0)
|
46
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
47
|
+
activejob (6.0.5.1)
|
48
|
+
activesupport (= 6.0.5.1)
|
49
|
+
globalid (>= 0.3.6)
|
50
|
+
activemodel (6.0.5.1)
|
51
|
+
activesupport (= 6.0.5.1)
|
52
|
+
activerecord (6.0.5.1)
|
53
|
+
activemodel (= 6.0.5.1)
|
54
|
+
activesupport (= 6.0.5.1)
|
55
|
+
activestorage (6.0.5.1)
|
56
|
+
actionpack (= 6.0.5.1)
|
57
|
+
activejob (= 6.0.5.1)
|
58
|
+
activerecord (= 6.0.5.1)
|
59
|
+
marcel (~> 1.0)
|
60
|
+
activesupport (6.0.5.1)
|
61
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
62
|
+
i18n (>= 0.7, < 2)
|
63
|
+
minitest (~> 5.1)
|
64
|
+
tzinfo (~> 1.1)
|
65
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
66
|
+
appraisal (2.4.1)
|
67
|
+
bundler
|
68
|
+
rake
|
69
|
+
thor (>= 0.14.0)
|
70
|
+
ast (2.4.2)
|
71
|
+
builder (3.2.4)
|
72
|
+
concurrent-ruby (1.1.10)
|
73
|
+
crass (1.0.6)
|
74
|
+
digest (3.1.0)
|
75
|
+
erubi (1.11.0)
|
76
|
+
globalid (1.0.0)
|
77
|
+
activesupport (>= 5.0)
|
78
|
+
i18n (1.12.0)
|
79
|
+
concurrent-ruby (~> 1.0)
|
80
|
+
json (2.6.2)
|
81
|
+
loofah (2.18.0)
|
82
|
+
crass (~> 1.0.2)
|
83
|
+
nokogiri (>= 1.5.9)
|
84
|
+
mail (2.7.1)
|
85
|
+
mini_mime (>= 0.1.1)
|
86
|
+
marcel (1.0.2)
|
87
|
+
method_source (1.0.0)
|
88
|
+
mini_mime (1.1.2)
|
89
|
+
minitest (5.16.2)
|
90
|
+
net-imap (0.2.3)
|
91
|
+
digest
|
92
|
+
net-protocol
|
93
|
+
strscan
|
94
|
+
net-pop (0.1.1)
|
95
|
+
digest
|
96
|
+
net-protocol
|
97
|
+
timeout
|
98
|
+
net-protocol (0.1.3)
|
99
|
+
timeout
|
100
|
+
net-smtp (0.3.1)
|
101
|
+
digest
|
102
|
+
net-protocol
|
103
|
+
timeout
|
104
|
+
nio4r (2.5.8)
|
105
|
+
nokogiri (1.13.8-arm64-darwin)
|
106
|
+
racc (~> 1.4)
|
107
|
+
nokogiri (1.13.8-x86_64-linux)
|
108
|
+
racc (~> 1.4)
|
109
|
+
parallel (1.22.1)
|
110
|
+
parser (3.1.2.1)
|
111
|
+
ast (~> 2.4.1)
|
112
|
+
pg (1.4.3)
|
113
|
+
racc (1.6.0)
|
114
|
+
rack (2.2.4)
|
115
|
+
rack-test (2.0.2)
|
116
|
+
rack (>= 1.3)
|
117
|
+
rails (6.0.5.1)
|
118
|
+
actioncable (= 6.0.5.1)
|
119
|
+
actionmailbox (= 6.0.5.1)
|
120
|
+
actionmailer (= 6.0.5.1)
|
121
|
+
actionpack (= 6.0.5.1)
|
122
|
+
actiontext (= 6.0.5.1)
|
123
|
+
actionview (= 6.0.5.1)
|
124
|
+
activejob (= 6.0.5.1)
|
125
|
+
activemodel (= 6.0.5.1)
|
126
|
+
activerecord (= 6.0.5.1)
|
127
|
+
activestorage (= 6.0.5.1)
|
128
|
+
activesupport (= 6.0.5.1)
|
129
|
+
bundler (>= 1.3.0)
|
130
|
+
railties (= 6.0.5.1)
|
131
|
+
sprockets-rails (>= 2.0.0)
|
132
|
+
rails-dom-testing (2.0.3)
|
133
|
+
activesupport (>= 4.2.0)
|
134
|
+
nokogiri (>= 1.6)
|
135
|
+
rails-html-sanitizer (1.4.3)
|
136
|
+
loofah (~> 2.3)
|
137
|
+
railties (6.0.5.1)
|
138
|
+
actionpack (= 6.0.5.1)
|
139
|
+
activesupport (= 6.0.5.1)
|
140
|
+
method_source
|
141
|
+
rake (>= 0.8.7)
|
142
|
+
thor (>= 0.20.3, < 2.0)
|
143
|
+
rainbow (3.1.1)
|
144
|
+
rake (13.0.6)
|
145
|
+
regexp_parser (2.5.0)
|
146
|
+
rexml (3.2.5)
|
147
|
+
rubocop (1.35.0)
|
148
|
+
json (~> 2.3)
|
149
|
+
parallel (~> 1.10)
|
150
|
+
parser (>= 3.1.2.1)
|
151
|
+
rainbow (>= 2.2.2, < 4.0)
|
152
|
+
regexp_parser (>= 1.8, < 3.0)
|
153
|
+
rexml (>= 3.2.5, < 4.0)
|
154
|
+
rubocop-ast (>= 1.20.1, < 2.0)
|
155
|
+
ruby-progressbar (~> 1.7)
|
156
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
157
|
+
rubocop-ast (1.21.0)
|
158
|
+
parser (>= 3.1.1.0)
|
159
|
+
rubocop-performance (1.14.3)
|
160
|
+
rubocop (>= 1.7.0, < 2.0)
|
161
|
+
rubocop-ast (>= 0.4.0)
|
162
|
+
ruby-progressbar (1.11.0)
|
163
|
+
sprockets (4.1.1)
|
164
|
+
concurrent-ruby (~> 1.0)
|
165
|
+
rack (> 1, < 3)
|
166
|
+
sprockets-rails (3.4.2)
|
167
|
+
actionpack (>= 5.2)
|
168
|
+
activesupport (>= 5.2)
|
169
|
+
sprockets (>= 3.0.0)
|
170
|
+
sqlite3 (1.4.4)
|
171
|
+
standard (1.16.0)
|
172
|
+
rubocop (= 1.35.0)
|
173
|
+
rubocop-performance (= 1.14.3)
|
174
|
+
standardrb (1.0.1)
|
175
|
+
standard
|
176
|
+
strscan (3.0.4)
|
177
|
+
thor (1.2.1)
|
178
|
+
thread_safe (0.3.6)
|
179
|
+
timeout (0.3.0)
|
180
|
+
tzinfo (1.2.10)
|
181
|
+
thread_safe (~> 0.1)
|
182
|
+
unicode-display_width (2.2.0)
|
183
|
+
websocket-driver (0.7.5)
|
184
|
+
websocket-extensions (>= 0.1.0)
|
185
|
+
websocket-extensions (0.1.5)
|
186
|
+
zeitwerk (2.6.0)
|
187
|
+
|
188
|
+
PLATFORMS
|
189
|
+
arm64-darwin-21
|
190
|
+
x86_64-linux
|
191
|
+
|
192
|
+
DEPENDENCIES
|
193
|
+
appraisal
|
194
|
+
net-imap
|
195
|
+
net-pop
|
196
|
+
net-smtp
|
197
|
+
pg
|
198
|
+
rails (~> 6.0.0)
|
199
|
+
sequenced!
|
200
|
+
sqlite3 (~> 1.4.4)
|
201
|
+
standardrb
|
202
|
+
|
203
|
+
BUNDLED WITH
|
204
|
+
2.3.16
|