44 lines
801 B
Ruby
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'
|