8000 [Snyk] Fix for 1 vulnerabilities by snyk-bot · Pull Request #32 · jaeko44/nilavu · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[Snyk] Fix for 1 vulnerabilities #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: 1.5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ end

if rails_master?
gem 'arel', git: 'https://github.com/rails/arel.git'
gem 'rails', git: 'https://github.com/rails/rails.git'
gem 'rails', '4.2.8'
else
# Rails 5 is going to ship with Action Cable, we have no use for it as
# we are API driven, AC introduces dependencies on Event Machine,
Expand All @@ -28,7 +28,7 @@ else
end

gem 'sprockets', '~> 3.6.3'
gem 'responders', '~> 2.0'
gem 'responders', '~> 2.3', '>= 2.3.0'

gem 'http_accept_language', '~>2.0.5' 8000 ;, require: false

Expand Down Expand Up @@ -75,7 +75,7 @@ gem 'rack-protection' # security

# keep it like this, or else rake asset:precompile will fail
gem 'sass'
gem 'sass-rails', '~> 5.0.5'
gem 'sass-rails', '~> 5.0.6'
gem 'uglifier'


Expand All @@ -89,17 +89,17 @@ group :test, :development do
gem 'listen', '0.7.3', require: false
gem 'certified', require: false
gem 'fabrication', '2.9.8', require: false
gem 'discourse-qunit-rails', require: 'qunit-rails'
gem 'discourse-qunit-rails', '0.0.9'
gem 'mocha', require: false
gem 'rb-fsevent', require: RUBY_PLATFORM =~ /darwin/i ? 'rb-fsevent' : false
gem 'rb-inotify', '~> 0.9', require: RUBY_PLATFORM =~ /linux/i ? 'rb-inotify' : false
gem 'rspec-rails', require: false
gem 'shoulda', require: false
gem 'simplecov', require: false
gem 'rspec-rails', '>= 3.2.3', require: false
gem 'shoulda', '>= 3.5.0', require: false
gem 'simplecov', '>= 0.12.0', require: false
gem 'timecop'
gem 'rspec-given'
gem 'rspec-html-matchers'
gem 'spork-rails'
gem 'spork-rails', '>= 4.0.0'
gem 'pry-nav'
gem 'byebug', require: ENV['RM_INFO'].nil?
end
Expand Down
Loading
0