forked from git/git-scm.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (46 loc) · 885 Bytes
/
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 'https://rubygems.org'
gem 'rails', '3.2.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'json'
gem 'thin'
gem 'faraday'
gem 'yajl-ruby', '~> 1.1.0'
gem 'excon', '~> 0.9.4'
gem 'heroku'
gem 'haml'
gem 'tilt'
gem 'rest-client'
gem 'netrc'
gem 'launchy'
gem 'rubyzip'
gem 'octokit'
gem 'dalli'
gem 'diff-lcs'
gem 'redcarpet'
gem 'nestful'
gem "awesome_print"
gem 'newrelic_rpm'
gem 'exceptional'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'less-rails-bootstrap'
group :production do
gem "pg"
end
group :development do
gem "sqlite3"
gem "sqlite3-ruby"
gem "shotgun"
gem "taps"
end
group :test do
gem 'factory_girl_rails'
end