Skip to content

Instantly share code, notes, and snippets.

@lucivaldo
Created April 28, 2016 19:49
Show Gist options
  • Save lucivaldo/1ab824f32f9937cd6136f672f224411e to your computer and use it in GitHub Desktop.
Save lucivaldo/1ab824f32f9937cd6136f672f224411e to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.6'
gem 'rake', '~> 11.1.2'
gem 'pg'
gem 'kaminari', '~> 0.16.3'
gem 'ransack', '~> 1.7.0'
gem 'devise', '~> 3.5.3'
gem 'therubyracer', platforms: :ruby
gem 'enumerize'
gem 'cancancan', '~> 1.12.0'
gem 'paper_trail', '4.0.2'
gem 'carrierwave'
gem 'whenever'
gem 'rails-i18n'
gem 'sentry-raven'
# compile less
gem 'less'
gem 'httparty'
gem 'mini_magick'
gem 'rest-client'
gem 'nokogiri'
gem 'active_decorator'
gem 'simple_form'
gem 'nested_form_fields'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0.4'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 2.7.2'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.1'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links whein your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.4.1'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.1', group: :doc
gem 'sprockets', '~> 2.8'
gem 'unicorn'
# Adds methods to set text color, background color and, text effects on
# ruby console and command line output, using ANSI escape sequences.
gem 'colorize', '~> 0.7.7'
group :development do
gem 'thin'
gem 'rails-erd'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano', '~> 3.4.0'
gem 'capistrano-unicorn-nginx', '~> 3.3.3'
# gem 'deadweight'
end
group :test, :development do
gem 'factory_girl_rails', require: false
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-byebug'
gem 'byebug'
gem 'dotenv'
gem 'faker'
end
group :test do
gem 'autotest-rails', require: false
gem 'simplecov', '0.10.0', require: false
gem 'simplecov-badge', require: false
gem 'rspec', '~> 3.4.0'
gem 'rspec-rails', '~> 3.4.2'
gem 'database_cleaner'
gem 'rspec-autotest'
gem 'shoulda-matchers', '~> 3.1'
end
source 'https://rails-assets.org' do
gem 'rails-assets-select2'
end
@lucivaldo
Copy link
Author

Gemfile de uma típica aplicação web.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment