forked from codeforamerica/ohana-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
110 lines (84 loc) · 2.16 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '3.2.16'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
# Front end
gem 'jquery-rails'
gem 'bootstrap-sass'
gem "haml-rails", ">= 0.4"
# Server for deployment
gem "passenger"
group :production, :staging do
gem 'rails_12factor' # Heroku recommended
end
# Analytics
gem "sentry-raven", :git => "https://github.com/getsentry/raven-ruby.git"
# Test coverage
gem 'coveralls', require: false
# MongoDB ORM
gem "mongoid", ">= 3.1.2"
group :test, :development do
# Testing with Rspec
gem "rspec-rails", ">= 2.12.2"
gem "factory_girl_rails", ">= 4.2.0"
end
group :test do
# Testing with Rspec and Mongoid
gem "database_cleaner", ">= 1.0.0.RC1"
gem "mongoid-rspec", ">= 1.7.0"
gem "capybara"
end
group :development do
# Debugging
#gem "bullet"
gem "quiet_assets", ">= 1.0.2"
gem "better_errors", ">= 0.7.2"
gem "binding_of_caller", ">= 0.7.1", :platforms => [:mri_19, :rbx]
#gem "debugger"
# Code quality and style
gem "metric_fu"
end
# Geocoding
gem "geocoder", :git => "git://github.com/alexreisner/geocoder.git", :ref => "3568e5e8e6"
gem "redis"
# Format validation for URLs, phone numbers, zipcodes
gem "area"
gem "validates_formatting_of"
# CORS support
gem 'rack-cors', :require => 'rack/cors'
# API Design
gem "grape"
gem 'grape-entity'
gem "kaminari", :git => "git://github.com/amatsuda/kaminari.git", :ref => "01f65e112d"
# Caching
#gem "garner"
gem 'dalli'
gem 'kgio'
gem 'memcachier'
# API Documentation
gem "grape-swagger", :git => "git://github.com/monfresh/grape-swagger.git", :ref => "557d38e151"
gem 'swagger-ui_rails'
# Production Monitoring
gem 'newrelic_rpm'
gem 'newrelic-grape'
gem "rack-timeout"
# Rate Limiting
gem 'rack-throttle'
# Authentication & Administration
gem 'devise'
gem 'rails_admin'
gem "cancan"
gem "attribute_normalizer"
gem "enumerize"
# App config and ENV variables for heroku
gem "figaro"
# Search
gem "tire", :git => "git://github.com/monfresh/tire.git", :ref => "2d174e792a"
# Nested categories for OpenEligibility
gem "glebtv-mongoid_nested_set"
gem 'mongoid_time_field'
gem 'mongoid_slug'