forked from jasoncale/opensit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
98 lines (81 loc) · 2.41 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
source 'https://rubygems.org'
ruby '2.1.5'
gem 'rails', '4.2'
gem 'rack'
gem 'puma'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
end
group :development, :test do
gem 'rspec-rails'
gem 'rspec-collection_matchers'
gem 'factory_girl_rails'
gem 'meta_request', '0.2.6'
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
gem 'pry-byebug'
gem 'pry-coolline'
# Guard shizzle
gem 'rb-inotify', '~> 0.9', require: false # Only needed on Linux. May need to install libnotify with OS's package manager
gem 'rb-fsevent', require: false # For OS X
gem 'guard', '>=2.1.0'
gem 'guard-rspec' # Automatically runs specs when corresponding files change
gem 'guard-rails' # Reloads Rails server when cached files like those in /config change
gem 'guard-livereload' # Sends signal to Livereload extension in browser to reload page
gem 'guard-migrate' # Automatically runs migrations when needed
gem 'terminal-notifier-guard', require: false
gem 'letter_opener'
end
# Previously assets group
gem 'sass-rails', '~> 4.0.2'
gem 'bootstrap-sass'
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
gem 'momentjs-rails', '~> 2.5.0'
gem 'bootstrap3-datetimepicker-rails', '~> 2.1.30'
gem 'font-awesome-sass', '4.0.3.1'
group :test do
gem 'capybara', ">= 2.2.0"
gem 'database_cleaner'
gem 'faker' # Generates names, emails and other placeholders for factories
gem 'shoulda-matchers'
gem 'poltergeist'
gem 'launchy'
gem 'timecop'
end
gem 'pg'
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'protected_attributes' # Smoother upgrade to rails 4, provides attr_accessible
gem 'textacular'
gem 'split', :require => 'split/dashboard'
# Devise authentication
gem 'devise'
# Classier solution for file uploads for Rails
gem 'paperclip'
gem 'aws-sdk'
gem 'mini_magick'
# Simple form with country select
gem 'simple_form'
gem 'country_select'
gem 'chosen-rails'
gem 'compass-rails', '2.0.0'
# gem 'compass-rails', github: 'Compass/compass-rails' # Required by chosen, needs to be explicit
gem 'bootstrap-wysihtml5-rails'
gem "jquery-rails", "2.3.0"
# Pagination
gem 'will_paginate'
gem 'will_paginate-bootstrap'
# Admin/tracking
gem 'newrelic_rpm'
gem 'airbrake'
# Heroku assets and logging
gem 'rails_12factor', group: :production
# loading bar
gem 'nprogress-rails'
# Prevent automated bots signing up
gem 'honeypot-captcha'
# Spam protection
gem 'rakismet'
gem 'colorize'