Skip to content

Commit

Permalink
Merge branch 'master' of github.com:AFDC/Platinum
Browse files Browse the repository at this point in the history
  • Loading branch information
toomuchpete committed Sep 10, 2024
2 parents 37d7887 + 9f41f4a commit fc732e9
Show file tree
Hide file tree
Showing 53 changed files with 877 additions and 462 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-2.1
ruby-2.6.10
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
FROM ruby:2.6.10
MAINTAINER Pete Holiday <[email protected]>

RUN mkdir -p /var/app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.production
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.3
FROM ruby:2.6.10
MAINTAINER Pete Holiday <[email protected]>

RUN mkdir -p /var/app
Expand Down
84 changes: 36 additions & 48 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,86 +1,74 @@
source 'https://rubygems.org'

gem 'rails', '~> 3.2.22'
gem 'rails', '~> 4.2'

gem 'mimemagic', git: 'https://github.com/mimemagicrb/mimemagic', ref: '01f92d86d15d85cfd0f20dabd025dcbd36a8a60f'

# Backend
# gem 'airbrake'
# gem 'newrelic_rpm'
gem 'json'
gem 'multi_json'
gem 'mongoid'
gem 'mongoid', '~> 4.0.0'
gem 'declarative_authorization'
gem 'mongoid-paperclip', require: 'mongoid_paperclip'
gem 'strong_parameters'
gem 'mongoid-paperclip', '~> 0.0.11', require: 'mongoid_paperclip'
gem 'ruby_parser'
gem 'smarter_csv'
gem 'actionmailer'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'bcrypt'
gem 'dalli'
gem 'premailer-rails'
gem 'nokogiri'
gem 'braintree'
gem 'braintree', '~> 2.101.0'
gem 'twilio-ruby', '~> 5.10.7'
gem 'puma'
gem 'bugsnag'
gem 'test-unit', '~> 3.0'
gem 'bugsnag', '~> 5.1.0'
gem 'gibbon', '~> 3.0'

# Job Processing
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'kiqstand', '~> 1.1.0'
gem 'sinatra', require: false
gem 'slim'
gem 'whenever'
gem 'sidekiq', '~> 4.2.10'
gem 'sidekiq-cron', '~> 0.4.5'
gem 'sinatra', '~> 1.4.4', require: false
gem 'slim', '~> 2.0.2'
gem 'whenever', '~> 0.9.4'

# Frontend
gem 'active_link_to'
gem 'bootstrap-sass'
gem 'bootstrap-will_paginate'
gem 'bootstrap_form'
gem 'haml'
gem 'jquery-rails'
gem 'will_paginate'
gem 'active_link_to', '~> 1.0.0'
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'bootstrap-will_paginate', '~> 1.0.0'
gem 'bootstrap_form', '~> 2.1.1'
gem 'haml', '~> 4.0.1'
gem 'jquery-rails', '~> 2.2.1'
gem 'will_paginate', '~> 3.1.6'
gem "font-awesome-rails", '~> 3.2.1.0'


# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
# gem 'coffee-rails', '~> 3.2.1'
# gem 'uglifier', '>= 1.0.3'
gem 'mini_racer'
end

group :development, :test do
gem 'faker'
gem 'guard-rspec'
gem 'guard-spork'
gem 'rspec-rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'sass-rails'
gem 'faker', '~> 1.1.2'
gem 'rspec-rails', '~> 4.1.2'
gem 'better_errors', '~> 1.1.0'
gem 'binding_of_caller', '~> 1.0.0'
gem 'dotenv', require: 'dotenv/load'
end

group :development do
gem 'annotate'
gem 'haml-rails'
gem 'rb-inotify', require: false
gem 'rb-fsevent', require: false
gem 'rb-fchange', require: false
gem 'terminal-notifier-guard'
gem 'thin'
gem "web-console", "~> 2.0"
gem 'annotate', '~> 2.5.0'
gem 'haml-rails', '~> 0.4'
gem 'rb-inotify', '~> 0.9.0', require: false
gem 'rb-fsevent', '~> 0.9.3', require: false
gem 'rb-fchange', '~> 0.0.6', require: false
gem 'terminal-notifier-guard', '~> 1.5.3'
gem 'thin', '~> 1.8.2'
end

group :test do
gem 'factory_girl_rails'
gem 'spork'
gem 'factory_girl_rails', '~> 4.2.1'
gem 'spork', '~> 0.9.2'
gem 'test-unit'
end

group :ops do
gem 'pry'
gem 'pry', '~> 0.9.12'
end

# To use ActiveModel has_secure_password
Expand Down
Loading

0 comments on commit fc732e9

Please sign in to comment.