Last active
August 22, 2019 23:16
-
-
Save woahdae/0acf34343a6cc4db12391c52ccc3766d to your computer and use it in GitHub Desktop.
Removing things to get `bundle update rails` to work
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' | |
ruby '2.6.3' | |
gem 'rails', '5.0.7' | |
group :development do | |
# Mail gem used to send email from rake tasks | |
gem 'mail' | |
# Application servers people like to use | |
gem 'unicorn-rails' | |
gem 'thin' | |
# Guard is a framework for watching file changes and taking actions. | |
gem 'guard' | |
# Optional speed improvement for guard | |
gem 'rb-fchange' | |
gem 'rb-fsevent' | |
gem 'rb-inotify' | |
# more informational errors in the browser | |
gem 'better_errors' | |
# lets us walk backwards in the call stack in development | |
gem 'binding_of_caller', platforms: [:mri_21] | |
# Misc rails-specific file watchers | |
gem 'guard-rails' | |
# Restart bundler when needed | |
gem 'guard-bundler' | |
# Restart pow when needed | |
gem 'guard-pow' | |
# Generate gem tagfiles for vim/emacs | |
gem 'guard-ctags-bundler' | |
# Railroady provides tasks for generating UML model dependency diagrams | |
gem 'railroady' | |
# Foreman manages app dependencies (postgres, elasticsearch, delayed_job) | |
# under one roof. | |
gem 'foreman' | |
# Provides some better-looking pry themes | |
gem 'pry-theme' | |
# Run tests in parallel | |
gem "parallel_tests" | |
# Preloads rails very non-invasively | |
gem 'spring' | |
gem 'spring-commands-rspec' | |
# Writes emails to tmp/letter_opener for viewing | |
gem 'letter_opener' | |
end | |
group :profile do | |
# Ruby profiler | |
#gem 'ruby-prof' | |
end | |
group :development, :profile do | |
# Great real-time profiler | |
gem 'rack-mini-profiler' | |
# Works with rack-mini-profiler; add ?pp=flamegraph to see a request profile | |
gem 'flamegraph' | |
gem 'ruby-prof' | |
gem 'derailed' | |
gem 'stackprof' | |
end | |
group :development, :test, :profile do | |
# Main testing library; Needed in dev because we use the factories in seeds.rb | |
gem 'rspec' | |
gem 'rspec-rails' | |
# Add stub_model and mock_model to rspec-mocks | |
gem 'rspec-activemodel-mocks' | |
# Collection cardinality matchers, extracted from rspec-expectations | |
gem 'rspec-collection_matchers' | |
# Our debugger, much better than ruby-debug | |
gem 'pry' | |
# walk up and down the callstack! | |
gem 'pry-stack_explorer' | |
# Gem for a service that expeses localhost to the internet | |
#gem 'showoff-io', '~> 0.3.1' | |
gem 'powder' | |
gem 'powify' | |
# used in mailer previews and some test factories | |
gem 'faker' | |
# Very lightweight JS testing. Navigate to /teaspoon to see results. | |
gem 'teaspoon-mocha' | |
gem 'spring-commands-teaspoon' | |
# Manages many ruby metrics projects through one interface | |
gem 'metric_fu' | |
gem 'simplecov-rcov-text' | |
end | |
# A fixture replacement, incuded outside of test for seeds.rb | |
gem 'factory_bot_rails' | |
group :test do | |
# Drive a browser from tests. | |
gem 'capybara' | |
# Allows you to follow links in emails | |
gem 'capybara-email', github: 'woahdae/capybara-email', branch: 'working' | |
# Writes a screenshot to tmp/capybara for every failure | |
gem 'capybara-screenshot' | |
gem 'aws-sdk' # used to upload capybara-screenshot images | |
# Drives the browser, needed by capybara | |
gem 'selenium-webdriver', '>= 3.0' | |
gem 'webdrivers' | |
# Tool for wiping the database, providing a handful of strategies | |
gem 'database_cleaner' | |
# Provides backend for 'save_and_open_page' | |
gem 'launchy' | |
# A no-op adapter for activerecord | |
gem 'activerecord-nulldb-adapter' | |
# For recording remote calls made during tests | |
gem 'vcr' | |
gem 'webmock' | |
# Automatically generates coverage reports | |
gem 'simplecov' | |
gem 'simplecov-rcov' | |
# provides autotest | |
gem 'ZenTest' | |
# Growl integration for autotest | |
gem 'autotest-growl' | |
# Helps manipulate time in tests, ex. run a test 'in the future' | |
gem 'timecop' | |
# Rails 4.1 removed Hash#diff, and we used it for testing feedback. | |
# This is a very worthy replacement (although not drop-in) | |
gem 'hashdiff' | |
end | |
group :assets do | |
# coffescript is javascript replacement language that compiles to js. | |
# it's DHH's best friend; standard | |
gem 'coffee-rails' | |
# JS compression/minification; standard | |
gem 'uglifier' | |
# jquery packaged for rails; standard | |
gem 'jquery-rails' | |
gem 'jquery-ui-rails', "~> 5.0" | |
# Simulating single-page app feel without going client-side | |
gem 'turbolinks' | |
# Everyone's favorite isometric JS tool | |
gem 'react-rails' | |
end | |
group :production do | |
# A memcache client. Used for payment info... | |
gem 'dalli' | |
# Prevents outbound mail from escaping in the staging environment | |
gem 'mail_safe' | |
# Enables static asset caching and logging to STDOUT; good for heroku | |
gem 'rails_12factor' | |
# One-request-per-line log format, much better suited for prod | |
gem 'lograge' | |
# Stops processing requests taking longer than a configured time, | |
# helps recover faster in the event of oversaturation | |
gem 'rack-timeout', require: false | |
end | |
# Enables webpack for Rails | |
# TODO: remove github pin when https://github.com/rails/webpacker/issues/673 is | |
# released upstream | |
gem 'webpacker', github: "rails/webpacker" | |
# bootstrap forms | |
gem 'simple_form' | |
# keep until we get rid of form.error_messages | |
gem 'dynamic_form' | |
# Datetime parser | |
gem "chronic" | |
### TODO: How to get production to not need these except in assets | |
# SASS - Syntactically awesome stylesheets, similar to less, but in ruby. | |
# This might already be implicitly required by compass-rails. | |
gem 'sassc-rails' | |
### /TODO | |
# postgres | |
gem 'pg' | |
# authentication framework | |
gem 'devise', '~> 4.4.0' | |
gem 'devise_invitable' | |
gem 'devise-token_authenticatable' | |
# Authentication for facebook via omniauth | |
gem 'omniauth-facebook' | |
# A popular templating language | |
gem 'haml' | |
# Legacy support for observers | |
gem 'rails-observers' | |
# Helpers for managing what users can/cannot access | |
gem 'cancancan' | |
# A common state machine gem used during curation | |
gem 'state_machine' | |
# Provides object change tracking; used awkwardly, might not be right | |
gem 'paper_trail' | |
# Provides commentable behavior for AR models | |
gem 'acts_as_commentable' | |
# The last in a long line of nested set gems | |
gem 'awesome_nested_set' | |
gem 'friendly_id' | |
gem 'rack-cache' | |
# Provides upload/display functionality to AR models | |
gem 'paperclip' | |
# Extends AR scope syntax to accept a block-style dsl | |
gem 'baby_squeel' | |
# This contacts an external service to turn addresses or zip codes into lat/lon; | |
# used in search | |
gem 'geocoder' | |
# rgeo translates shapefiles into polygons (ex. from Zillow to Elasticsearch) | |
gem 'rgeo-shapefile', require: false | |
gem 'activerecord-postgis-adapter', '~> 4.0' | |
# Simple gem that adds methods to string to make them posessive; used in views | |
gem 'possessive' | |
gem 'elasticsearch-model', "~> 2.0" | |
# Makes email template development sane by inlining stylesheets, | |
# providing basic image helpers, etc | |
gem 'premailer-rails', | |
github: 'woahdae/premailer-rails', | |
branch: 'relative-hostname-fix' | |
# An email parser that's easy to use; not sure we use it, might be a dependency | |
# of another lib | |
gem 'hpricot' | |
# Tells DJ to use the AR backend (and depends on DJ) | |
gem 'delayed_job_active_record' | |
gem 'daemons' | |
# Provides more consistent translation namespace defaults than default rails, | |
# ex. in mailers and their views, controllers, etc. | |
gem 'translator', :git => 'https://github.com/woahdae/translator.git', | |
:branch => 'rails3' | |
gem 'inline_svg' | |
# Translation software for managing translator consultans (translate.io) | |
gem 'translation' | |
# Helps implement database content translations | |
gem 'globalize' | |
# Provides compatability detection for various regional locales | |
gem 'http_accept_language' | |
gem 'fb_graph2', require: false | |
# Convenient way to keep cron tasks with your project logic | |
gem 'whenever' | |
gem 'mime-types' | |
gem "ckeditor" | |
# Server-side Google Analytics | |
gem 'gabba' | |
#Ruby interface into the Rackspace Cloud Files service | |
gem 'cloudfiles', require: false | |
# Provides the means to add validation groups to models. Particularly helpful | |
# for implementing the booking wizard. | |
gem 'grouped_validations' | |
gem 'dstore', :path => 'lib/dstore' | |
# Adds a date validator to activemodel validations | |
gem 'date_validator' | |
# The ruby cloud services library | |
gem 'fog-rackspace' | |
# Turns html into pdf via webkit. | |
# Note, the brew installation is missing needed features compared to the binary. | |
gem 'pdfkit' | |
# Currently just using the credit card ActiveMerchant provides | |
gem 'activemerchant' | |
# Github's code for parsing email replies | |
gem 'email_reply_parser' | |
# Browser User Agent parser | |
gem 'browser' | |
# Packages history.js for the asset pipeline | |
gem "historyjs-rails" | |
# Generic code to wrap a model for external display | |
gem 'adaptable', :path => 'lib/adaptable' | |
# create sitemaps and kick the search engines | |
gem 'sitemap_generator', | |
github: 'woahdae/sitemap_generator', | |
branch: :dont_need_all_of_fog | |
# Markdown renderer | |
gem "redcarpet" | |
# Read/write excel (xlsx) workbooks | |
gem 'simple_xlsx_reader', :path => 'lib/simple_xlsx_reader' | |
gem 'simple_xlsx_writer', github: 'vspy/simple_xlsx_writer' | |
# Library for interacting with Mail Chimp | |
# Pinned so we use Mailchimp's 1.3 api and not 2.0 | |
gem 'gibbon', '0.4.6' | |
# Ical exports. Note, ri_cal is the best ical implementation, but the repo | |
# hasn't been updated in a long time. This one has applied some basic bugfixes | |
# and generally keeps up to date. | |
gem 'ri_cal', github: 'espen/ri_cal' | |
# Error notification | |
gem 'rollbar' | |
# Newrelic is our monitoring app. | |
# main point is not in assets, can include in dev if needed | |
gem 'newrelic_rpm' | |
gem 'money-rails' | |
# In its own project to facilitate isolated testing of deployment via thor | |
gem 'hammer_throw', path: 'lib/hammer_throw' | |
# Used in prod, sometimes in dev | |
gem 'puma' | |
# Standardizes how we do multi-field/wizard forms | |
gem 'wicked' | |
# Separates form validations from model validations | |
gem 'reform' | |
# Can remove once Zip.case_insensitive_match gets released | |
gem 'rubyzip', github: 'woahdae/rubyzip' | |
# Makes nested forms way easier by generating JS templates for client-side add/destroy | |
gem 'cocoon' | |
# Lets us connect to heroku programatically; we use it to fetch configs | |
gem 'platform-api', require: false | |
# A more object-oriented task dsl (vs rake) | |
gem 'thor', require: false | |
# The fastest Ruby JSON dumper/parser | |
gem 'oj' | |
# Helper library for calling soap web services | |
# 2.0 has major breaking changes | |
gem 'savon', "< 2.0", require: false | |
# "What ActiveModel left out" - more conveniences built on ActiveModel | |
gem 'active_attr' | |
# A multi-threaded javascript renderer | |
gem 'mini_racer' | |
# Serves gzipped versions of assets on heroku | |
# http://www.cheynewallace.com/serving-compressed-assets-with-heroku-rack-zippy/ | |
gem 'rack-zippy' | |
# Official gem for keen.io analytics | |
gem 'keen', '>= 0.9.6' | |
# Pagination gem | |
gem 'kaminari' | |
# Provides datetime validators | |
gem 'validates_timeliness' | |
# Speeds up ElasticSearch requests by maintaining persistent connections | |
gem 'typhoeus', require: false | |
# Need to use this in Rails 4 so we can exclude our mandrill webhook, which | |
# doesn't support our root CA issuerer (Comodo). We can just use normal | |
# config.force_ssl if either mandrill updates its root CA file, or we upgrade | |
# to rails 5 whose force_ssl takes an :exclude option. | |
gem 'rack-ssl-enforcer' | |
# We use this just because it vendors exiftool - we don't use MiniExiftool | |
gem 'exiftool_vendored' | |
# Papertrail depends on this, but it duplicates functionality we had built, | |
# so let's depend on it too | |
gem 'request_store' | |
# Official Twilio ruby client | |
gem 'twilio-ruby' | |
gem 'slack-ruby-client' | |
# Provides a (IMO) missing fetaure for nested attribute assignment | |
# https://github.com/rails/rails/pull/23001 | |
gem 'reject_deeply_nested' | |
# Simple API wrapper for using Google's translation services | |
gem 'easy_translate' | |
# Provides phone number normalization, validation, and view formatting | |
gem 'phony_rails' | |
# Nice progress bar used in some tasks | |
gem 'ruby-progressbar', require: false | |
# Simple gem for downloading remote files safely (i.e. better than open-uri) | |
# https://twin.github.io/improving-open-uri/ | |
gem 'down' | |
# for managing database views | |
gem 'scenic' | |
# A URL shortener gem, so we don't have to deal with integrations just to send text links | |
gem 'shortener' |
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
The git source `git://github.com/woahdae/capybara-email.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/woahdae/premailer-rails.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/woahdae/sitemap_generator.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/vspy/simple_xlsx_writer.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/espen/ri_cal.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/woahdae/rubyzip.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
NOTE: Gem::Specification#has_rdoc= is deprecated with no replacement. It will be removed on or after 2018-12-01. | |
Gem::Specification#has_rdoc= called from /Users/woody/Src/in_play/vendor/ruby/2.6.0/bundler/gems/simple_xlsx_writer-14f8d0cb3c8b/simple_xlsx_writer.gemspec:20. | |
NOTE: Gem::Specification#has_rdoc= is deprecated with no replacement. It will be removed on or after 2018-12-01. | |
Gem::Specification#has_rdoc= called from /Users/woody/Src/in_play/vendor/ruby/2.6.0/bundler/gems/translator-1ba12cad8a55/translator.gemspec:38. | |
Fetching gem metadata from https://rubygems.org/....... | |
Fetching gem metadata from https://rubygems.org/. | |
Resolving dependencies........ | |
Bundler could not find compatible versions for gem "actionmailer": | |
In Gemfile: | |
devise_invitable was resolved to 1.6.1, which depends on | |
actionmailer (>= 3.2.6) | |
mail_safe was resolved to 0.3.4, which depends on | |
actionmailer (>= 3.0.0) | |
premailer-rails was resolved to 1.9.2, which depends on | |
actionmailer (>= 3, < 6) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
actionmailer (= 5.0.7) | |
Bundler could not find compatible versions for gem "actionpack": | |
In Gemfile: | |
lograge was resolved to 0.6.0, which depends on | |
actionpack (>= 4, < 5.2) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
actionpack (= 5.0.7) | |
devise (~> 4.4.0) was resolved to 4.4.3, which depends on | |
responders was resolved to 2.4.1, which depends on | |
actionpack (>= 4.2.0, < 6.0) | |
rspec-rails was resolved to 3.6.0, which depends on | |
actionpack (>= 3.0) | |
simple_form was resolved to 3.5.0, which depends on | |
actionpack (> 4, < 5.2) | |
Bundler could not find compatible versions for gem "actionview": | |
In Gemfile: | |
kaminari was resolved to 1.0.1, which depends on | |
kaminari-actionview (= 1.0.1) was resolved to 1.0.1, which depends on | |
actionview | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
actionview (= 5.0.7) | |
Bundler could not find compatible versions for gem "activemodel": | |
In Gemfile: | |
active_attr was resolved to 0.10.2, which depends on | |
activemodel (>= 3.0.2, < 5.2) | |
date_validator was resolved to 0.9.0, which depends on | |
activemodel | |
globalize was resolved to 5.1.0, which depends on | |
activemodel (>= 4.2, < 5.2) | |
paperclip was resolved to 6.0.0, which depends on | |
activemodel (>= 4.2.0) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
activemodel (= 5.0.7) | |
rails-observers was resolved to 0.1.5, which depends on | |
activemodel (>= 4.0) | |
rspec-activemodel-mocks was resolved to 1.0.3, which depends on | |
activemodel (>= 3.0) | |
simple_form was resolved to 3.5.0, which depends on | |
activemodel (> 4, < 5.2) | |
Bundler could not find compatible versions for gem "activerecord": | |
In Gemfile: | |
activerecord-nulldb-adapter was resolved to 0.3.7, which depends on | |
activerecord (>= 2.0.0) | |
activerecord-postgis-adapter (~> 4.0) was resolved to 4.1.2, which depends on | |
activerecord (~> 5.0.0) | |
baby_squeel was resolved to 1.2.0, which depends on | |
activerecord (>= 4.2.0) | |
delayed_job_active_record was resolved to 4.1.2, which depends on | |
activerecord (>= 3.0, < 5.2) | |
globalize was resolved to 5.1.0, which depends on | |
activerecord (>= 4.2, < 5.2) | |
kaminari was resolved to 1.0.1, which depends on | |
kaminari-activerecord (= 1.0.1) was resolved to 1.0.1, which depends on | |
activerecord | |
paper_trail was resolved to 7.1.0, which depends on | |
activerecord (>= 4.0, < 5.2) | |
baby_squeel was resolved to 1.2.0, which depends on | |
polyamorous (~> 1.3) was resolved to 1.3.3, which depends on | |
activerecord (>= 3.0) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
activerecord (= 5.0.7) | |
scenic was resolved to 1.4.1, which depends on | |
activerecord (>= 4.0.0) | |
Bundler could not find compatible versions for gem "activesupport": | |
In Gemfile: | |
active_attr was resolved to 0.10.2, which depends on | |
activesupport (>= 3.0.2, < 5.2) | |
activemerchant was resolved to 1.70.0, which depends on | |
activesupport (>= 3.2.14, < 6.x) | |
date_validator was resolved to 0.9.0, which depends on | |
activesupport | |
delayed_job_active_record was resolved to 4.1.2, which depends on | |
delayed_job (>= 3.0, < 5) was resolved to 4.1.5, which depends on | |
activesupport (>= 3.0, < 5.3) | |
elasticsearch-model (~> 2.0) was resolved to 2.0.1, which depends on | |
activesupport (> 3) | |
fb_graph2 was resolved to 0.9.1, which depends on | |
activesupport (>= 3.2) | |
kaminari was resolved to 1.0.1, which depends on | |
activesupport (>= 4.1.0) | |
lograge was resolved to 0.6.0, which depends on | |
activesupport (>= 4, < 5.2) | |
paperclip was resolved to 6.0.0, which depends on | |
activesupport (>= 4.2.0) | |
fb_graph2 was resolved to 0.9.1, which depends on | |
rack-oauth2 (>= 1.1) was resolved to 1.6.2, which depends on | |
activesupport (>= 2.3) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
activesupport (= 5.0.7) | |
rspec-activemodel-mocks was resolved to 1.0.3, which depends on | |
activesupport (>= 3.0) | |
Bundler could not find compatible versions for gem "mime-types": | |
In Gemfile: | |
paperclip was resolved to 6.0.0, which depends on | |
mime-types | |
metric_fu was resolved to 4.12.0, which depends on | |
churn (~> 0.0.35) was resolved to 0.0.35, which depends on | |
rest-client (>= 1.6.0) was resolved to 1.8.0, which depends on | |
mime-types (>= 1.16, < 3.0) | |
Bundler could not find compatible versions for gem "railties": | |
In Gemfile: | |
devise (~> 4.4.0) was resolved to 4.4.3, which depends on | |
railties (>= 4.1.0, < 6.0) | |
factory_bot_rails was resolved to 4.8.2, which depends on | |
railties (>= 3.0.0) | |
jquery-ui-rails (~> 5.0) was resolved to 5.0.5, which depends on | |
railties (>= 3.2.16) | |
lograge was resolved to 0.6.0, which depends on | |
railties (>= 4, < 5.2) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
railties (= 5.0.7) | |
react-rails was resolved to 2.2.1, which depends on | |
railties (>= 3.2) | |
devise (~> 4.4.0) was resolved to 4.4.3, which depends on | |
responders was resolved to 2.4.1, which depends on | |
railties (>= 4.2.0, < 6.0) | |
scenic was resolved to 1.4.1, which depends on | |
railties (>= 4.0.0) | |
teaspoon-mocha was resolved to 2.3.3, which depends on | |
teaspoon (>= 1.0.0) was resolved to 1.1.5, which depends on | |
railties (>= 3.2.5, < 6) | |
webpacker was resolved to 4.0.7, which depends on | |
railties (>= 4.2) | |
wicked was resolved to 1.3.2, which depends on | |
railties (>= 3.0.7) | |
Bundler could not find compatible versions for gem "thor": | |
In Gemfile: | |
derailed was resolved to 0.1.0, which depends on | |
derailed_benchmarks was resolved to 1.3.2, which depends on | |
thor (~> 0.19) | |
foreman was resolved to 0.84.0, which depends on | |
thor (~> 0.19.1) | |
guard-bundler was resolved to 2.1.0, which depends on | |
guard (~> 2.2) was resolved to 2.14.1, which depends on | |
thor (>= 0.18.1) | |
hammer_throw was resolved to 0.0.1, which depends on | |
thor | |
powder was resolved to 0.3.2, which depends on | |
thor (>= 0.11.5) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
railties (= 5.0.7) was resolved to 5.0.7, which depends on | |
thor (>= 0.18.1, < 2.0) | |
Bundler could not find compatible versions for gem "websocket-driver": | |
In snapshot (Gemfile.lock): | |
websocket-driver (= 0.7.0) | |
In Gemfile: | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
actioncable (= 5.0.7) was resolved to 5.0.7, which depends on | |
websocket-driver (~> 0.6.1) | |
slack-ruby-client was resolved to 0.10.0, which depends on | |
websocket-driver | |
Running `bundle update` will rebuild your snapshot from scratch, using only | |
the gems in your Gemfile, which may resolve the conflict. |
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
The git source `git://github.com/woahdae/capybara-email.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/woahdae/premailer-rails.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/woahdae/sitemap_generator.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/vspy/simple_xlsx_writer.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/espen/ri_cal.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
The git source `git://github.com/woahdae/rubyzip.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. | |
NOTE: Gem::Specification#has_rdoc= is deprecated with no replacement. It will be removed on or after 2018-12-01. | |
Gem::Specification#has_rdoc= called from /Users/woody/Src/in_play/vendor/ruby/2.6.0/bundler/gems/simple_xlsx_writer-14f8d0cb3c8b/simple_xlsx_writer.gemspec:20. | |
NOTE: Gem::Specification#has_rdoc= is deprecated with no replacement. It will be removed on or after 2018-12-01. | |
Gem::Specification#has_rdoc= called from /Users/woody/Src/in_play/vendor/ruby/2.6.0/bundler/gems/translator-1ba12cad8a55/translator.gemspec:38. | |
Fetching gem metadata from https://rubygems.org/....... | |
Fetching gem metadata from https://rubygems.org/. | |
Resolving dependencies........ | |
Bundler could not find compatible versions for gem "actionmailer": | |
In Gemfile: | |
devise_invitable was resolved to 1.6.1, which depends on | |
actionmailer (>= 3.2.6) | |
mail_safe was resolved to 0.3.4, which depends on | |
actionmailer (>= 3.0.0) | |
premailer-rails was resolved to 1.9.2, which depends on | |
actionmailer (>= 3, < 6) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
actionmailer (= 5.0.7) | |
Bundler could not find compatible versions for gem "actionpack": | |
In Gemfile: | |
lograge was resolved to 0.6.0, which depends on | |
actionpack (>= 4, < 5.2) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
actionpack (= 5.0.7) | |
devise (~> 4.4.0) was resolved to 4.4.3, which depends on | |
responders was resolved to 2.4.1, which depends on | |
actionpack (>= 4.2.0, < 6.0) | |
rspec-rails was resolved to 3.6.0, which depends on | |
actionpack (>= 3.0) | |
simple_form was resolved to 3.5.0, which depends on | |
actionpack (> 4, < 5.2) | |
Bundler could not find compatible versions for gem "activerecord": | |
In Gemfile: | |
activerecord-nulldb-adapter was resolved to 0.3.7, which depends on | |
activerecord (>= 2.0.0) | |
activerecord-postgis-adapter (~> 4.0) was resolved to 4.1.2, which depends on | |
activerecord (~> 5.0.0) | |
baby_squeel was resolved to 1.2.0, which depends on | |
activerecord (>= 4.2.0) | |
delayed_job_active_record was resolved to 4.1.2, which depends on | |
activerecord (>= 3.0, < 5.2) | |
globalize was resolved to 5.1.0, which depends on | |
activerecord (>= 4.2, < 5.2) | |
kaminari was resolved to 1.0.1, which depends on | |
kaminari-activerecord (= 1.0.1) was resolved to 1.0.1, which depends on | |
activerecord | |
paper_trail was resolved to 7.1.0, which depends on | |
activerecord (>= 4.0, < 5.2) | |
baby_squeel was resolved to 1.2.0, which depends on | |
polyamorous (~> 1.3) was resolved to 1.3.3, which depends on | |
activerecord (>= 3.0) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
activerecord (= 5.0.7) | |
scenic was resolved to 1.4.1, which depends on | |
activerecord (>= 4.0.0) | |
Bundler could not find compatible versions for gem "mime-types": | |
In Gemfile: | |
paperclip was resolved to 6.0.0, which depends on | |
mime-types | |
metric_fu was resolved to 4.12.0, which depends on | |
churn (~> 0.0.35) was resolved to 0.0.35, which depends on | |
rest-client (>= 1.6.0) was resolved to 1.8.0, which depends on | |
mime-types (>= 1.16, < 3.0) | |
Bundler could not find compatible versions for gem "railties": | |
In Gemfile: | |
devise (~> 4.4.0) was resolved to 4.4.3, which depends on | |
railties (>= 4.1.0, < 6.0) | |
jquery-rails was resolved to 3.1.4, which depends on | |
railties (>= 3.0, < 5.0) | |
jquery-ui-rails (~> 5.0) was resolved to 5.0.5, which depends on | |
railties (>= 3.2.16) | |
lograge was resolved to 0.6.0, which depends on | |
railties (>= 4, < 5.2) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
railties (= 5.0.7) | |
react-rails was resolved to 2.2.1, which depends on | |
railties (>= 3.2) | |
devise (~> 4.4.0) was resolved to 4.4.3, which depends on | |
responders was resolved to 2.4.1, which depends on | |
railties (>= 4.2.0, < 6.0) | |
rspec-rails was resolved to 3.6.0, which depends on | |
railties (>= 3.0) | |
scenic was resolved to 1.4.1, which depends on | |
railties (>= 4.0.0) | |
teaspoon-mocha was resolved to 2.3.3, which depends on | |
teaspoon (>= 1.0.0) was resolved to 1.1.5, which depends on | |
railties (>= 3.2.5, < 6) | |
webpacker was resolved to 4.0.7, which depends on | |
railties (>= 4.2) | |
wicked was resolved to 1.3.2, which depends on | |
railties (>= 3.0.7) | |
Bundler could not find compatible versions for gem "thor": | |
In Gemfile: | |
derailed was resolved to 0.1.0, which depends on | |
derailed_benchmarks was resolved to 1.3.2, which depends on | |
thor (~> 0.19) | |
foreman was resolved to 0.84.0, which depends on | |
thor (~> 0.19.1) | |
guard-bundler was resolved to 2.1.0, which depends on | |
guard (~> 2.2) was resolved to 2.14.1, which depends on | |
thor (>= 0.18.1) | |
hammer_throw was resolved to 0.0.1, which depends on | |
thor | |
jquery-rails was resolved to 3.1.4, which depends on | |
thor (>= 0.14, < 2.0) | |
powder was resolved to 0.3.2, which depends on | |
thor (>= 0.11.5) | |
rails (= 5.0.7) was resolved to 5.0.7, which depends on | |
railties (= 5.0.7) was resolved to 5.0.7, which depends on | |
thor (>= 0.18.1, < 2.0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment