This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
forked from orientation/orientation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
74 lines (64 loc) · 1.43 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
source 'https://rubygems.org'
ruby ENV['CUSTOM_RUBY_VERSION'] || '2.2.3'
gem 'rails', '4.2.4'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
gem 'pg'
gem 'passenger'
gem 'autoprefixer-rails'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'haml-rails'
gem 'simple_form', '~> 3.1.0'
gem 'pygments.rb'
gem 'redcarpet', '~> 3.3.2'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'draper'
gem 'textacular'
gem 'mandrill_mailer', '~> 0.6.0'
gem 'responders','~> 2.0'
gem 'skylight'
gem 'bugsnag'
gem 'slack-notifier'
gem 'friendly_id'
gem 'gemoji'
gem 'dotenv-rails'
gem 'carrierwave'
gem 'fog'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'powder'
gem 'bullet'
gem 'quiet_assets'
gem 'fontcustom'
end
group :development, :test do
gem 'rspec-rails', '~> 3.2.0'
gem 'spring-commands-rspec'
gem 'factory_girl_rails', '~> 4.5.0'
gem 'faker'
gem 'pry-rails'
gem 'pry-byebug'
gem 'pry-remote'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
gem 'spring'
end
group :test do
gem 'database_cleaner'
gem 'capybara'
gem 'launchy'
gem 'codeclimate-test-reporter', require: nil
gem 'climate_control'
end
group :production do
gem 'rails_12factor'
gem 'rack-timeout'
# gem 'unicorn'
end