Skip to content

Instantly share code, notes, and snippets.

@rizwanreza
Created July 5, 2013 22:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rizwanreza/5937742 to your computer and use it in GitHub Desktop.
Save rizwanreza/5937742 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
# Use postgresql as the database for Active Record
gem 'pg'
# Use Haml for templates
gem 'haml-rails'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
gem 'bootstrap-sass', '~> 2.3.1.3'
gem 'bootstrap-datetimepicker-rails'
gem 'bootstrap-wysihtml5-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# 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'
gem 'jquery-turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
gem 'unicorn'
# Use Capistrano for deployment
gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
group :test do
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'launchy'
end
gem 'pry', group: [:development, :test]
group :development do
gem 'meta_request'
gem 'better_errors'
gem 'binding_of_caller'
end
# authentication
gem 'devise', '~> 3.0.0.rc'
gem 'omniauth', '~> 1.1.4'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
# authorization
gem 'authority'
# uploader
gem 'carrierwave'
gem 'fog'
# for markdown filter
gem 'redcarpet'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment