Skip to content

Instantly share code, notes, and snippets.

@asn
Created October 7, 2014 05:23
Show Gist options
  • Select an option

  • Save asn/290c1dbf90d02b83ac95 to your computer and use it in GitHub Desktop.

Select an option

Save asn/290c1dbf90d02b83ac95 to your computer and use it in GitHub Desktop.
websocket-rails gemfile
source 'https://rubygems.org'
ruby '2.1.1'
gem 'rails', '4.1.1'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'spring', group: :development
gem 'bootstrap-sass'
gem 'devise'
gem 'devise-i18n'
gem 'pg'
gem 'simple_form'
gem 'daemons'
gem 'thin'
gem 'websocket-rails'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_21]
gem 'capistrano', '~> 3.0.1'
gem 'capistrano-bundler'
gem 'capistrano-rails', '~> 1.1.0'
gem 'capistrano-rails-console'
gem 'capistrano-rvm', '~> 0.1.1'
gem 'quiet_assets'
gem 'rails_layout'
end
group :development, :test do
gem 'pry-rails'
gem 'pry-rescue'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment