forked from mlandauer/cuttlefish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
114 lines (97 loc) · 2.83 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
source 'https://rubygems.org'
gem 'dotenv-deployment'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.7.1'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
# Don't upgrade to Bootstrap 3. It's already responsive, for example, so there's a bunch
# of things we need to do for the upgrade
gem 'bootstrap-sass', '~> 2.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
gem 'uglifier', '>= 1.3.0'
gem "less-rails"
end
gem 'jquery-rails'
gem 'jbuilder'
gem "eventmachine"
gem 'sidekiq'
gem 'sinatra', :require => nil
gem 'foreman'
gem 'haml-rails'
# Use pull request that has needed Rails 4 improvements https://github.com/pkurek/flatui-rails/pull/25
gem 'flatui-rails', github: 'iffyuva/flatui-rails', ref: '3d3c423'
gem 'font-awesome-rails'
gem "file-tail"
gem 'syslog_protocol'
gem "will_paginate"
gem "dnsbl-client"
gem "devise"
gem 'devise_invitable'
gem 'gravatar_image_tag'
gem "formtastic"
# Need commit c9331088146e456a69bd6e94298c80d09be3ee74
gem 'formtastic-bootstrap', git: "https://github.com/mjbellantoni/formtastic-bootstrap.git", ref: "f86eaef93bea0a06879b3977d7554864964a623f"
gem 'factory_girl_rails'
gem 'haml-coderay'
gem 'nokogiri'
gem 'google-analytics-rails'
gem 'premailer'
gem "skylight"
gem "archive-tar-minitar"
gem "pundit"
gem "friendly_id"
gem "user_agent_parser"
gem "mail_form"
gem 'newrelic_rpm'
gem 'honeybadger'
gem 'dkim'
gem 'fog'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'
group :development do
# Webrick gives us annoying warnings "could not determine content-length of response body"
gem "thin"
gem 'guard'
gem 'rb-inotify', require: false
gem 'rb-fsevent', require: false
gem 'rb-fchange', require: false
gem 'guard-livereload'
gem "rack-livereload"
gem "guard-rspec"
gem 'rack-mini-profiler'
gem "spring"
gem "spring-commands-rspec"
# Deployment bits and bobs
# Later versions cause issues with backing up assets manifests file to release directory
# TODO: Fix this
gem "capistrano", "2.13.5"
gem 'rvm-capistrano', require: false
# Newer versions don't support Ruby 2.1. Remove this when we upgrade Ruby
gem "listen", "~> 2"
end
group :test do
gem 'coveralls', require: false
gem 'database_cleaner'
end
group :development, :test do
gem 'rspec-rails'
gem 'rspec-activemodel-mocks'
gem 'capybara'
# PhantomJS currently has some issues with font loading. So, for the time being
# using selenium instead
#gem 'poltergeist'
gem 'selenium-webdriver'
# For resizing screenshots
gem 'rmagick'
end