forked from codeforamerica/ohana-web-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
82 lines (67 loc) · 2.02 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '3.2.16'
# front end
group :assets do
gem 'html5shiv-rails' # needed for IE polyfill of sectioning content
gem 'selectivizr-rails' # needed for IE polyfill of modern CSS selectors
gem 'sass-rails', '~> 3.2.3'
gem 'font-awesome-sass' #font-awesome icons
gem 'compass-rails'
gem 'uglifier', '>= 1.0.3'
end
gem 'requirejs-rails', '0.9.1'
gem 'haml-rails'
# server
gem "unicorn", ">= 4.3.1"
gem 'newrelic_rpm'
gem "ohanakapa", "~> 1.0"
gem 'faraday-http-cache'
# Caching
gem "rack-cache"
gem "dalli"
gem "memcachier"
gem "kgio"
# URL redirects
gem "rack-rewrite"
## For passing data to JS
## http://railscasts.com/episodes/324-passing-data-to-javascript
#gem "gon"
# Analytics
gem "sentry-raven", :git => "https://github.com/getsentry/raven-ruby.git"
# For Google translation API
gem "google-api-client"
# app config and ENV variables for heroku
gem "figaro", ">= 0.6.3"
gem 'coveralls', require: false
group :production, :staging do
# rails_12factor runs only in production to suppress logging in rspec output.
# Per advice of http://stackoverflow.com/questions/18132920/how-to-suppress-noise-from-requests-when-running-rspec-feature-specs
gem 'rails_12factor' # Heroku recommended
end
# dev and debugging tools
group :development do
gem "quiet_assets", ">= 1.0.2"
gem "better_errors", ">= 0.7.2"
gem "binding_of_caller", ">= 0.7.1", :platforms => [:mri_19, :rbx]
gem "metric_fu"
gem "letter_opener" # for mocking emails for sending
end
group :test do
#gem "cucumber-rails", ">= 1.3.1", :require => false
#gem "launchy", ">= 2.2.0"
gem "capybara"
gem 'json'
gem 'rack_session_access' # for getting access to the session from Capybara
gem 'poltergeist'
#gem 'selenium-webdriver'
#gem 'capybara-webkit'
gem "vcr"
gem 'webmock', "< 1.16.0"
gem "email_spec"
end
group :development, :test do
#gem "teaspoon" #enable teaspoon to use JasmineJS for performing unit testing on JS code
gem "rspec-rails", ">= 2.12.2"
gem 'yard' #for code documentation
end