-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
72 lines (56 loc) · 1.31 KB
/
Copy pathGemfile
File metadata and controls
72 lines (56 loc) · 1.31 KB
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
source 'http://rubygems.org'
gem 'rails', '3.1.3'
gem 'json_pure'
gem 'json'
gem 'stripe'
#Gems for analytics and measurements
gem 'newrelic_rpm'
gem 'activeadmin', "~> 0.4.3"
gem 'sass-rails', '~> 3.1.5'
gem "meta_search", '>= 1.1.0.pre'
gem "formtastic", "~> 2.1.1"
#Gems for APIs
gem "citygrid_api", :git => "git://github.com/CityGrid/citygrid_api.git"
gem 'oauth'
gem 'httparty'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :production do
gem 'pg'
end
group :development do
gem 'sqlite3'
end
group :test do
gem 'turn', '~> 0.8.3' , :require => false
gem 'factory_girl_rails'
gem 'capybara'
gem 'guard-rspec'
gem 'webrat', '0.7.3'
gem "rspec-rails"
gem "ZenTest", "~> 4.4.2"
gem "autotest-rails", "~> 4.1.0"
gem 'gimme'
end
gem 'mysql'
gem 'heroku'
gem 'nokogiri'
# Third Party Services
gem 'recurly', '~> 2.0.10'
gem 'sendgrid'
gem 'hominid'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'uglifier', '>= 1.0.3'
gem 'coffee-rails'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'