Skip to content

Commit

Permalink
pull request comments
Browse files Browse the repository at this point in the history
  • Loading branch information
KatyTaylor committed Jul 15, 2022
1 parent 0650eee commit 48cd9e4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
4 changes: 1 addition & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 2.4.0', group: :doc
gem 'sdoc', '~> 2.4.0', group: :doc # TODO: change to using yard (using this for other apps).

gem 'bootstrap-sass', '3.4.1'

Expand All @@ -37,8 +37,6 @@ group :development, :test do
gem 'pry'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2.2'
end

group :development do
Expand Down
8 changes: 0 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,6 @@ GEM
selenium-webdriver
childprocess (4.1.0)
coderay (1.1.3)
coffee-rails (4.2.2)
coffee-script (>= 2.2.0)
railties (>= 4.0.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.12.2)
concurrent-ruby (1.1.10)
crass (1.0.6)
database_cleaner (2.0.1)
Expand Down Expand Up @@ -301,7 +294,6 @@ DEPENDENCIES
bootstrap-sass (= 3.4.1)
capybara
capybara-selenium
coffee-rails (~> 4.2.2)
database_cleaner
exception_notification
factory_bot
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/assets_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def search
end

def assets_provided
params[:assets].is_a?(ActionController::Parameters) && params[:assets].keys.present?
params[:assets].present?
end

def assets_to_be_updated
Expand Down

0 comments on commit 48cd9e4

Please sign in to comment.