Created
March 21, 2018 20:47
-
-
Save elliotec/14b556e77e035b4aac2dbf15ac0ff025 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
# Bundle edge Rails instead: gem "rails", github: "rails/rails" | |
gem "rails", "~> 5.1" | |
gem "activerecord-session_store" | |
# Use postgresql as the database for Active Record | |
gem "pg", "~> 0.19.0" | |
# Use Puma as the app server | |
gem "puma", "~> 3.0" | |
# Use SCSS for stylesheets | |
gem "sass-rails", "~> 5.0" | |
gem "sass", ">= 3.5.2" | |
# Use Uglifier as compressor for JavaScript assets | |
gem "uglifier", ">= 1.3.0" | |
gem "bootstrap", "~> 4.0.0.beta2.1" | |
gem "font-awesome-rails" | |
source "https://rails-assets.org" do | |
gem "rails-assets-tether", ">= 1.3.3" | |
end | |
gem "httparty" | |
gem "diplomat" | |
gem "predicator" | |
gem "pry-nav" | |
gem "pry-rails" | |
gem "bugsnag" | |
gem "net-ldap" | |
# Nav Ecosystem gems | |
gem "nav_health", github: "creditera/nav_health" | |
# Engines | |
gem "affiliate_management", path: "engines/affiliate_management" | |
gem "experiments", path: "engines/experiments" | |
gem "margaritatown", path: "engines/margaritatown" | |
gem "mobile_version_management", path: "engines/mobile_version_management" | |
gem "margaritaville", path: "engines/margaritaville" | |
gem "riddler_admin", path: "engines/riddler", require: "riddler" | |
gem "switcher", path: "engines/switcher" | |
gem "thundercorp", path: "engines/thundercorp" | |
gem "relevant_paths", path: "engines/relevant_paths" | |
# Use jquery as the JavaScript library | |
gem "jquery-rails" | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
gem "jbuilder", "~> 2.5" | |
# Pundit provides a set of helpers which guide you in leveraging regular Ruby | |
# classes and object oriented design | |
# patterns to build a simple, robust and scaleable authorization system. | |
gem "pundit" | |
gem "foreman" | |
group :development, :test do | |
# Call "byebug" anywhere in the code to stop execution and get a debugger console | |
gem "byebug", platform: :mri | |
gem "dotenv" | |
gem "rubocop", require: false | |
gem "rspec-rails" | |
gem "database_cleaner" | |
gem "simplecov" | |
gem "vcr" | |
gem "webmock" | |
end | |
group :development do | |
gem "capistrano" | |
gem "capistrano-bundler" | |
gem "capistrano-foreman" | |
gem "capistrano-rails" | |
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code. | |
gem "web-console" | |
gem "listen", "~> 3.0.5" | |
gem "yard" | |
gem "annotate" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment