This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/Gemfile

44 lines
801 B
Ruby

source 'https://rubygems.org'
gem 'rails', '4.1.0'
gem 'mysql2'
gem 'jquery-rails'
gem 'therubyracer'
gem 'bcrypt-ruby' # To use ActiveModel's has_secure_password
gem 'simple_form'
gem 'sanitize'
gem 'redcarpet'
gem 'hirb' #pretty console output
gem 'rb-readline'
gem 'rest-client'
gem 'activerecord-session_store'
gem 'highlight_js-rails'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :development do
gem 'webrick'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rails-erd'
end
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'