-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (41 loc) · 780 Bytes
/
Gemfile
File metadata and controls
46 lines (41 loc) · 780 Bytes
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
source 'https://rubygems.org'
gem 'rails', '4.0.3'
gem 'pg'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'awesome_print'
#mapping
gem 'geocoder'
gem 'httparty'
gem 'google_places'
gem 'dotenv-rails'
gem 'zurb-foundation'
gem 'foundation_rails_helper'
group :doc do
gem 'sdoc', require: false
end
group :production do
gem 'rails_12factor'
end
group :development, :test do
gem 'rspec-rails'
gem 'pry'
gem 'binding_of_caller'
gem 'sextant'
gem 'rails_db_info'
gem 'jasmine'
end
group :test do
gem 'shoulda-matchers'
gem 'factory_girl_rails'
gem 'capybara'
gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'debugger'
gem 'simplecov', require: false
gem 'faker'
gem 'fakeweb'
gem 'launchy'
end