Created
February 9, 2018 02:44
-
-
Save anonymous/d2dc9e7c5438acfcb4ff2746b71a711b to your computer and use it in GitHub Desktop.
This file contains 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" | |
git_source(:github) do |repo_name| | |
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | |
"https://github.com/#{repo_name}.git" | |
end | |
################## | |
## Default Gems ## | |
################## | |
gem "coffee-rails", "~> 4.2" | |
gem "jbuilder", "~> 2.7" | |
gem "jquery-rails", "~> 4.3" | |
gem "pg", "~> 0.21" # NOTE: 1.0 is out, unsupported for now! | |
gem "puma", "~> 3.10" | |
gem "rails", "~> 5.1" | |
gem "sass-rails", "~> 5.0" | |
gem "uglifier", "~> 4.1" | |
group :development do | |
gem "listen", "~> 3.1" | |
gem "spring", "~> 2.0" | |
gem "spring-watcher-listen", "~> 2.0" | |
gem "web-console", "~> 3.5" | |
end | |
group :development, :test do | |
gem "capybara", "~> 2.15" | |
gem "chromedriver-helper", "~> 1.1" | |
gem "minitest", "~> 5.10.0" # Locked to 5.10.X until this issue is resolved in 5.11.X and beyond: https://github.com/seattlerb/minitest/issues/730, https://github.com/rails/rails/pull/31624 | |
gem "selenium-webdriver", "~> 3.5" | |
end | |
################# | |
## IPTAAS Gems ## | |
################# | |
gem "activerecord-import", "~> 0.20" | |
gem "adroit-age", "~> 2.0" | |
gem "bh", "~> 1.3" | |
gem "bootstrap-sass", "~> 3.3" | |
gem "bootstrap-select-rails", "~> 1.12" | |
gem "bootswatch-rails", "~> 3.3" | |
gem "border_patrol", github: "constantorbit/border_patrol", branch: "handle-inner-boundaries", ref: "fc096a8c73d1fedf47c3f8943f11bae05b95b39b" | |
gem "carrierwave", "~> 1.1" | |
gem "carrierwave-imageoptimizer", "~> 1.4" | |
gem "carrierwave-postgresql-table", "~> 1.0" | |
gem "client_side_validations", "~> 11.0" | |
gem "client_side_validations-simple_form", "~> 6.3" | |
gem "config", "~> 1.4" | |
gem "date_validator", "~> 0.9" | |
gem "devise", "~> 4.3" | |
gem "devise-security", "~> 0.10" | |
gem "email_validator", "~> 1.6", require: "email_validator/strict" | |
gem "friendly_id", "~> 5.2.0" | |
gem "geocoder", "~> 1.4" | |
gem "geocomplete_rails", "~> 1.7" | |
gem "github_changelog_generator", "~> 1.14" | |
gem "gravatar_image_tag", "~> 1.2" | |
gem "hashids", "~> 1.0" | |
gem "htmltoword", "~> 0.7" | |
gem "i18n_yaml_sorter", "~> 0.2" | |
gem "jquery-ui-rails", "~> 5.0" # NOTE: 6.0 is out, unsupported for now! | |
gem "paper_trail", "~> 8.1" | |
gem "phony_rails", "~> 0.14" | |
gem "rails-erd", "~> 1.5" | |
gem "rails-jquery-autocomplete", "~> 1.0" | |
gem "rails_admin", "~> 1.2" | |
gem "rails_admin_history_rollback", "~> 1.0" | |
gem "rails_conditional_params", "~> 0.1" | |
gem "rails_real_favicon", "~> 0.0" | |
gem "recaptcha", "~> 4.4", require: "recaptcha/rails" | |
gem "redcarpet", "~> 3.4" | |
gem "savon", "~> 2.11" | |
gem "simple_form", "~> 3.5" | |
gem "trix", "~> 0.11" | |
gem "wicked_pdf", "~> 1.1" | |
gem "will_paginate", "~> 3.1" | |
gem "will_paginate-bootstrap", "~> 1.0" | |
gem "wkhtmltopdf-binary-edge", "~> 0.12" | |
gem "yard", "~> 0.9" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment