Skip to content

Instantly share code, notes, and snippets.

@dareddov
Created September 28, 2017 11:04
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 dareddov/f5035d6ae87f5a3b3e60ca072b21d713 to your computer and use it in GitHub Desktop.
Save dareddov/f5035d6ae87f5a3b3e60ca072b21d713 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.0'
# Use sqlite3 as the database for Active Record
#gem 'sqlite3'
gem 'mysql2', '~> 0.4.9'
gem 'sprockets-rails'#, '>= 2.1.4'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.11'
# Use SCSS for stylesheets
#gem 'bootstrap-sass', '~> 3.3.5'
#gem 'sass-rails', '>= 3.2'
gem 'bootstrap-sass', :git => 'https://github.com/twbs/bootstrap-sass.git'#, :branch => 'next'
gem 'sass-rails'#, '~> 4.0.3'
gem 'compass-rails', '~> 3.0.2'
# , github: 'Compass/compass-rails', branch: '2-0-stable'
# gem 'bootstrap-generators' #, '~> 3.3.1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '3.2.0'
# Use CoffeeScript for .js.coffee assets and views
#gem 'coffee-rails', '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.3.1'
gem 'jquery-ui-rails', '~> 6.0.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7.0'
gem 'paperclip', '~> 4.2'
gem 'delayed_paperclip', '~> 3.0.1'
gem 'will_paginate', '~> 3.1.6'
gem 'will_paginate-bootstrap', '~> 1.0.1'
gem 'neo4j-will_paginate_redux', '~> 0.3.4'
gem 'breadcrumbs_on_rails', '~> 3.0.1'
gem 'rest-client' # rest requests
gem 'tinymce-rails', '~> 4.6.7'
gem 'curb'
gem 'therubyracer', '0.12.3'
# gem 'neo4j', '~> 7.0'
gem 'neo4j', '~> 8.2.5'
gem 'pundit', '~> 1.1'
gem 'googlecharts'
# gem 'fog', '~> 1'
gem 'fog', '~> 1.41.0'
gem 'dotenv-rails', '~> 2.2.1'
gem 'config', '~> 1.1.0' # > 1.1 requires ruby 2.2
# gem 'config', '~> 1.4.0' # > 1.1 requires ruby 2.2
gem 'responders', '~> 2.4.0'
gem 'versionist', '~> 1.6.0'
gem 'unicorn'
gem 'appsignal'
gem 'delayed_job_active_record'
gem 'daemons'
gem 'delayed-web'
group :development do
gem 'capistrano-rails'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'foreman'
gem 'brakeman', :require => false
gem 'better_errors'
gem 'binding_of_caller'
gem 'slackistrano'
end
group :test do
gem 'faker'
gem 'rspec-rails', '~> 3.6.1'
gem 'rspec-its'
gem 'webmock', '~> 3.0.1'
gem 'email_spec'
gem 'pundit-matchers', '~> 1.3.1'
gem 'factory_girl_rails', '~> 4.8.0'
gem 'capybara', '~> 2.7.1'
gem 'selenium-webdriver'
gem 'launchy'
gem 'database_cleaner'
gem 'test_after_commit'
gem 'simplecov', '~> 0.15.1', :require => false
end
group :development, :test do
# gem 'quiet_assets', require: false
gem 'byebug'
gem 'pry'
gem 'fog-local', '~> 0.4.0'
end
group :staging, :production do
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'newrelic_rpm'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment