rbexy 2.0.0.beta7 → 2.0.0.rc1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97a3fcda88057f9554949f70bbc5dcd30910354e6eb4a4cd1a83e0b53bd30322
4
- data.tar.gz: fe5f40ad4f4820233e2c555e9c0d13852774c75e40d03e1ac6357157e87d6a22
3
+ metadata.gz: d3aebd8398ee8d11c90711ca7dff4e000e8e84a108481f38cc0bc2ea47e4c80b
4
+ data.tar.gz: 74f5f7786f6d181d31e887e15d61854a5076cf7813757c5e008d55652299934f
5
5
  SHA512:
6
- metadata.gz: d819a2cdd14c75b73b0fc88aabb57cff4666232601a0cf7aeb554a7841313bfdb9f6a56f43d672bec493e14b4a5fcd6f01613ead04ea1609d36e75368352576a
7
- data.tar.gz: 18c2566b9851268b689e43800dd0a9876224c181cd089750416fc2202c65613cc57717c3a354c5da90cecbd6cb2258ec911e56aff59dc44739ee1bf14b5bccce
6
+ metadata.gz: 4668cfb5d7575db8459eff22b328582b2758ec2cf89aa32b815679d62627fffb4c2d4f0566bf970e7802cda31d5ba0b9bc7c563ee29980a884a5f0abf64659f0
7
+ data.tar.gz: b9bc3ca3709432f52551124051e2d75d67ca294bda75b3675df5cd67b9bb6049a0b802a97fc4d4ad43ce6e2240393961e8d3edb1491e0bee624def15ae62140b
@@ -0,0 +1,20 @@
1
+ name: Build and test
2
+ on: [push, pull_request]
3
+ jobs:
4
+ test:
5
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ gemfile: [rails_6_1, rails_7_0, rails_master]
9
+ # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
10
+ ruby: [2.7, '3.0', 3.1]
11
+ runs-on: ubuntu-latest
12
+ env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
13
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: ruby/setup-ruby@v1
17
+ with:
18
+ ruby-version: ${{ matrix.ruby }}
19
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
20
+ - run: bin/test
data/.gitignore CHANGED
@@ -2,3 +2,4 @@ spec/dummy/log/*
2
2
  pkg/
3
3
  spec/dummy/tmp/*
4
4
  spec/dummy/db/*
5
+ .bundle
data/.rspec CHANGED
@@ -1 +1,2 @@
1
1
  --require spec_helper
2
+ --exclude-pattern "integration/caching/**/*.rb"
data/.travis.yml CHANGED
@@ -1,3 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 2.7
4
+ - 3.0
5
+ script: bin/test
data/Appraisals ADDED
@@ -0,0 +1,12 @@
1
+ appraise 'rails-6-1' do
2
+ gem 'rails', '~> 6.1.4'
3
+ gem 'net-smtp', require: false
4
+ end
5
+
6
+ appraise 'rails-7-0' do
7
+ gem 'rails', '~> 7.0.0'
8
+ end
9
+
10
+ appraise 'rails-master' do
11
+ gem 'rails', git: 'https://github.com/rails/rails.git', branch: :main
12
+ end
data/Dockerfile CHANGED
@@ -1,7 +1,8 @@
1
- FROM ruby:2.7.1
1
+ FROM ruby:3.1.1
2
2
  RUN apt-get update -qq
3
3
 
4
4
  WORKDIR /app
5
5
 
6
6
  COPY . .
7
- RUN bundle install
7
+ RUN bundle
8
+ RUN bundle exec appraisal bundle
data/Gemfile.lock CHANGED
@@ -1,76 +1,84 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbexy (2.0.0.beta7)
5
- actionview (>= 6.0, < 7.0)
6
- activesupport (>= 6.0, < 7.0)
4
+ rbexy (2.0.0.rc1)
5
+ actionview (>= 6, < 7.1)
6
+ activesupport (>= 6, < 7.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (6.0.3.3)
12
- actionpack (= 6.0.3.3)
11
+ actioncable (6.1.3)
12
+ actionpack (= 6.1.3)
13
+ activesupport (= 6.1.3)
13
14
  nio4r (~> 2.0)
14
15
  websocket-driver (>= 0.6.1)
15
- actionmailbox (6.0.3.3)
16
- actionpack (= 6.0.3.3)
17
- activejob (= 6.0.3.3)
18
- activerecord (= 6.0.3.3)
19
- activestorage (= 6.0.3.3)
20
- activesupport (= 6.0.3.3)
16
+ actionmailbox (6.1.3)
17
+ actionpack (= 6.1.3)
18
+ activejob (= 6.1.3)
19
+ activerecord (= 6.1.3)
20
+ activestorage (= 6.1.3)
21
+ activesupport (= 6.1.3)
21
22
  mail (>= 2.7.1)
22
- actionmailer (6.0.3.3)
23
- actionpack (= 6.0.3.3)
24
- actionview (= 6.0.3.3)
25
- activejob (= 6.0.3.3)
23
+ actionmailer (6.1.3)
24
+ actionpack (= 6.1.3)
25
+ actionview (= 6.1.3)
26
+ activejob (= 6.1.3)
27
+ activesupport (= 6.1.3)
26
28
  mail (~> 2.5, >= 2.5.4)
27
29
  rails-dom-testing (~> 2.0)
28
- actionpack (6.0.3.3)
29
- actionview (= 6.0.3.3)
30
- activesupport (= 6.0.3.3)
31
- rack (~> 2.0, >= 2.0.8)
30
+ actionpack (6.1.3)
31
+ actionview (= 6.1.3)
32
+ activesupport (= 6.1.3)
33
+ rack (~> 2.0, >= 2.0.9)
32
34
  rack-test (>= 0.6.3)
33
35
  rails-dom-testing (~> 2.0)
34
36
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
- actiontext (6.0.3.3)
36
- actionpack (= 6.0.3.3)
37
- activerecord (= 6.0.3.3)
38
- activestorage (= 6.0.3.3)
39
- activesupport (= 6.0.3.3)
37
+ actiontext (6.1.3)
38
+ actionpack (= 6.1.3)
39
+ activerecord (= 6.1.3)
40
+ activestorage (= 6.1.3)
41
+ activesupport (= 6.1.3)
40
42
  nokogiri (>= 1.8.5)
41
- actionview (6.0.3.3)
42
- activesupport (= 6.0.3.3)
43
+ actionview (6.1.3)
44
+ activesupport (= 6.1.3)
43
45
  builder (~> 3.1)
44
46
  erubi (~> 1.4)
45
47
  rails-dom-testing (~> 2.0)
46
48
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
- activejob (6.0.3.3)
48
- activesupport (= 6.0.3.3)
49
+ activejob (6.1.3)
50
+ activesupport (= 6.1.3)
49
51
  globalid (>= 0.3.6)
50
- activemodel (6.0.3.3)
51
- activesupport (= 6.0.3.3)
52
- activerecord (6.0.3.3)
53
- activemodel (= 6.0.3.3)
54
- activesupport (= 6.0.3.3)
55
- activestorage (6.0.3.3)
56
- actionpack (= 6.0.3.3)
57
- activejob (= 6.0.3.3)
58
- activerecord (= 6.0.3.3)
52
+ activemodel (6.1.3)
53
+ activesupport (= 6.1.3)
54
+ activerecord (6.1.3)
55
+ activemodel (= 6.1.3)
56
+ activesupport (= 6.1.3)
57
+ activestorage (6.1.3)
58
+ actionpack (= 6.1.3)
59
+ activejob (= 6.1.3)
60
+ activerecord (= 6.1.3)
61
+ activesupport (= 6.1.3)
59
62
  marcel (~> 0.3.1)
60
- activesupport (6.0.3.3)
63
+ mimemagic (~> 0.3.2)
64
+ activesupport (6.1.3)
61
65
  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
+ i18n (>= 1.6, < 2)
67
+ minitest (>= 5.1)
68
+ tzinfo (~> 2.0)
69
+ zeitwerk (~> 2.3)
70
+ appraisal (2.4.1)
71
+ bundler
72
+ rake
73
+ thor (>= 0.14.0)
66
74
  builder (3.2.4)
67
75
  byebug (11.1.3)
68
76
  coderay (1.1.3)
69
- concurrent-ruby (1.1.7)
77
+ concurrent-ruby (1.1.8)
70
78
  crass (1.0.6)
71
79
  diff-lcs (1.4.4)
72
- erubi (1.9.0)
73
- ffi (1.13.1)
80
+ erubi (1.10.0)
81
+ ffi (1.15.0)
74
82
  formatador (0.2.5)
75
83
  globalid (0.4.2)
76
84
  activesupport (>= 4.2.0)
@@ -88,12 +96,12 @@ GEM
88
96
  guard (~> 2.1)
89
97
  guard-compat (~> 1.1)
90
98
  rspec (>= 2.99.0, < 4.0)
91
- i18n (1.8.5)
99
+ i18n (1.8.9)
92
100
  concurrent-ruby (~> 1.0)
93
- listen (3.2.1)
101
+ listen (3.4.1)
94
102
  rb-fsevent (~> 0.10, >= 0.10.3)
95
103
  rb-inotify (~> 0.9, >= 0.9.10)
96
- loofah (2.7.0)
104
+ loofah (2.9.0)
97
105
  crass (~> 1.0.2)
98
106
  nokogiri (>= 1.5.9)
99
107
  lumberjack (1.2.8)
@@ -103,14 +111,17 @@ GEM
103
111
  mimemagic (~> 0.3.2)
104
112
  memory_profiler (0.9.14)
105
113
  method_source (1.0.0)
106
- mimemagic (0.3.5)
114
+ mimemagic (0.3.10)
115
+ nokogiri (~> 1)
116
+ rake
107
117
  mini_mime (1.0.2)
108
- mini_portile2 (2.4.0)
109
- minitest (5.14.2)
118
+ mini_portile2 (2.8.0)
119
+ minitest (5.14.4)
110
120
  nenv (0.3.0)
111
- nio4r (2.5.4)
112
- nokogiri (1.10.10)
113
- mini_portile2 (~> 2.4.0)
121
+ nio4r (2.5.7)
122
+ nokogiri (1.13.3)
123
+ mini_portile2 (~> 2.8.0)
124
+ racc (~> 1.4)
114
125
  notiffany (0.1.3)
115
126
  nenv (~> 0.1)
116
127
  shellany (~> 0.0)
@@ -120,36 +131,37 @@ GEM
120
131
  pry-byebug (3.9.0)
121
132
  byebug (~> 11.0)
122
133
  pry (~> 0.13.0)
134
+ racc (1.6.0)
123
135
  rack (2.2.3)
124
136
  rack-test (1.1.0)
125
137
  rack (>= 1.0, < 3)
126
- rails (6.0.3.3)
127
- actioncable (= 6.0.3.3)
128
- actionmailbox (= 6.0.3.3)
129
- actionmailer (= 6.0.3.3)
130
- actionpack (= 6.0.3.3)
131
- actiontext (= 6.0.3.3)
132
- actionview (= 6.0.3.3)
133
- activejob (= 6.0.3.3)
134
- activemodel (= 6.0.3.3)
135
- activerecord (= 6.0.3.3)
136
- activestorage (= 6.0.3.3)
137
- activesupport (= 6.0.3.3)
138
- bundler (>= 1.3.0)
139
- railties (= 6.0.3.3)
138
+ rails (6.1.3)
139
+ actioncable (= 6.1.3)
140
+ actionmailbox (= 6.1.3)
141
+ actionmailer (= 6.1.3)
142
+ actionpack (= 6.1.3)
143
+ actiontext (= 6.1.3)
144
+ actionview (= 6.1.3)
145
+ activejob (= 6.1.3)
146
+ activemodel (= 6.1.3)
147
+ activerecord (= 6.1.3)
148
+ activestorage (= 6.1.3)
149
+ activesupport (= 6.1.3)
150
+ bundler (>= 1.15.0)
151
+ railties (= 6.1.3)
140
152
  sprockets-rails (>= 2.0.0)
141
153
  rails-dom-testing (2.0.3)
142
154
  activesupport (>= 4.2.0)
143
155
  nokogiri (>= 1.6)
144
156
  rails-html-sanitizer (1.3.0)
145
157
  loofah (~> 2.3)
146
- railties (6.0.3.3)
147
- actionpack (= 6.0.3.3)
148
- activesupport (= 6.0.3.3)
158
+ railties (6.1.3)
159
+ actionpack (= 6.1.3)
160
+ activesupport (= 6.1.3)
149
161
  method_source
150
162
  rake (>= 0.8.7)
151
- thor (>= 0.20.3, < 2.0)
152
- rake (12.3.3)
163
+ thor (~> 1.0)
164
+ rake (13.0.3)
153
165
  rb-fsevent (0.10.4)
154
166
  rb-inotify (0.10.1)
155
167
  ffi (~> 1.0)
@@ -186,29 +198,30 @@ GEM
186
198
  activesupport (>= 4.0)
187
199
  sprockets (>= 3.0.0)
188
200
  sqlite3 (1.4.2)
189
- thor (1.0.1)
190
- thread_safe (0.3.6)
191
- tzinfo (1.2.7)
192
- thread_safe (~> 0.1)
201
+ thor (1.1.0)
202
+ tzinfo (2.0.4)
203
+ concurrent-ruby (~> 1.0)
193
204
  websocket-driver (0.7.3)
194
205
  websocket-extensions (>= 0.1.0)
195
206
  websocket-extensions (0.1.5)
196
- zeitwerk (2.4.0)
207
+ zeitwerk (2.4.2)
197
208
 
198
209
  PLATFORMS
199
210
  ruby
200
211
 
201
212
  DEPENDENCIES
213
+ appraisal (~> 2.2)
202
214
  guard-rspec (~> 4.7, >= 4.7.3)
203
215
  memory_profiler (~> 0.9.14)
204
216
  pry-byebug
205
- rails (>= 6.0, < 7.0)
217
+ rails (>= 6, < 7.1)
206
218
  rake
207
219
  rbexy!
208
220
  rspec (~> 3.9)
209
221
  rspec-html-matchers (~> 0.9.3)
210
222
  rspec-rails (~> 4.0, >= 4.0.1)
223
+ sprockets-rails (>= 2, < 4)
211
224
  sqlite3
212
225
 
213
226
  BUNDLED WITH
214
- 2.1.4
227
+ 2.2.3