Skip to content

Commit

Permalink
Merge 8fa5a2b into 214e26e
Browse files Browse the repository at this point in the history
  • Loading branch information
mlandauer committed Aug 13, 2018
2 parents 214e26e + 8fa5a2b commit 4f03f03
Show file tree
Hide file tree
Showing 53 changed files with 462 additions and 580 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-2.1.5
ruby-2.5.1
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
language: ruby
rvm:
- 2.1.5
sudo: false
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
Expand Down
21 changes: 9 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
source 'https://rubygems.org'

gem 'dotenv-deployment'
gem 'dotenv-rails'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.7.1'
gem 'rails', '5.2.0'

gem 'pg'

Expand All @@ -16,10 +16,7 @@ group :assets do
# of things we need to do for the upgrade
gem 'bootstrap-sass', '~> 2.0'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby

gem 'uglifier', '>= 1.3.0'
gem 'uglifier'
gem "less-rails"
end

Expand All @@ -34,7 +31,7 @@ gem 'sinatra', :require => nil
gem 'foreman'
gem 'haml-rails'
# Use pull request that has needed Rails 4 improvements https://github.com/pkurek/flatui-rails/pull/25
gem 'flatui-rails', github: 'iffyuva/flatui-rails', ref: '3d3c423'
gem 'flatui-rails', git: 'https://github.com/iffyuva/flatui-rails.git', ref: '3d3c423'
gem 'font-awesome-rails'
gem "file-tail"
gem 'syslog_protocol'
Expand All @@ -46,19 +43,19 @@ gem 'gravatar_image_tag'
gem "formtastic"
# Need commit c9331088146e456a69bd6e94298c80d09be3ee74
gem 'formtastic-bootstrap', git: "https://github.com/mjbellantoni/formtastic-bootstrap.git", ref: "f86eaef93bea0a06879b3977d7554864964a623f"
gem 'factory_girl_rails'
gem 'factory_bot_rails'
gem 'haml-coderay'
gem 'nokogiri'
gem 'google-analytics-rails'
gem 'premailer'
gem "archive-tar-minitar"
gem "minitar"
gem "pundit"
gem "friendly_id"
gem "user_agent_parser"
gem 'newrelic_rpm'
gem 'honeybadger'
gem 'dkim'
gem 'fog'
gem 'fog-aws'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
Expand Down Expand Up @@ -87,8 +84,7 @@ group :development do
gem "spring-commands-rspec"
gem "capistrano", "~> 2"
gem 'rvm-capistrano', ">= 1.5.6", require: false
# Newer versions don't support Ruby 2.1. Remove this when we upgrade Ruby
gem "listen", "~> 2"
gem "listen"
end

group :test do
Expand All @@ -97,6 +93,7 @@ group :test do
gem 'climate_control'
gem "vcr"
gem "webmock"
gem 'rails-controller-testing'
end

group :development, :test do
Expand Down

0 comments on commit 4f03f03

Please sign in to comment.