Rails 5 Upgrade, can't resolve dependencies - ruby-on-rails

Upgrading from Rails 4.2.8 to Rails 5.0.2 results in the error message below. I am not sure how to resolve the dependencies. The ruby version is 2.5.1. I've been able to run this app and the test suite with Rails 4.2.8, though I have seen some excessive printing by a lower version of carrierwave, so I'd like to be able to upgrade that, but it requires Rails 5.
Error Message
Bundler could not find compatible versions for gem "actionpack":
In Gemfile:
actionpack-action_caching was resolved to 1.2.0, which depends on
actionpack (< 6, >= 4.0.0)
rails (= 5.0.2) was resolved to 5.0.2, which depends on
actionpack (= 5.0.2)
simple_form was resolved to 4.1.0, which depends on
actionpack (>= 5.0)
Bundler could not find compatible versions for gem "activemodel":
In Gemfile:
carrierwave was resolved to 2.0.0, which depends on
activemodel (>= 5.0.0)
rails (= 5.0.2) was resolved to 5.0.2, which depends on
activemodel (= 5.0.2)
simple_form was resolved to 4.1.0, which depends on
activemodel (>= 5.0)
validate_url was resolved to 1.0.8, which depends on
activemodel (>= 3.0.0)
Bundler could not find compatible versions for gem "activerecord":
In Gemfile:
friendly_id (~> 5.1.0) was resolved to 5.1.0, which depends on
activerecord (>= 4.0.0)
rails (= 5.0.2) was resolved to 5.0.2, which depends on
activerecord (= 5.0.2)
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
active_hash (~> 1.4.1) was resolved to 1.4.1, which depends on
activesupport (>= 2.2.2)
carrierwave was resolved to 2.0.0, which depends on
activesupport (>= 5.0.0)
rails (= 5.0.2) was resolved to 5.0.2, which depends on
activesupport (= 5.0.2)
Bundler could not find compatible versions for gem "http":
In Gemfile:
http
twitter (~> 5.15.0) was resolved to 5.15.0, which depends on
http (< 0.10, >= 0.4)
Bundler could not find compatible versions for gem "rails":
In Gemfile:
rails (= 5.0.2)
interactor-rails (~> 2.0) was resolved to 2.2.0, which depends on
rails (< 5.3, >= 4.2)
Bundler could not find compatible versions for gem "railties":
In Gemfile:
rails (= 5.0.2) was resolved to 5.0.2, which depends on
railties (= 5.0.2)
sass-rails (~> 5.0.1) was resolved to 5.0.8, which depends on
railties (>= 5.2.0)
Bundler could not find compatible versions for gem "sprockets":
In Gemfile:
sprockets
sass-rails (~> 5.0.1) was resolved to 5.0.8, which depends on
sprockets (< 4.0, >= 2.8)
Gemfile
source 'https://rubygems.org'
ruby '2.5.1'
gem 'actionpack-action_caching'
gem 'active_hash', '~> 1.4.1'
gem 'avatars.io'
gem 'aws-sdk-s3', '~> 1'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'carrierwave'
gem 'carrierwave_direct'
gem 'coffee-rails', '~> 4.0.0'
gem 'compass-rails', '~> 2.0.2'
gem 'dalli'
gem 'devise'
gem 'diffy'
gem 'font-awesome-rails'
gem 'fog'
gem 'foundation-rails', '~> 5.5.3.2'
gem 'friendly_id', '~> 5.1.0'
gem 'haml'
gem 'html5shiv-js-rails'
gem 'http'
gem 'interactor-rails', '~> 2.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'pg'
gem 'puma', '~> 3.11.4'
gem 'rails', '5.0.2'
gem 'redcarpet'
gem 'rmagick'
gem 'ruby-mp3info', '>= 0.8.4'
gem 'sass-rails', '~> 5.0.1'
gem 'sidekiq'
gem 'sinatra', require: false
gem 'simple_form'
gem 'sprockets'
gem 'stamp'
gem 'twitter', '~> 5.15.0'
gem 'uglifier', '>= 1.3.0'
gem 'validate_url'
gem 'xml-simple', '~> 1.1.5'
gem 'will_paginate'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
end
group :production do
gem 'rails_12factor'
gem 'scout_apm'
gem 'sentry-raven'
# gem 'unicorn-worker-killer'
end
group :test do
gem 'factory_girl_rails'
gem 'm'
gem 'minitest-rails', '~> 2.2.0'
gem 'simplecov', '~> 0.9', require: false
gem 'timecop'
end
group :development, :test do
gem 'dotenv-rails'
gem 'pry'
gem 'awesome_print'
end

sass-rails (~> 5.0.1) was resolved to 5.0.8, which depends on
railties (>= 5.2.0)
railties 5.2 will conflict with the rest of Rails at 5.0 - you need to restrict sass-rails to < 5.0.8

back up your gemfile first and then try with this
source 'https://rubygems.org'
ruby '2.5.1'
gem 'actionpack-action_caching'
gem 'active_hash'
gem 'avatars.io'
gem 'aws-sdk-s3'
gem 'bootstrap-sass'
gem 'carrierwave'
gem 'carrierwave_direct'
gem 'coffee-rails'
gem 'compass-rails'
gem 'dalli'
gem 'devise'
gem 'diffy'
gem 'font-awesome-rails'
gem 'fog'
gem 'foundation-rails'
gem 'friendly_id'
gem 'haml'
gem 'html5shiv-js-rails'
gem 'http'
gem 'interactor-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'pg'
gem 'puma'
gem 'rails'
gem 'redcarpet'
gem 'rmagick'
gem 'ruby-mp3info'
gem 'sass-rails'
gem 'sidekiq'
gem 'sinatra', require: false
gem 'simple_form'
gem 'sprockets'
gem 'stamp'
gem 'twitter'
gem 'uglifier'
gem 'validate_url'
gem 'xml-simple'
gem 'will_paginate'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
end
group :production do
gem 'rails_12factor'
gem 'scout_apm'
gem 'sentry-raven'
# gem 'unicorn-worker-killer'
end
group :test do
gem 'factory_girl_rails'
gem 'm'
gem 'minitest-rails'
gem 'simplecov', require: false
gem 'timecop'
end
group :development, :test do
gem 'dotenv-rails'
gem 'pry'
gem 'awesome_print'
end
run
bundle update

Related

Upgrading rails4 to 5.0.0 and getting dependency error for actionpack, activemodel

I am upgrading my rails app from rails 4 to rails 5.0.0
I have fixed most dependency issues except the following:
Bundler could not find compatible versions for gem "actionpack":
In Gemfile:
actionpack
rails (= 5.0.0) was resolved to 5.0.0, which depends on
actionpack (= 5.0.0)
rails-controller-testing was resolved to 1.0.1, which depends on
actionpack (~> 5.x)
responders (~> 2.0) was resolved to 2.4.1, which depends on
actionpack (< 6.0, >= 4.2.0)
rspec-rails (~> 3.6) was resolved to 3.8.2, which depends on
actionpack (>= 3.0)
Bundler could not find compatible versions for gem "activemodel":
In Gemfile:
activemodel
activeresource was resolved to 5.1.0, which depends on
activemodel (< 7, >= 5.0)
protected_attributes was resolved to 1.0.2, which depends on
activemodel (< 5.0, >= 4.0.0.beta)
rails (= 5.0.0) was resolved to 5.0.0, which depends on
activemodel (= 5.0.0)
I deleted the Gemfile.lock and did bundle install again.
I also did gem install actionpack and gem install activemodel
My Gemfile:
source 'https://rubygems.org'
ruby "2.3.8"
gem 'rails', '5.0.0'
gem 'actionpack' #, '~> 5.0.0'
gem 'activemodel'#, '~> 5.0.0'
gem 'bootstrap-sass', '3.1.1.0'
gem 'bcrypt-ruby', '3.1.2'
gem 'faker', '1.0.1'
gem 'will_paginate', '~> 3.0.5'
gem 'bootstrap-will_paginate', '0.0.10'
# gem 'will_paginate-bootstrap'
gem 'aws-sdk', '~> 2'
gem 'aws-sdk-v1'
gem "jquery-fileupload-rails"
gem 'textacular', '~> 3.0'
# gem 'lazy_high_charts'
gem "highcharts-rails", "~> 3.0.0"
gem 'pivot_table'
gem 'bootstrap-table-rails'
gem 'newrelic_rpm'
gem 'resque', "~> 1.22.0", require: "resque/server"
gem 'resque_mailer'
gem 'holidays'
gem 'wicked_pdf'
gem 'puma'
gem 'rest-client'
gem 'mocha'
gem 'turbolinks', '~> 5.2.0'
#
# for api
gem 'jwt'
gem 'responders', '~> 2.0'
gem 'phantomjs', :require => 'phantomjs/poltergeist'
# for text notifications
gem 'twilio-ruby'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development do
gem 'pg','~> 0.18'
gem 'annotate'
gem 'letter_opener'
gem 'wkhtmltopdf-binary'
gem 'spring-commands-rspec'
end
group :test do
# gem 'pg'
gem 'sqlite3', '1.3.10'
gem 'rspec-rails', '~> 3.6'
gem 'rspec-its'
gem 'capybara', '~> 2.4.0'
gem 'poltergeist'
gem 'factory_bot_rails'
gem 'minitest'
gem 'test-unit'
gem 'shoulda-matchers'
gem 'rails-controller-testing'
gem 'shoulda-callback-matchers'
gem 'database_cleaner'
gem 'selenium-webdriver', '~>3.6.0'
end
gem 'sass-rails', '~> 4.0.2'
gem 'coffee-rails', '4.0.0'
gem 'uglifier', '1.3.0'
gem 'chosen-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
group :production do
gem 'pg','~> 0.18'
gem 'wkhtmltopdf-heroku'
end
gem 'rack-mini-profiler'
gem "bullet", :group => "development"
# Rails 4 Transition
gem 'protected_attributes'
gem 'activeresource'

Railties compatibility issue while upgrading to Rails 5.2.2

I am trying to update a Rails app from Rails 5.2.0.rc2 to Rails 5.2.2
So far, I:
Deleted gemfile.lock
Removed version numbers from most gems in the gem file
Upgraded version to 5.2.2 for the rails gem in the gem file
When I run bundle update or bundle install, I get this error:
Bundler could not find compatible versions for gem "railties": In Gemfile:
coffee-rails was resolved to 4.2.2, which depends on
railties (>= 4.0.0)
font-awesome5-rails was resolved to 1.0.1, which depends on
railties (< 5.2, >= 3.2)
jquery-rails was resolved to 4.3.3, which depends on
railties (>= 4.2.0)
rails (= 5.2.2) was resolved to 5.2.2, which depends on
railties (= 5.2.2)
rails-i18n was resolved to 5.1.3, which depends on
railties (< 6, >= 5.0)
sass-rails was resolved to 5.0.7, which depends on
railties (< 6, >= 4.0.0)
web-console was resolved to 3.7.0, which depends on
railties (>= 5.0)
If i try bundle update rails, I get:
This Bundle hasn't been installed yet. Run `bundle install` to update and install the bundled gems.
Here is my Gemfile:
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '5.2.2'
gem 'bcrypt', '3.1.11'
gem 'faker', '1.7.3'
gem 'mini_magick', '4.8'
gem 'nokogiri', '1.8.1'
gem 'will_paginate', '3.1.6'
gem 'will_paginate-bootstrap4'
gem 'bootstrap', '~> 4.2.1'
gem 'puma', '3.11'
gem 'sass-rails'
gem 'uglifier'
gem 'mini_racer', platforms: :ruby
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '2.7.0'
gem 'rails-i18n'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'cloudinary'
gem 'font-awesome5-rails'
gem 'pg', '0.20.0'
gem 'flatpickr'
gem 'delayed_job_active_record'
gem 'openpay'
group :development, :test do
gem 'byebug', '9.0.6', platform: :mri
end
group :development do
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
end
group :test do
gem 'rails-controller-testing'
gem 'minitest-reporters'
gem 'guard'
gem 'guard-minitest'
end
# group :production do
# gem 'pg', '0.20.0'
# end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Please help, thank you.
I solved it. I just added the railties gem to the Gemfile, just below the rails gem, i.e.:
gem 'rails', '5.2.2'
gem 'railties', '5.2.2' # added this line
I don't know why it wasn't there already. Hope this helps.

Upgrading to Rails 5, can't resolve dependencies

Upgrading from Rails 4.2.10 to Rails 5.1.4 results in the error message below. I am not sure how t resolve the dependencies. The ruby version is 2.5.1. Rails 4.2.10 runs without issue and bundle upgrade runs without returning any errors.
Update: added Gemfile below for reference. When deleting Gemfile.lock prior to performing bundle update, the below error message is still generated.
Error Message
Bundler could not find compatible versions for gem "activemodel":
In Gemfile:
rails (~> 5.1.4) was resolved to 5.1.4, which depends on
activemodel (= 5.1.4)
web-console (~> 2.0.0.beta3) was resolved to 2.0.0, which depends on
activemodel (~> 4.0)
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
jbuilder (~> 2.7.0) was resolved to 2.7.0, which depends on
activesupport (>= 4.2.0)
rails (~> 5.1.4) was resolved to 5.1.4, which depends on
activesupport (= 5.1.4)
Bundler could not find compatible versions for gem "rails":
In Gemfile:
rails (~> 5.1.4)
Could not find gem 'rails (~> 5.1.4)' in any of the sources.Bundler could not
find compatible versions for gem "activemodel":
In Gemfile:
rails (~> 5.1.4) was resolved to 5.1.4, which depends on
activemodel (= 5.1.4)
web-console (~> 2.0.0.beta3) was resolved to 2.0.0, which depends on
activemodel (~> 4.0)
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
jbuilder (~> 2.7.0) was resolved to 2.7.0, which depends on
activesupport (>= 4.2.0)
rails (~> 5.1.4) was resolved to 5.1.4, which depends on
activesupport (= 5.1.4)
Bundler could not find compatible versions for gem "rails":
In Gemfile:
rails (~> 5.1.4)
Could not find gem 'rails (~> 5.1.4)' in any of the sources.
Gemfile
source 'https://rubygems.org'
gem 'rails', '~> 5.1.4'
gem 'sass-rails'
gem 'bootstrap-sass'
gem 'bcrypt'
gem 'uglifier', '~> 3.2.0'
gem 'coffee-rails', '~> 4.2.2'
gem 'jquery-rails', '~> 4.3.1'
gem 'turbolinks', '~> 5.0.1'
gem 'jbuilder', '~> 2.7.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'stripe'
group :development, :test do
gem 'sqlite3', '~> 1.3.9'
gem 'byebug', '~> 3.4.0'
gem 'web-console', '~> 2.0.0.beta3'
gem 'spring', '~> 1.1.3'
end
group :test do
gem 'minitest-reporters', '~> 1.0.5'
gem 'mini_backtrace', '~> 0.1.3'
gem 'guard-minitest', '~> 2.3.1'
end
group :production do
gem 'pg', '0.17.1'
gem 'rails_12factor', '0.0.2'
gem 'puma'
end
The gem web-console is locking your update process, first change it to a more recent version like:
gem 'web-console', '>= 3.3.0'
Then remove Gemfile.lock and run bundle install also always is good to check the version of the other gems and check the official Rails upgrade process documentation in http://guides.rubyonrails.org/upgrading_ruby_on_rails.html

Could not find compatible versions for gem "rack"

I am attempting to update my app to Rails 5.0.1. After attempting to run bundle update, the error below appears, but there is no rack gem.
How can I get this to resolve?
Error:
Bundler could not find compatible versions for gem "rack":
In Gemfile:
rails (= 5.0.1) x86-mingw32 was resolved to 5.0.1, which depends on
actionpack (= 5.0.1) x86-mingw32 was resolved to 5.0.1, which depends on
rack (~> 2.0)
rails (= 5.0.1) x86-mingw32 was resolved to 5.0.1, which depends on
actionpack (= 5.0.1) x86-mingw32 was resolved to 5.0.1, which depends on
rack (~> 2.0) x86-mingw32
sprockets (= 2.11.3) was resolved to 2.11.3, which depends on
rack (~> 1.0)
sprockets (= 2.11.3) was resolved to 2.11.3, which depends on
rack (~> 1.0) x86-mingw32
gemfile:
source 'http://rubygems.org'
ruby '2.4.0' # '1.9.3'
#ruby-gemset=railstutorial_rails_4_0
gem 'rails', '5.0.1'#'4.2.6'
#gem 'pg', '0.15.1'
gem 'mysql2', '0.4.5'#'0.4.4'
gem 'bootstrap-sass', '2.3.2.0'#'3.3.6'
gem 'bcrypt', '3.1.11'
gem 'faker', '1.1.2'
gem 'will_paginate', '3.1.0'
gem 'bootstrap-will_paginate', '0.0.10'
gem 'geocoder', '1.3.7'
gem 'nested_form', '0.3.2'
gem 'utf8-cleaner', '0.2.4'
gem 'sprockets', '2.11.3' #2.11.3
gem 'json', '1.8.6'#'1.8.3'
gem 'ffi'
gem 'iconv', '1.0.4'
gem 'chosen-rails', '1.5.2'
gem 'compass-rails', github: 'Compass/compass-rails'
# For image uploads
gem 'carrierwave', '0.11.2'
# For uploading CSV
gem 'roo', '2.4.0'
# DataTables
gem 'jquery-datatables-rails', '3.4.0' # git: 'git://github.com/rweng/jquery-datatables-rails.git'
gem 'jquery-ui-rails', '5.0.5'
# Editing in line:
gem 'best_in_place', '3.1.0'
# Passing data from controller to coffeescript
gem 'gon', '6.0.1'
#gem 'jquery-turbolinks' '2.1.0'
# For searching and webservice queries-NO LONGER USED
#gem 'sunspot_rails', '2.1.0'
#gem 'sunspot_solr', '2.1.0'
gem 'progress_bar', '1.0.5'
gem 'responders', '2.2.0'
# Calendar Date and Validation
gem 'bootstrap-datepicker-rails'
# For Google Maps overlays
gem 'gmaps4rails', '~> 2.1.2'
gem 'underscore-rails', '~> 1.8.3'
group :development, :test do
gem 'rspec-rails', '3.4.2'
gem 'guard-rspec', '4.7.2'
gem 'spork-rails', '4.0.0'
gem 'childprocess', '0.5.9'
gem 'guard-spork', '2.1.0'
end
group :test do
gem 'selenium-webdriver', '2.53.3'
gem 'capybara', '2.7.1'
gem 'factory_girl_rails', '4.7.0'
end
gem 'sass-rails', '4.0.1'
gem 'uglifier', '3.0.0'
gem 'coffee-rails', '4.1.1'
gem 'jquery-rails', '4.1.1'
gem 'turbolinks', '2.5.3'
gem 'jbuilder', '2.5.0'
group :doc do
gem 'sdoc', '0.4.1', require: false
end
gem 'rails_12factor', '0.0.3'
It's all in the error message:
You ave specified gems in your Gemfile which have conflicting dependencies on the rack gem. Rails 5 (via actionpack) required rack 2 which your pinned version of sprockets requires rack 1.
Thus, you have two options:
You could downgrade your rails requirement to Rails 4 which then depends on rack 1. For that, replace the line in your Gemfile where you specify rails with this:
gem 'rails', '< 5'
Alternatively (and this is probably your desired option), you could upgrade the version of sprockets you are using. For that, you can simply remove the explicit pinned version to sprockets in your Gemfile. Since Rails already depends on a suitable version of sprockets, you don't need to specify it as a version youself. Generally, in order to use sprockets with Rails 5, you need at least sprockets 3.3.5.

Why my ruby on rails application breaks without internet connection on development environment

I just figured out my local application only runs/starts when I have internet connect on my system. What could possibly cause this?
Error I get is when am not connected to internet and I start my server:
getaddrinfo: No such host is known. (Faraday::ConnectionFailed)
Gemfile
source 'https://rubygems.org'
ruby '2.2.4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5.1'
# Use sqlite3 as the database for Active Record
#gem 'sqlite3', '1.3.11'
# Use SCSS for stylesheets
gem 'sass-rails', '5.0.6'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '3.0.1'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '4.1.1'
# See https://github.com/rails/execjs#readme for more supported runtimes
#gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails', '4.1.1'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '5.0.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '2.6.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '0.4.1', group: :doc
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
gem 'byebug', '9.0.5'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '2.3.0'
gem 'simple_form', '3.1.0.rc2'
gem 'redactor-rails', '0.5.0'
gem 'carrierwave', '0.11.2'
gem 'mini_magick', '4.5.1'
gem 'validates_formatting_of', '0.9.0'
gem 'paper_trail', '4.2.0'
gem 'delayed_job_active_record', '4.1.1'
gem 'activejob', '4.2.5.1'
gem 'i18n-tasks', '~> 0.8.6'
gem 'social-share-button', '0.2.1'
gem 'devise', '4.2.0'
gem 'administrate', '0.2.2'
gem 'bootstrap-sass', '3.3.7'
gem 'sass', '3.4.22'
gem 'font-awesome-sass', '4.6.2'
gem 'bourbon', '4.2.7'
gem 'jquery-turbolinks', '2.1.0'
gem 'figaro', '1.1.1'
gem 'travis', '1.8.2'
gem 'nokogiri', '1.6.8.1'
gem 'ffi', '1.9.14'
gem 'sqlite3', '1.3.11'
end
group :production do
gem 'pg'
gem 'rails_12factor'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '1.2016.6', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Gemifile.lock--Dependencies
DEPENDENCIES
activejob (= 4.2.5.1)
administrate (= 0.2.2)
bootstrap-sass (= 3.3.7)
bourbon (= 4.2.7)
byebug (= 9.0.5)
carrierwave (= 0.11.2)
coffee-rails (= 4.1.1)
delayed_job_active_record (= 4.1.1)
devise (= 4.2.0)
ffi (= 1.9.14)
figaro (= 1.1.1)
font-awesome-sass (= 4.6.2)
i18n-tasks (~> 0.8.6)
jbuilder (= 2.6.0)
jquery-rails (= 4.1.1)
jquery-turbolinks (= 2.1.0)
mini_magick (= 4.5.1)
nokogiri (= 1.6.8.1)
paper_trail (= 4.2.0)
pg
rails (= 4.2.5.1)
rails_12factor
redactor-rails (= 0.5.0)
sass (= 3.4.22)
sass-rails (= 5.0.6)
sdoc (= 0.4.1)
simple_form (= 3.1.0.rc2)
social-share-button (= 0.2.1)
sqlite3 (= 1.3.11)
travis (= 1.8.2)
turbolinks (= 5.0.1)
tzinfo-data (= 1.2016.6)
uglifier (= 3.0.1)
validates_formatting_of (= 0.9.0)
web-console (= 2.3.0)
BUNDLED WITH
1.11.2
Thanks in advance!

Resources