-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (39 loc) · 790 Bytes
/
Gemfile
File metadata and controls
46 lines (39 loc) · 790 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', '3.2.12'
gem 'thin'
gem 'slim'
gem 'activerecord-import'
gem 'geocoder'
gem 'rails_config'
gem 'newrelic_rpm'
group :production do
gem 'pg'
end
group :development, :test do
gem 'sqlite3'
gem 'quiet_assets'
gem 'better_errors'
gem 'pry'
gem 'pry-debugger'
gem 'pry-doc'
gem 'pry-nav'
gem 'pry-rails'
gem 'rspec-rails'
gem 'guard-rspec'
gem 'spring'
gem 'binding_of_caller'
case RUBY_PLATFORM
when /linux/ then gem 'rb-inotify', '~> 0.9'
when /darwin/ then gem 'rb-fsevent'
end
end
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'rickshaw_rails'
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails'
gem 'compass'
gem 'jquery-rails'
gem 'jquery_mobile_rails'
gem 'uglifier', '>= 1.0.3'
end