Skip to content

Commit

Permalink
Merge pull request #423 from Codeminer42/updating-rails
Browse files Browse the repository at this point in the history
Updating rails and ruby to latest version
  • Loading branch information
adbatista committed Jan 8, 2019
2 parents 173b704 + 122754a commit 603cd4e
Show file tree
Hide file tree
Showing 116 changed files with 696 additions and 638 deletions.
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake --trace fulcrum:setup db:setup"
rvm:
- 2.3.1
- 2.6.0
script:
- "bundle exec rake travis"
- "bundle exec codeclimate-test-reporter"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from ruby:2.3.1
from ruby:2.6.0

env DEBIAN_FRONTEND noninteractive
ENV NODE_VERSION=7.7.2
Expand Down
19 changes: 10 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
source 'https://rubygems.org'

ruby '2.3.1'
ruby '2.6.0'

git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end

gem 'rails', '4.2.11'
gem 'rails', '~>5.2.1'

gem 'activeadmin', '~> 1.0.0.pre4'
gem 'activeadmin'
gem 'api-pagination'
gem 'attachinary'
gem 'autoprefixer-rails'
Expand All @@ -22,9 +22,9 @@ gem 'coffee-rails'
gem 'compass-rails'
gem 'configuration'
gem 'dalli'
gem 'devise', '~> 3.5.4'
gem 'devise'
gem 'devise-async'
gem 'devise-authy'
gem 'devise-authy', '~> 1.10.0'
gem 'devise-i18n'
gem 'differ'
gem 'dotenv-rails'
Expand Down Expand Up @@ -73,11 +73,12 @@ group :production do
end

group :test do
gem 'rails-controller-testing'
gem 'capybara'
gem 'capybara-screenshot'
gem 'codeclimate-test-reporter', require: nil
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'factory_bot_rails'
gem 'poltergeist'
gem 'rspec-activemodel-mocks'
gem 'rspec-its'
Expand All @@ -94,14 +95,14 @@ group :development do
gem 'binding_of_caller'
gem 'bullet'
gem 'letter_opener'
gem 'letter_opener_web', '~> 1.3.4'
gem 'rubocop', '0.49.1'
gem 'letter_opener_web'
gem 'rubocop', '0.59.1'
gem 'rubocop-rspec'
end

group :development, :test do
gem 'pry-rails'
gem 'pry-remote'
gem "pusher-fake", "~> 1.10"
gem 'quiet_assets'
end

Loading

0 comments on commit 603cd4e

Please sign in to comment.