forked from GSA/us-digital-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
107 lines (84 loc) · 2.2 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
source 'http://rubygems.org'
#ruby ENV['RUBY_VERSION']
# Rails
gem 'rails', '4.2.5'
# DB Connector
gem 'mysql2'
# Templates for generating JSON and other data output
gem 'json'
gem 'jbuilder'
# Public activity
gem 'public_activity'
# Makes nested forms easier
gem 'cocoon'
# 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'
# Tagging support
gem 'acts-as-taggable-on'
# Pagination
gem 'kaminari'
# Swagger generation
gem 'swagger-docs'
# 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'
gem 'elasticsearch-rails'
######
# Assets / Assets related gems
######
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'font-awesome-rails'
gem 'bootstrap-sass', '~> 3.3.3'
gem 'morrisjs-rails'
gem 'raphael-rails'
gem 'jquery-rails'
gem 'jquery-tokeninput-rails'
gem "jqcloud-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_girl_rails'
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 => 'git://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
######