Skip to content

Commit

Permalink
Pinning sass to quiet the noisy deprecation notices which will be fix…
Browse files Browse the repository at this point in the history
…ed with an upcoming bootstrap update
  • Loading branch information
dgcliff committed Aug 28, 2024
1 parent 6b053cc commit 2a792ed
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.23
2.6.25
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ gem 'pg'
gem 'rsolr', '>= 1.0', '< 3'
gem 'ruby-filemagic'
gem 'ruby-vips'
gem 'sass-embedded', '1.77.5' # temp fix for https://github.com/twbs/bootstrap/issues/40621
gem 'sidekiq'

group :development, :test do
Expand Down
9 changes: 5 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ GEM
ffi (1.17.0-x86_64-linux-gnu)
globalid (1.2.1)
activesupport (>= 6.1)
google-protobuf (4.27.3-x86_64-linux)
google-protobuf (4.27.4-x86_64-linux)
bigdecimal
rake (>= 13)
hamlit (3.0.3)
Expand Down Expand Up @@ -227,7 +227,7 @@ GEM
multipart-post (2.4.1)
net-http (0.4.1)
uri
net-imap (0.4.14)
net-imap (0.4.15)
date
net-protocol
net-pop (0.1.2)
Expand Down Expand Up @@ -362,8 +362,8 @@ GEM
ffi (~> 1.12)
logger
rubyzip (2.3.2)
sass-embedded (1.77.8-x86_64-linux-gnu)
google-protobuf (~> 4.26)
sass-embedded (1.77.5-x86_64-linux-gnu)
google-protobuf (>= 3.25, < 5.0)
selenium-webdriver (4.10.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
Expand Down Expand Up @@ -454,6 +454,7 @@ DEPENDENCIES
rubocop-rails
ruby-filemagic
ruby-vips
sass-embedded (= 1.77.5)
selenium-webdriver
sidekiq
simplecov
Expand Down
7 changes: 7 additions & 0 deletions spec/controllers/works_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,11 @@
expect(subject).to redirect_to action: :show, id: assigns(:work)['id']
end
end

describe 'new' do
it 'presents the interface to upload a file' do
get :new
expect(response).to render_template('works/new')
end
end
end

0 comments on commit 2a792ed

Please sign in to comment.