Skip to content

Commit 0d9cea8

Browse files
committed
Merge branch 'following-users'
2 parents 79b051d + 67b1abf commit 0d9cea8

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

Gemfile.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,23 +65,23 @@ GEM
6565
addressable (2.8.0)
6666
public_suffix (>= 2.0.2, < 5.0)
6767
ansi (1.5.0)
68-
autoprefixer-rails (10.4.2.0)
68+
autoprefixer-rails (10.4.7.0)
6969
execjs (~> 2)
7070
aws-eventstream (1.2.0)
71-
aws-partitions (1.573.0)
72-
aws-sdk-core (3.130.0)
71+
aws-partitions (1.593.0)
72+
aws-sdk-core (3.131.1)
7373
aws-eventstream (~> 1, >= 1.0.2)
7474
aws-partitions (~> 1, >= 1.525.0)
7575
aws-sigv4 (~> 1.1)
76-
jmespath (~> 1.0)
77-
aws-sdk-kms (1.55.0)
76+
jmespath (~> 1, >= 1.6.1)
77+
aws-sdk-kms (1.57.0)
7878
aws-sdk-core (~> 3, >= 3.127.0)
7979
aws-sigv4 (~> 1.1)
8080
aws-sdk-s3 (1.87.0)
8181
aws-sdk-core (~> 3, >= 3.109.0)
8282
aws-sdk-kms (~> 1)
8383
aws-sigv4 (~> 1.1)
84-
aws-sigv4 (1.4.0)
84+
aws-sigv4 (1.5.0)
8585
aws-eventstream (~> 1, >= 1.0.2)
8686
bcrypt (3.1.13)
8787
bindex (0.8.1)
@@ -138,7 +138,7 @@ GEM
138138
listen (3.4.1)
139139
rb-fsevent (~> 0.10, >= 0.10.3)
140140
rb-inotify (~> 0.9, >= 0.9.10)
141-
loofah (2.16.0)
141+
loofah (2.18.0)
142142
crass (~> 1.0.2)
143143
nokogiri (>= 1.5.9)
144144
lumberjack (1.2.8)
@@ -154,10 +154,10 @@ GEM
154154
builder
155155
minitest (>= 5.0)
156156
ruby-progressbar
157-
msgpack (1.4.5)
157+
msgpack (1.5.1)
158158
nenv (0.3.0)
159159
nio4r (2.5.8)
160-
nokogiri (1.13.3-x86_64-darwin)
160+
nokogiri (1.13.6-x86_64-darwin)
161161
racc (~> 1.4)
162162
notiffany (0.1.3)
163163
nenv (~> 0.1)
@@ -166,7 +166,7 @@ GEM
166166
pry (0.14.1)
167167
coderay (~> 1.1)
168168
method_source (~> 1.0)
169-
public_suffix (4.0.6)
169+
public_suffix (4.0.7)
170170
puma (5.3.1)
171171
nio4r (~> 2.0)
172172
racc (1.6.0)
@@ -211,7 +211,7 @@ GEM
211211
rb-fsevent (0.11.1)
212212
rb-inotify (0.10.1)
213213
ffi (~> 1.0)
214-
regexp_parser (2.2.1)
214+
regexp_parser (2.4.0)
215215
ruby-progressbar (1.11.0)
216216
ruby-vips (2.1.4)
217217
ffi (~> 1.12)
@@ -270,7 +270,7 @@ GEM
270270
zeitwerk (2.5.4)
271271

272272
PLATFORMS
273-
x86_64-darwin-21
273+
x86_64-darwin-19
274274

275275
DEPENDENCIES
276276
active_storage_validations (= 0.8.9)
@@ -309,4 +309,4 @@ RUBY VERSION
309309
ruby 2.7.5p203
310310

311311
BUNDLED WITH
312-
2.2.17
312+
2.2.31

test/integration/microposts_interface_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def setup
1717
assert_select 'a[href=?]', '/?page=2' # Correct pagination link
1818
# Valid submission
1919
content = "This micropost really ties the room together"
20-
image = fixture_file_upload('test/fixtures/kitten.jpg', 'image/jpeg')
20+
image = fixture_file_upload('kitten.jpg', 'image/jpeg')
2121
assert_difference 'Micropost.count', 1 do
2222
post microposts_path, params: { micropost: { content: content,
2323
image: image } }

0 commit comments

Comments
 (0)