Skip to content

Instantly share code, notes, and snippets.

@jersobh

jersobh/gemfile Secret

Created July 6, 2018 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jersobh/c3aca161c76046179ec69c32b837e750 to your computer and use it in GitHub Desktop.
Save jersobh/c3aca161c76046179ec69c32b837e750 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
ruby '2.2.6'
gem 'rails'
# SOAP
gem 'savon'
gem 'iugu'
gem 'airbrake', '4.3.4'
gem 'wistia-api'
gem 'nav_lynx'
gem 'zip'
gem 'axlsx'
gem 'rubyzip'
gem 'magic_encoding'
gem "devise"
gem 'devise_invitable'
gem 'rest-client'
gem 'json'
gem 'prawn'
gem 'draper'
gem 'rack-rewrite'
gem 'wiselinks'
gem 'docx_replace', github: 'beved/docx_replace'
# Bundle edge Rails instead:
gem 'omniauth-facebook', '4.0.0'
gem 'omniauth-twitter', '1.0.1'
gem 'omniauth', '1.2.1'
gem 'koala'
gem 'omniauth-linkedin', '0.1.0'
gem 'linkedin', '0.4.7'
gem 'crack', '0.4.3'
gem 'uuidtools', '2.1.4'
gem 'execjs', '2.0.2'
gem 'therubyracer', '0.12.3'
gem 'bcrypt-ruby', '3.1.5'
gem 'nokogiri'
#gem 'feedzirra'
gem 'sanitize', '2.1.0'
gem 'paperclip', '4.3.7'
gem 'dm-core', '1.2.1'
gem 'dm-aggregates', '1.2.0'
gem 'geocoder', '1.2.0'
gem 'will_paginate', '3.0.5'
gem 'i18n', '0.8.0'
gem 'friendly_id', '5.2.0'
gem 'auto_html', '1.6.4'
gem 'paypal-express', '0.5.5'
gem 'faraday_middleware', '0.9.1'
gem 'multi_xml', '0.5.5'
gem 'excon', '0.33.0'
gem 'sidekiq'
gem 'sinatra', require: nil # Dependency for the Sidekiq monitoring back end
gem 'jquery-fileupload-rails', '0.4.7'
gem 's3_direct_upload', '0.1.6', :path => 'vendor/gems/s3_direct_upload-0.1.6'
gem 'fog', '1.22.0'
gem 'unf', '0.1.4'
gem 'protected_attributes'
gem 'httparty', '0.11.0'
gem 'httmultiparty', '0.3.14'
gem 'activeadmin'
gem 'country-select'
gem 'safe_yaml'
gem 'rails_admin'
gem 'rake'
gem 'ym4r_gm', :path => 'vendor/ym4r_gm'
gem 'geokit', '1.8.5'
gem 'aws-sdk'
gem 'cancan', '1.6.10'
gem 'htmlentities'
gem 'sendgrid'
gem 'cells', '3.11.1'
gem 'wicked', '1.0.3'
gem 'select2-rails'
gem 'jquery-ui-rails'
gem 'cells-capture'
gem 'mymoip'
gem 'gon'
gem 'rabl'
gem 'spinjs-rails'
# Gems used only for assets and not required
# in production environments by default.
gem 'compass-rails' # moved out to avoid problems with heroku
gem 'compass' # moved out to avoid problems with heroku
gem 'sprockets', '2.11.0'
# For cart feature
gem 'acts_as_shopping_cart', :github => 'crowdint/acts_as_shopping_cart', :branch => '0-1-x'
gem 'sass-rails', github: 'rails/sass-rails', branch: '4-0-stable'
gem 'coffee-rails', '4.2.1'
gem 'susy', '~> 1.0.5'
gem 'uglifier', '>= 1.0.3'
gem 'compass-normalize', '1.5'
gem 'ejs', '1.1.1'
gem 'clickatell', '0.8.2'
gem 'jquery-rails', '3.1.0'
gem 'rails3-jquery-autocomplete', '1.0.14'
gem 'gmaps4rails', '2.1.2'
gem 'dynamic_form', '1.1.4'
group :test do
gem 'turn', '0.8.2', :require => false
gem 'database_cleaner', '1.2.0'
gem 'simplecov', '0.8.2', :require => false
end
group :staging do
gem 'unicorn', '4.8.2'
end
group :development do
gem 'yajl-ruby', '~> 1.2.1'
gem 'seed_dump', '0.5.3'
gem 'meta_request', '0.3.0'
gem 'quiet_assets', '1.0.2'
gem 'js-routes', '0.9.7'
end
group :production do
gem 'pg', '~> 0.21'
end
group :development, :test do
gem 'rspec-rails', '2.14.2'
gem 'shoulda-matchers', '2.6.0'
gem 'jasminerice', :git => 'https://github.com/bradphelan/jasminerice.git'
gem 'capybara', '2.2.1'
gem 'spork-rails', '4.0.0'
gem 'factory_girl_rails', '4.4.1'
gem 'rspec-cells', '0.1.12'
gem 'pry', '0.9.12.6'
gem 'awesome_print', '1.1.0', :require => 'ap'
gem 'bullet', '4.9.0'
# Deployment purposes
gem 'capistrano'
# Capistrano VS bundler integration
gem 'capistrano-bundler'
# Capistrano VS rbenv integration
gem 'capistrano-rbenv'
# Capistrano Rails hooks
gem 'capistrano-rails'
gem 'slackistrano', require: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment