Skip to content

Instantly share code, notes, and snippets.

@PandaWhisperer
Created September 10, 2015 23:25
Show Gist options
  • Select an option

  • Save PandaWhisperer/fde3d8a893b615edea01 to your computer and use it in GitHub Desktop.

Select an option

Save PandaWhisperer/fde3d8a893b615edea01 to your computer and use it in GitHub Desktop.
ruby '2.0.0'
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.4'
# Use PostegreSQL
gem 'pg'
# Use Slim for templates
gem 'slim-rails'
# We need SASS support for some jQuery plugins
gem 'sass-rails', '~> 5.0.0'
# Use LESS for stylesheets
gem 'less-rails', '~> 2.7.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use bootstrap
gem 'twitter-bootstrap-rails'
# Bootstrap form builder
gem 'bootstrap_form'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Prevent issues with jQuery plugins not properly loading, see: https://github.com/kossnocorp/jquery.turbolinks
gem 'jquery-turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use devise for authentication
gem 'devise'
group :development do
# Nicer output on the console
gem 'awesome_print', require: 'ap'
# Better error pages in development
gem 'better_errors'
# Suppress asset requests from showing up in the server log
gem 'quiet_assets'
# Necessary to make Rails panel work in Chrome Dev dev tools
# see https://chrome.google.com/webstore/detail/railspanel/gjpfobpafnhjhbajcjgccbbdofdckggg
gem 'meta_request'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Use thin as development server
gem 'thin'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Use RSpec for testing and factory girl for fixtures
gem 'rspec-rails'
gem 'factory_girl_rails'
end
group :test do
gem 'faker'
gem 'capybara'
gem 'guard-rspec'
gem 'launchy'
end
group :production do
# Required for Heroku. See https://devcenter.heroku.com/articles/getting-started-with-rails4#heroku-gems
gem 'rails_12factor'
# Use puma as production webserver
gem 'puma'
end
source 'https://rails-assets.org' do
gem 'rails-assets-smalot-bootstrap-datetimepicker'
gem 'rails-assets-select2'
gem 'rails-assets-select2-bootstrap-theme'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment