Skip to content

Instantly share code, notes, and snippets.

@Insood

Insood/Gemfile Secret

Created December 19, 2018 00:11
Show Gist options
  • Save Insood/d0a9df88f8ce2e0e1eee1fe8e70f2c46 to your computer and use it in GitHub Desktop.
Save Insood/d0a9df88f8ce2e0e1eee1fe8e70f2c46 to your computer and use it in GitHub Desktop.
Bundler could not find compatible versions for gem "actionpack":
In Gemfile:
rails (= 5.0.7) was resolved to 5.0.7, which depends on
actionpack (= 5.0.7)
simple_form (~> 3.5.1) was resolved to 3.5.1, which depends on
actionpack (< 5.2, > 4)
Bundler could not find compatible versions for gem "activemodel":
In Gemfile:
carrierwave was resolved to 1.2.3, which depends on
activemodel (>= 4.0.0)
rails (= 5.0.7) was resolved to 5.0.7, which depends on
activemodel (= 5.0.7)
simple_form (~> 3.5.1) was resolved to 3.5.1, which depends on
activemodel (< 5.2, > 4)
Bundler could not find compatible versions for gem "activerecord":
In Gemfile:
activerecord-sqlserver-adapter (~> 5.0.7) was resolved to 5.0.8, which depends on
activerecord (~> 5.0.0)
acts_as_list was resolved to 0.9.17, which depends on
activerecord (>= 3.0)
amoeba was resolved to 3.1.0, which depends on
activerecord (>= 3.2.6)
rails (= 5.0.7) was resolved to 5.0.7, which depends on
activerecord (= 5.0.7)
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
active_record_enumerated_type was resolved to 0.0.5, which depends on
activesupport
carrierwave was resolved to 1.2.3, which depends on
activesupport (>= 4.0.0)
jbuilder (~> 2.0) was resolved to 2.8.0, which depends on
activesupport (>= 4.2.0)
pundit (~> 1.1) was resolved to 1.1.0, which depends on
activesupport (>= 3.0.0)
rails (= 5.0.7) was resolved to 5.0.7, which depends on
activesupport (= 5.0.7)
spring was resolved to 2.0.2, which depends on
activesupport (>= 4.2)
Bundler could not find compatible versions for gem "capistrano":
In Gemfile:
capistrano (= 3.5.0)
capistrano-rails (~> 1.1) was resolved to 1.4.0, which depends on
capistrano (~> 3.1)
Bundler could not find compatible versions for gem "client_side_validations":
In Gemfile:
client_side_validations
client_side_validations-simple_form was resolved to 3.2.2, which depends on
client_side_validations (~> 4.2.0)
Bundler could not find compatible versions for gem "coffee-rails":
In Gemfile:
coffee-rails (~> 4.1.0)
turbolinks (~> 2.5.3) was resolved to 2.5.4, which depends on
coffee-rails
Bundler could not find compatible versions for gem "rails":
In Gemfile:
rails (= 5.0.7)
client_side_validations was resolved to 4.2.12, which depends on
rails (< 4.3.0, >= 4.0.0)
Bundler could not find compatible versions for gem "railties":
In Gemfile:
coffee-rails (~> 4.1.0) was resolved to 4.1.1, which depends on
railties (< 5.1.x, >= 4.0.0)
epic-editor-rails was resolved to 0.2.4, which depends on
railties (< 5.0, >= 3.2)
client_side_validations was resolved to 9.0.1, which depends on
jquery-rails (~> 4.2) was resolved to 4.3.3, which depends on
railties (>= 4.2.0)
jquery-turbolinks was resolved to 2.1.0, which depends on
railties (>= 3.1.0)
momentjs-rails (>= 2.9.0) was resolved to 2.20.1, which depends on
railties (>= 3.1)
rails (= 5.0.7) was resolved to 5.0.7, which depends on
railties (= 5.0.7)
react-rails was resolved to 2.4.7, which depends on
railties (>= 3.2)
sass-rails (~> 5.0) was resolved to 5.0.7, which depends on
railties (< 6, >= 4.0.0)
Bundler could not find compatible versions for gem "simple_form":
In Gemfile:
simple_form (~> 3.5.1)
client_side_validations-simple_form was resolved to 2.0.0.beta.2, which depends on
simple_form (~> 2.0.0)
Bundler could not find compatible versions for gem "turbolinks":
In Gemfile:
turbolinks (~> 2.5.3)
jquery-turbolinks was resolved to 2.1.0, which depends on
turbolinks
source 'http://rubygems.org'
ruby '2.4.0'
# Core gems
gem 'rails', '5.0.7' # Slowly upgrading to rails 5.0+
gem 'sprockets', '~> 3.7.2' # Shut up complaint about CVE-2018-3760
gem 'bootstrap-sass', '~> 3.3.5' # Use SCSS for stylesheets
gem 'bootstrap-table-rails' # Use a gem to make tables sortable
gem 'sass-rails', '~> 5.0' #
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'coffee-rails', '~> 4.1.0' # Use CoffeeScript for .coffee assets and views
gem 'jquery-rails' # Use jquery as the JavaScript library
gem 'jquery-turbolinks' # match turbolinks to automagically work with jquery on-ready
gem 'turbolinks', '~> 2.5.3' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'jbuilder', '~> 2.0' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'sdoc', '~> 0.4.0', group: :doc # bundle exec rake doc:rails generates the API under doc/api.
gem 'simple_form', '~> 3.5.1'
gem 'acts_as_list' # Maintains the order of items in the database as needed
gem 'humanize_boolean' # Patches NilClass, TrueClass, FalseClass to add i8n .humanize methods
# Javascript libraries
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
gem 'react-rails'
gem 'momentjs-rails', '>= 2.9.0' # Gives access to the JS Moment library to parse dates & times in javascript
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.42'
# For database control and access management
gem 'tiny_tds'
gem 'activerecord-sqlserver-adapter', '~> 5.0.7'
gem 'mysql2', '~> 0.3.18' # There's an issue with 4.x.x rails in loading mysql2
gem 'ruby-ntlm'
gem 'net-ldap', '>= 0.16.0'
gem "devise_ldap_authenticatable", '0.8.6'
#gem 'adauth' # Active directory integration
gem 'pundit', '~> 1.1' # Used for maintaining policy based access to the application
gem 'amoeba' # For deep copying associated records (used by Operation::Revision)
# Data processing
gem 'will_paginate', '~> 3.1.0' # Used in many conterollers to fetch only a "page" of results
gem 'redcarpet' # Gem for generating markdown syntax
gem 'spreadsheet' # Used by a variety of rake tasks to upload data to the database
gem 'diffy' # For generating textual diffs of Operation::Revisions
gem 'mechanize' # For posting to forum after a document is approved
gem 'enumerated_type' # For enumerating data & not storing it in the database; provides more functionality than rails' enum:
gem 'active_record_enumerated_type'
# Visualizations, graphics, and image handling
gem 'prawn', '~> 2.2' # Prawn, to generate PDFs
gem 'prawn-table'
gem 'barby'
gem 'google_visualr', '~> 2.5', '>= 2.5.1' # Used by ProductionStatusChart & Dashboard to generate visuals
gem 'carrierwave' # Used to upload images to the server
gem 'mini_magick' # Used to manipulate uploaded images
# Error logging & performance improvement
gem 'airbrake', '~> 5.4' # local error logging using errbit
# gem 'coverband' - this gem can be run in production to identify dead code
# Patches
gem 'certified' # Fix SSL issues
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# Candidates for clean up
gem 'epic-editor-rails' # ? Not sure where this is used
# gem 'therubyracer', platforms: :ruby
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :test do
gem 'sqlite3' # Use sqlite3 as the database for Active Record
gem 'simplecov' # Determine test coverage
gem 'mocha' # Mocking/stubbing helpers
end
group :test, :development do
gem "minitest-rails"
gem "minitest-bisect" # For finding test bugs that happen due to test order depdendencies
gem 'thin'
#gem "better_errors"
gem 'bullet' # For finding n+1 queries
gem 'pdf-inspector' # For checking the strings within a PDF
gem 'byebug' # Call 'byebug' anywhere in the code to stop execution and get a debugger console
#gem 'minitest-byebug'
gem 'capybara', '~> 2.13' # Adds support for Capybara system testing and selenium driver
end
group :development do
#gem 'web-console', '~> 2.0' # Access an IRB console on exception pages or by using <%= console %> in views
gem 'spring'
gem 'capistrano', '3.5.0'
gem 'capistrano-rvm'
gem 'capistrano-passenger'
gem 'capistrano-rails', '~> 1.1'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment