forked from GSA/us-digital-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
116 lines (90 loc) · 2.52 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
115
116
source 'http://rubygems.org'
#ruby ENV['RUBY_VERSION']
# Rails
gem 'rails', '5.2'
# DB Connector
gem 'mysql2', '0.4.10'
#social media platforms
# remove these since we no longer are able to integrate directly smoothly
gem 'twitter'
gem "koala" #facebook
# Templates for generating JSON and other data output
gem 'json'
gem 'jbuilder'
# Public activity
gem 'public_activity'
# Makes nested forms easier
gem 'cocoon'
gem "selectize-rails"
# Support for social media service plugins
# gem 'twitter'
# gem 'hyper-graph'
gem 'to_regexp'
# Devise does user authentication mechanisms for us
gem "devise"
# Integrate devise with a CAS service (here we use OMB Max)
# gem 'devise_cas_authenticatable'
gem 'omniauth_login_dot_gov', :git => 'https://github.com/ctacdev/omniauth_login_dot_gov.git', :ref => '456ad85'
# Tagging support
gem 'acts-as-taggable-on'
# Pagination
gem 'kaminari'
# Rack CORS. Prevents need to do this in application controller, lets us do it for public directory
gem 'rack-cors', :require => 'rack/cors'
# Unicorn app server for hosting purposes in dev environment. Will be replaced with phusion passenger in 'real' host
gem 'unicorn'
# generate fake data in tests & seeds files
#gem 'faker'
gem 'elasticsearch-model', '5.1.0'
gem 'elasticsearch-rails', '5.1.0'
######
# Assets / Assets related gems
######
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'font-awesome-rails'
# can remove all of these if we get rid of the
gem 'bootstrap-sass', '~> 3.3.3'
gem 'morrisjs-rails'
gem 'raphael-rails'
gem "jqcloud-rails"
# end remove old files
gem 'jquery-rails'
gem 'jquery-tokeninput-rails'
gem "non-stupid-digest-assets"
######
# End Assets / Assets related gems
######
######
# Development and Testing Gems
######
group :development, :test do
# testing gems
gem 'rspec-rails', '~> 3.0'
gem 'factory_bot'
gem 'coveralls'
gem "capybara" #feature specs
gem 'database_cleaner'
gem 'guard-rspec', require: false
gem 'shoulda-matchers'
# generate fake data in tests & seeds files
gem 'faker'
# nice debug tools
# gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry'
# adds table data to model files, handy for tracking columns
gem 'annotate', :git => 'https://github.com/ctran/annotate_models.git'
# open emails in browser on send
gem 'letter_opener'
# Ruby style checking
gem 'rubocop', require: false
gem "dotenv-rails", "2.0.0.beta"
end
######
# End Development and Testing Gems
######