forked from SnapFresh/SnapFresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (42 loc) · 1.24 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
source 'http://rubygems.org'
ruby "1.9.3"
gem 'rails', '~> 4.2.3'
# DB's
gem 'pg', '~> 0.18.2'
# Assets
gem 'sass-rails', '~> 4.0.1'
gem 'jquery-rails', '~> 3.0.4'
gem 'therubyracer', '~> 0.12.2'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 2.3.1'
# Keep around until RetailersController#get_geo_from_google is removed
gem 'crack', '~> 0.4.1'
# Automated cron jobs
gem 'whenever', '~> 0.8.4', :require => false
# Geolocation tools
gem 'geokit', '~> 1.6.7'
gem 'geokit-rails', '~> 2.0.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 1.5.2"
# Temporary measure for handling ENV due to not having control over deploy process.
gem 'figaro'
group :test do
gem "capybara", "~> 2.1.0"
gem "simplecov", "~> 0.8.1", :require => false
gem 'minitest-spec-rails', '~> 5.2.2'
gem 'rake'
gem 'vcr'
gem 'webmock'
gem 'json_expressions', '~> 0.8.3'
end
# This group is loaded in test and dev enviroments
# It exists so that Travis-ci doesn't install uncessary gems
group :debug do
gem "awesome_print", "~> 1.2.0"
gem "pry", "~> 0.9.12"
gem "annotate", "~> 2.5.0"
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end