-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
68 lines (52 loc) · 1.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
source 'https://rubygems.org'
# Rails
gem 'rails', '3.2.17'
# ActiveAdmin
gem 'activeadmin'
gem "meta_search", '>= 1.1.0.pre'
# jQuery
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Haml
gem 'haml-rails'
# Simple Form
gem 'simple_form'
# Twitter
gem 'twitter'
# Geocoder
gem 'geocoder'
# Httparty
gem 'httparty'
# MongoDB
gem 'mongo'
gem 'bson_ext'
# High Voltage, static pages
gem 'high_voltage'
# use unicorn as app server
gem 'unicorn'
# New relic -- application monitoring
gem 'newrelic_rpm'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'shoulda-context', '~> 1.0.2'
gem 'shoulda-matchers', '~> 1.4.2'
end
group :test do
gem 'faker'
gem 'capybara'
gem 'guard-rspec'
gem 'launchy'
end
group :production do
gem 'pg'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end