sequenced 3.1.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ci.yml +100 -0
  3. data/Appraisals +19 -0
  4. data/CHANGELOG.md +22 -2
  5. data/Gemfile +8 -5
  6. data/MIT-LICENSE +1 -1
  7. data/README.md +31 -4
  8. data/Rakefile +18 -18
  9. data/gemfiles/rails_5_2.gemfile +17 -0
  10. data/gemfiles/rails_5_2.gemfile.lock +193 -0
  11. data/gemfiles/rails_6.gemfile +17 -0
  12. data/gemfiles/rails_6.gemfile.lock +204 -0
  13. data/gemfiles/rails_6_1.gemfile +17 -0
  14. data/gemfiles/rails_6_1.gemfile.lock +207 -0
  15. data/gemfiles/rails_7.gemfile +17 -0
  16. data/gemfiles/rails_7.gemfile.lock +206 -0
  17. data/gemfiles/rails_master.gemfile +17 -0
  18. data/gemfiles/rails_master.gemfile.lock +215 -0
  19. data/lib/sequenced/acts_as_sequenced.rb +5 -6
  20. data/lib/sequenced/generator.rb +13 -11
  21. data/lib/sequenced/version.rb +1 -1
  22. data/lib/sequenced.rb +5 -3
  23. data/sequenced.gemspec +8 -9
  24. metadata +29 -165
  25. data/.travis.yml +0 -13
  26. data/test/acts_as_sequenced_test.rb +0 -132
  27. data/test/concurrency_test.rb +0 -82
  28. data/test/dummy/README.rdoc +0 -261
  29. data/test/dummy/Rakefile +0 -7
  30. data/test/dummy/app/assets/javascripts/application.js +0 -15
  31. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  32. data/test/dummy/app/controllers/application_controller.rb +0 -3
  33. data/test/dummy/app/helpers/application_helper.rb +0 -2
  34. data/test/dummy/app/mailers/.gitkeep +0 -0
  35. data/test/dummy/app/models/.gitkeep +0 -0
  36. data/test/dummy/app/models/account.rb +0 -6
  37. data/test/dummy/app/models/address.rb +0 -4
  38. data/test/dummy/app/models/answer.rb +0 -4
  39. data/test/dummy/app/models/comment.rb +0 -8
  40. data/test/dummy/app/models/concurrent_badger.rb +0 -3
  41. data/test/dummy/app/models/doppelganger.rb +0 -4
  42. data/test/dummy/app/models/email.rb +0 -4
  43. data/test/dummy/app/models/invoice.rb +0 -4
  44. data/test/dummy/app/models/monster.rb +0 -3
  45. data/test/dummy/app/models/order.rb +0 -4
  46. data/test/dummy/app/models/policeman.rb +0 -5
  47. data/test/dummy/app/models/product.rb +0 -8
  48. data/test/dummy/app/models/question.rb +0 -4
  49. data/test/dummy/app/models/rating.rb +0 -3
  50. data/test/dummy/app/models/subscription.rb +0 -3
  51. data/test/dummy/app/models/user.rb +0 -4
  52. data/test/dummy/app/models/werewolf.rb +0 -2
  53. data/test/dummy/app/models/zombie.rb +0 -2
  54. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  55. data/test/dummy/config/application.rb +0 -56
  56. data/test/dummy/config/boot.rb +0 -10
  57. data/test/dummy/config/database.yml +0 -29
  58. data/test/dummy/config/environment.rb +0 -5
  59. data/test/dummy/config/environments/development.rb +0 -33
  60. data/test/dummy/config/environments/production.rb +0 -67
  61. data/test/dummy/config/environments/test.rb +0 -43
  62. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  63. data/test/dummy/config/initializers/inflections.rb +0 -15
  64. data/test/dummy/config/initializers/mime_types.rb +0 -5
  65. data/test/dummy/config/initializers/secret_token.rb +0 -7
  66. data/test/dummy/config/initializers/session_store.rb +0 -8
  67. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  68. data/test/dummy/config/locales/en.yml +0 -5
  69. data/test/dummy/config/routes.rb +0 -58
  70. data/test/dummy/config.ru +0 -4
  71. data/test/dummy/db/development.sqlite3 +0 -0
  72. data/test/dummy/db/migrate/20120219165346_create_questions.rb +0 -10
  73. data/test/dummy/db/migrate/20120219165548_create_answers.rb +0 -13
  74. data/test/dummy/db/migrate/20120219171957_create_accounts.rb +0 -9
  75. data/test/dummy/db/migrate/20120219172039_create_invoices.rb +0 -12
  76. data/test/dummy/db/migrate/20120219172922_create_orders.rb +0 -10
  77. data/test/dummy/db/migrate/20120219174931_create_subscriptions.rb +0 -10
  78. data/test/dummy/db/migrate/20120219175744_create_users.rb +0 -12
  79. data/test/dummy/db/migrate/20120219232323_create_addresses.rb +0 -9
  80. data/test/dummy/db/migrate/20120220000804_create_comments.rb +0 -12
  81. data/test/dummy/db/migrate/20130411225444_create_emails.rb +0 -12
  82. data/test/dummy/db/migrate/20130715002029_create_ratings.rb +0 -10
  83. data/test/dummy/db/migrate/20130730004055_create_products.rb +0 -9
  84. data/test/dummy/db/migrate/20131226000000_create_monsters.rb +0 -9
  85. data/test/dummy/db/migrate/20140404195334_create_policemen.rb +0 -9
  86. data/test/dummy/db/migrate/20151120190645_create_concurrent_badgers.rb +0 -10
  87. data/test/dummy/db/migrate/20160118182655_create_doppelgangers.rb +0 -10
  88. data/test/dummy/db/schema.rb +0 -142
  89. data/test/dummy/db/test.sqlite3 +0 -0
  90. data/test/dummy/lib/assets/.gitkeep +0 -0
  91. data/test/dummy/log/.gitkeep +0 -0
  92. data/test/dummy/log/development.log +0 -62
  93. data/test/dummy/log/test.log +0 -32690
  94. data/test/dummy/public/404.html +0 -26
  95. data/test/dummy/public/422.html +0 -26
  96. data/test/dummy/public/500.html +0 -25
  97. data/test/dummy/public/favicon.ico +0 -0
  98. data/test/dummy/script/rails +0 -6
  99. data/test/multiple_sequences_test.rb +0 -20
  100. data/test/test_helper.rb +0 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0706f251eb15142b2e59f24168bdfc83bbb86d51
4
- data.tar.gz: e222ef16202f2703c315b107136687c5e484fe41
2
+ SHA256:
3
+ metadata.gz: ac1653ef8238785f146ca84e84e967e36d3c7606ce7a0f51bceb9d78103c2b6c
4
+ data.tar.gz: 57858eab7e36ca6e02ec5f823ef75873284f5841be580629665ce986d7283067
5
5
  SHA512:
6
- metadata.gz: 6b2e5b704a339e4449d1ba8175bb72dc5e857450d693aed070304c61865d546bc3459e8412d7990ac112f8da0f3f4ff1d560f94be09c000c66a2bf4d5d6c6a9b
7
- data.tar.gz: 601a93fee12817506cce21f0027eb89b35418cffe1cfa26183810fd59ae31adf435f609d53ffb92e1e3c9ae3cfff6e5d281b9636c4045ff762d79fde4ae46d2d
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,14 +1,34 @@
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
+
9
+ 3.2.0 (January 29, 2020)
10
+ ------------------------
11
+
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))
14
+
15
+ 3.1.1 (January 30, 2016)
16
+ -------------------------
17
+
18
+ * Rails 3 compatibility
19
+ (samphilipd, [#22](https://github.com/derrickreimer/sequenced/pull/22))
20
+
1
21
  3.1.0 (January 23, 2016)
2
22
  -------------------------
3
23
 
4
24
  * Allow multiple sequences on one record
5
- (samphilipd, [#19](https://github.com/djreimer/sequenced/pull/19))
25
+ (samphilipd, [#19](https://github.com/derrickreimer/sequenced/pull/19))
6
26
 
7
27
  3.0.0 (November 28, 2015)
8
28
  -------------------------
9
29
 
10
30
  * Make this gem thread-safe for PostgreSQL
11
- (samphilipd, [#16](https://github.com/djreimer/sequenced/pull/16))
31
+ (samphilipd, [#16](https://github.com/derrickreimer/sequenced/pull/16))
12
32
 
13
33
  2.0.0 (October 24, 2014)
14
34
  ------------------------
data/Gemfile CHANGED
@@ -1,17 +1,20 @@
1
- source "http://rubygems.org"
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
- # jquery-rails is used by the dummy application
9
- gem "jquery-rails"
8
+ gem "appraisal"
9
+ gem "standardrb"
10
10
 
11
11
  group :development, :test do
12
- gem 'sqlite3'
12
+ gem "sqlite3", "~> 1.4.4"
13
13
  # gem 'mysql2'
14
- gem 'pg'
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/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2016 Derrick Reimer
1
+ Copyright 2012-2020 Derrick Reimer
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Sequenced
2
2
 
3
- [![Build Status](https://travis-ci.org/djreimer/sequenced.png)](https://travis-ci.org/djreimer/sequenced)
4
- [![Code Climate](https://codeclimate.com/github/djreimer/sequenced.png)](https://codeclimate.com/github/djreimer/sequenced)
5
- [![Gem Version](https://badge.fury.io/rb/sequenced.png)](http://badge.fury.io/rb/sequenced)
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
+ [![Code Climate](https://codeclimate.com/github/djreimer/sequenced.svg)](https://codeclimate.com/github/djreimer/sequenced)
5
+ [![Gem Version](https://badge.fury.io/rb/sequenced.svg)](http://badge.fury.io/rb/sequenced)
6
6
 
7
7
  Sequenced is a simple gem that generates scoped sequential IDs for
8
8
  ActiveRecord models. This gem provides an `acts_as_sequenced` macro that
@@ -106,6 +106,33 @@ class CreateBadgers < ActiveRecord::Migration
106
106
  end
107
107
  ```
108
108
 
109
+ If you are adding a sequenced column to an existing table, you need to account for that in your migration.
110
+
111
+ Here is an example migration that adds and sets the `sequential_id` column based on the current database records:
112
+ ```ruby
113
+ # app/db/migrations/20151120190645_add_sequental_id_to_badgers.rb
114
+ class AddSequentalIdToBadgers < ActiveRecord::Migration
115
+ add_column :badgers, :sequential_id, :integer
116
+
117
+ execute <<~SQL
118
+ UPDATE badgers
119
+ SET sequential_id = old_badgers.next_sequential_id
120
+ FROM (
121
+ SELECT id, ROW_NUMBER()
122
+ OVER(
123
+ PARTITION BY burrow_id
124
+ ORDER BY id
125
+ ) AS next_sequential_id
126
+ FROM badgers
127
+ ) old_badgers
128
+ WHERE badgers.id = old_badgers.id
129
+ SQL
130
+
131
+ change_column :badgers, :sequential_id, :integer, null: false
132
+ add_index :badgers, [:sequential_id, :burrow_id], unique: true
133
+ end
134
+ ```
135
+
109
136
  ## Configuration
110
137
 
111
138
  ### Overriding the default sequential ID column
@@ -166,7 +193,7 @@ class Answer < ActiveRecord::Base
166
193
 
167
194
  # Automatically use the sequential ID in URLs
168
195
  def to_param
169
- self.sequential_id
196
+ self.sequential_id.to_s
170
197
  end
171
198
  end
172
199
 
data/Rakefile CHANGED
@@ -1,49 +1,49 @@
1
1
  #!/usr/bin/env rake
2
2
  begin
3
- require 'bundler/setup'
3
+ require "bundler/setup"
4
4
  rescue LoadError
5
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ puts "You must `gem install bundler` and `bundle install` to run rake tasks"
6
6
  end
7
7
  begin
8
- require 'rdoc/task'
8
+ require "rdoc/task"
9
9
  rescue LoadError
10
- require 'rdoc/rdoc'
11
- require 'rake/rdoctask'
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 = 'rdoc'
17
- rdoc.title = 'Sequenced'
18
- rdoc.options << '--line-numbers'
19
- rdoc.rdoc_files.include('README.rdoc')
20
- rdoc.rdoc_files.include('lib/**/*.rb')
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 'rake/testtask'
25
+ require "rake/testtask"
26
26
 
27
27
  Rake::TestTask.new(:test) do |t|
28
- t.libs << 'lib'
29
- t.libs << 'test'
30
- t.pattern = 'test/**/*_test.rb'
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 :default => :test
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('Rakefile', 'test/dummy/')
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('Rakefile', 'test/dummy/')
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('Rakefile', 'test/dummy/')
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: "../"